public inbox for gdb-testers@sourceware.org
help / color / mirror / Atom feed
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
  2020-06-23 18:09 [binutils-gdb] gdb: Convert language la_printstr field to a method gdb-buildbot
@ 2020-06-23 18:09 ` gdb-buildbot
  2020-06-23 18:27 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, " gdb-buildbot
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-23 18:09 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/3142

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        d711ee67aca06c9753f09dc154eb8c75cb4f58ef

Subject of commit:
        gdb: Convert language la_printstr field to a method

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

*** 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/d7/d711ee67aca06c9753f09dc154eb8c75cb4f58ef//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/d7/d711ee67aca06c9753f09dc154eb8c75cb4f58ef//xfail.table.gz>



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

* [binutils-gdb] gdb: Convert language la_printstr field to a method
@ 2020-06-23 18:09 gdb-buildbot
  2020-06-23 18:09 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
                   ` (9 more replies)
  0 siblings, 10 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-23 18:09 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT d711ee67aca06c9753f09dc154eb8c75cb4f58ef ***

commit d711ee67aca06c9753f09dc154eb8c75cb4f58ef
Author:     Andrew Burgess <andrew.burgess@embecosm.com>
AuthorDate: Wed Jun 3 16:44:05 2020 +0100
Commit:     Andrew Burgess <andrew.burgess@embecosm.com>
CommitDate: Tue Jun 23 13:34:11 2020 +0100

    gdb: Convert language la_printstr field to a method
    
    This commit changes the language_data::la_printstr function pointer
    member variable into a member function of language_defn.
    
    There should be no user visible changes after this commit.
    
    gdb/ChangeLog:
    
            * ada-lang.c (ada_language_data): Delete la_printstr initializer.
            (ada_language::printstr): New member function.
            * c-lang.c (c_language_data): Delete la_printstr initializer.
            (cplus_language_data): Likewise.
            (asm_language_data): Likewise.
            (minimal_language_data): Likewise.
            * d-lang.c (d_language_data): Likewise.
            * f-lang.c (f_printstr): Rename to f_language::printstr.
            (f_language_data): Delete la_printstr initializer.
            (f_language::printstr): New member function, implementation from
            f_printstr.
            * go-lang.c (go_language_data): Delete la_printstr initializer.
            * language.c (language_defn::printstr): Define new member
            function.
            (unk_lang_printstr): Delete.
            (unknown_language_data): Delete la_printstr initializer.
            (unknown_language::printstr): New member function.
            (auto_language_data): Delete la_printstr initializer.
            (auto_language::printstr): New member function.
            * language.h (language_data): Delete la_printstr field.
            (language_defn::printstr): Declare new member function.
            (LA_PRINT_STRING): Update call to printstr.
            * m2-lang.c (m2_printstr): Rename to m2_language::printstr.
            (m2_language_data): Delete la_printstr initializer.
            (m2_language::printstr): New member function, implementation from
            m2_printstr.
            * objc-lang.c (objc_language_data): Delete la_printstr
            initializer.
            * opencl-lang.c (opencl_language_data): Likewise.
            * p-lang.c (pascal_printstr): Rename to pascal_language::printstr.
            (pascal_language_data): Delete la_printstr initializer.
            (pascal_language::printstr): New member function, implementation
            from pascal_printstr.
            * p-lang.h (pascal_printstr): Delete declaration.
            * rust-lang.c (rust_printstr): Update header comment.
            (rust_language_data): Delete la_printstr initializer.
            (rust_language::printstr): New member function.

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 8287719e93..e768e447f4 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,43 @@
+2020-06-23  Andrew Burgess  <andrew.burgess@embecosm.com>
+
+	* ada-lang.c (ada_language_data): Delete la_printstr initializer.
+	(ada_language::printstr): New member function.
+	* c-lang.c (c_language_data): Delete la_printstr initializer.
+	(cplus_language_data): Likewise.
+	(asm_language_data): Likewise.
+	(minimal_language_data): Likewise.
+	* d-lang.c (d_language_data): Likewise.
+	* f-lang.c (f_printstr): Rename to f_language::printstr.
+	(f_language_data): Delete la_printstr initializer.
+	(f_language::printstr): New member function, implementation from
+	f_printstr.
+	* go-lang.c (go_language_data): Delete la_printstr initializer.
+	* language.c (language_defn::printstr): Define new member
+	function.
+	(unk_lang_printstr): Delete.
+	(unknown_language_data): Delete la_printstr initializer.
+	(unknown_language::printstr): New member function.
+	(auto_language_data): Delete la_printstr initializer.
+	(auto_language::printstr): New member function.
+	* language.h (language_data): Delete la_printstr field.
+	(language_defn::printstr): Declare new member function.
+	(LA_PRINT_STRING): Update call to printstr.
+	* m2-lang.c (m2_printstr): Rename to m2_language::printstr.
+	(m2_language_data): Delete la_printstr initializer.
+	(m2_language::printstr): New member function, implementation from
+	m2_printstr.
+	* objc-lang.c (objc_language_data): Delete la_printstr
+	initializer.
+	* opencl-lang.c (opencl_language_data): Likewise.
+	* p-lang.c (pascal_printstr): Rename to pascal_language::printstr.
+	(pascal_language_data): Delete la_printstr initializer.
+	(pascal_language::printstr): New member function, implementation
+	from pascal_printstr.
+	* p-lang.h (pascal_printstr): Delete declaration.
+	* rust-lang.c (rust_printstr): Update header comment.
+	(rust_language_data): Delete la_printstr initializer.
+	(rust_language::printstr): New member function.
+
 2020-06-23  Andrew Burgess  <andrew.burgess@embecosm.com>
 
 	* ada-lang.c (ada_language_data): Delete la_printchar initializer.
diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c
index e69c3cbf50..62ea21a385 100644
--- a/gdb/ada-lang.c
+++ b/gdb/ada-lang.c
@@ -13681,7 +13681,6 @@ extern const struct language_data ada_language_data =
   macro_expansion_no,
   ada_extensions,
   &ada_exp_descriptor,
-  ada_printstr,                 /* Function to print string constant */
   ada_print_typedef,            /* Print a typedef using appropriate syntax */
   NULL,                         /* name_of_this */
   true,                         /* la_store_sym_names_in_linkage_form_p */
@@ -14122,6 +14121,17 @@ public:
     ada_printchar (ch, chtype, stream);
   }
 
+  /* See language.h.  */
+
+  void printstr (struct ui_file *stream, struct type *elttype,
+		 const gdb_byte *string, unsigned int length,
+		 const char *encoding, int force_ellipses,
+		 const struct value_print_options *options) const override
+  {
+    ada_printstr (stream, elttype, string, length, encoding,
+		  force_ellipses, options);
+  }
+
 protected:
   /* See language.h.  */
 
diff --git a/gdb/c-lang.c b/gdb/c-lang.c
index f7b1b80cd5..d6bbc025bc 100644
--- a/gdb/c-lang.c
+++ b/gdb/c-lang.c
@@ -889,7 +889,6 @@ extern const struct language_data c_language_data =
   macro_expansion_c,
   c_extensions,
   &exp_descriptor_c,
-  c_printstr,			/* Function to print string constant */
   c_print_typedef,		/* Print a typedef using appropriate syntax */
   NULL,				/* name_of_this */
   true,				/* la_store_sym_names_in_linkage_form_p */
@@ -993,7 +992,6 @@ extern const struct language_data cplus_language_data =
   macro_expansion_c,
   cplus_extensions,
   &exp_descriptor_c,
-  c_printstr,			/* Function to print string constant */
   c_print_typedef,		/* Print a typedef using appropriate syntax */
   "this",                       /* name_of_this */
   false,			/* la_store_sym_names_in_linkage_form_p */
@@ -1194,7 +1192,6 @@ extern const struct language_data asm_language_data =
   macro_expansion_c,
   asm_extensions,
   &exp_descriptor_c,
-  c_printstr,			/* Function to print string constant */
   c_print_typedef,		/* Print a typedef using appropriate syntax */
   NULL,				/* name_of_this */
   true,				/* la_store_sym_names_in_linkage_form_p */
@@ -1253,7 +1250,6 @@ extern const struct language_data minimal_language_data =
   macro_expansion_c,
   NULL,
   &exp_descriptor_c,
-  c_printstr,			/* Function to print string constant */
   c_print_typedef,		/* Print a typedef using appropriate syntax */
   NULL,				/* name_of_this */
   true,				/* la_store_sym_names_in_linkage_form_p */
diff --git a/gdb/d-lang.c b/gdb/d-lang.c
index f76b74f18b..17ab38ee51 100644
--- a/gdb/d-lang.c
+++ b/gdb/d-lang.c
@@ -142,7 +142,6 @@ extern const struct language_data d_language_data =
   macro_expansion_no,
   d_extensions,
   &exp_descriptor_c,
-  c_printstr,			/* Function to print string constant.  */
   c_print_typedef,		/* Print a typedef using appropriate
 				   syntax.  */
   "this",
diff --git a/gdb/f-lang.c b/gdb/f-lang.c
index 68d0a4e6d0..67c2ea34b6 100644
--- a/gdb/f-lang.c
+++ b/gdb/f-lang.c
@@ -68,29 +68,6 @@ f_get_encoding (struct type *type)
   return encoding;
 }
 
-/* Print the character string STRING, printing at most LENGTH characters.
-   Printing stops early if the number hits print_max; repeat counts
-   are printed as appropriate.  Print ellipses at the end if we
-   had to stop before printing LENGTH characters, or if FORCE_ELLIPSES.
-   FIXME:  This is a copy of the same function from c-exp.y.  It should
-   be replaced with a true F77 version.  */
-
-static void
-f_printstr (struct ui_file *stream, struct type *type, const gdb_byte *string,
-	    unsigned int length, const char *encoding, int force_ellipses,
-	    const struct value_print_options *options)
-{
-  const char *type_encoding = f_get_encoding (type);
-
-  if (TYPE_LENGTH (type) == 4)
-    fputs_filtered ("4_", stream);
-
-  if (!encoding || !*encoding)
-    encoding = type_encoding;
-
-  generic_printstr (stream, type, string, length, encoding,
-		    force_ellipses, '\'', 0, options);
-}
 \f
 
 /* Table of operators and their precedences for printing expressions.  */
@@ -536,7 +513,6 @@ extern const struct language_data f_language_data =
   macro_expansion_no,
   f_extensions,
   &exp_descriptor_f,
-  f_printstr,			/* function to print string constant */
   f_print_typedef,		/* Print a typedef using appropriate syntax */
   NULL,                    	/* name_of_this */
   false,			/* la_store_sym_names_in_linkage_form_p */
@@ -707,6 +683,25 @@ public:
     fputs_filtered ("'", stream);
   }
 
+  /* See language.h.  */
+
+  void printstr (struct ui_file *stream, struct type *elttype,
+		 const gdb_byte *string, unsigned int length,
+		 const char *encoding, int force_ellipses,
+		 const struct value_print_options *options) const override
+  {
+    const char *type_encoding = f_get_encoding (elttype);
+
+    if (TYPE_LENGTH (elttype) == 4)
+      fputs_filtered ("4_", stream);
+
+    if (!encoding || !*encoding)
+      encoding = type_encoding;
+
+    generic_printstr (stream, elttype, string, length, encoding,
+		      force_ellipses, '\'', 0, options);
+  }
+
 protected:
 
   /* See language.h.  */
diff --git a/gdb/go-lang.c b/gdb/go-lang.c
index 819780bc30..69f14b8c56 100644
--- a/gdb/go-lang.c
+++ b/gdb/go-lang.c
@@ -527,7 +527,6 @@ extern const struct language_data go_language_data =
   macro_expansion_no,
   NULL,
   &exp_descriptor_c,
-  c_printstr,			/* Function to print string constant.  */
   c_print_typedef,		/* Print a typedef using appropriate
 				   syntax.  */
   NULL,				/* name_of_this */
diff --git a/gdb/language.c b/gdb/language.c
index 34990e040c..9867ac4b4b 100644
--- a/gdb/language.c
+++ b/gdb/language.c
@@ -669,6 +669,18 @@ language_defn::printchar (int ch, struct type *chtype,
   c_printchar (ch, chtype, stream);
 }
 
+/* See language.h.  */
+
+void
+language_defn::printstr (struct ui_file *stream, struct type *elttype,
+			 const gdb_byte *string, unsigned int length,
+			 const char *encoding, int force_ellipses,
+			 const struct value_print_options *options) const
+{
+  c_printstr (stream, elttype, string, length, encoding, force_ellipses,
+	      options);
+}
+
 /* The default implementation of the get_symbol_name_matcher_inner method
    from the language_defn class.  Matches with strncmp_iw.  */
 
@@ -734,16 +746,6 @@ default_is_string_type_p (struct type *type)
   return (type->code ()  == TYPE_CODE_STRING);
 }
 
-static void
-unk_lang_printstr (struct ui_file *stream, struct type *type,
-		   const gdb_byte *string, unsigned int length,
-		   const char *encoding, int force_ellipses,
-		   const struct value_print_options *options)
-{
-  error (_("internal error - unimplemented "
-	   "function unk_lang_printstr called."));
-}
-
 static const struct op_print unk_op_print_tab[] =
 {
   {NULL, OP_NULL, PREC_NULL, 0}
@@ -772,7 +774,6 @@ extern const struct language_data unknown_language_data =
   macro_expansion_no,
   NULL,
   &exp_descriptor_standard,
-  unk_lang_printstr,
   default_print_typedef,	/* Print a typedef using appropriate syntax */
   "this",        	    	/* name_of_this */
   true,				/* store_sym_names_in_linkage_form_p */
@@ -857,6 +858,16 @@ public:
   {
     error (_("unimplemented unknown_language::printchar called"));
   }
+
+  /* See language.h.  */
+
+  void printstr (struct ui_file *stream, struct type *elttype,
+		 const gdb_byte *string, unsigned int length,
+		 const char *encoding, int force_ellipses,
+		 const struct value_print_options *options) const override
+  {
+    error (_("unimplemented unknown_language::printstr called"));
+  }
 };
 
 /* Single instance of the unknown language class.  */
@@ -876,7 +887,6 @@ extern const struct language_data auto_language_data =
   macro_expansion_no,
   NULL,
   &exp_descriptor_standard,
-  unk_lang_printstr,
   default_print_typedef,	/* Print a typedef using appropriate syntax */
   "this",		        /* name_of_this */
   false,			/* store_sym_names_in_linkage_form_p */
@@ -961,6 +971,16 @@ public:
   {
     error (_("unimplemented auto_language::printchar called"));
   }
+
+  /* See language.h.  */
+
+  void printstr (struct ui_file *stream, struct type *elttype,
+		 const gdb_byte *string, unsigned int length,
+		 const char *encoding, int force_ellipses,
+		 const struct value_print_options *options) const override
+  {
+    error (_("unimplemented auto_language::printstr called"));
+  }
 };
 
 /* Single instance of the fake "auto" language.  */
diff --git a/gdb/language.h b/gdb/language.h
index fc9efd8993..a68b6dfdca 100644
--- a/gdb/language.h
+++ b/gdb/language.h
@@ -225,11 +225,6 @@ struct language_data
 
     const struct exp_descriptor *la_exp_desc;
 
-    void (*la_printstr) (struct ui_file * stream, struct type *elttype,
-			 const gdb_byte *string, unsigned int length,
-			 const char *encoding, int force_ellipses,
-			 const struct value_print_options *);
-
     /* Print a typedef using syntax appropriate for this language.
        TYPE is the underlying type.  NEW_SYMBOL is the symbol naming
        the type.  STREAM is the output stream on which to print.  */
@@ -547,6 +542,16 @@ struct language_defn : language_data
   virtual void printchar (int ch, struct type *chtype,
 			  struct ui_file * stream) const;
 
+/* Print the character string STRING, printing at most LENGTH characters.
+   Printing stops early if the number hits print_max; repeat counts
+   are printed as appropriate.  Print ellipses at the end if we
+   had to stop before printing LENGTH characters, or if FORCE_ELLIPSES.  */
+
+  virtual void printstr (struct ui_file *stream, struct type *elttype,
+			 const gdb_byte *string, unsigned int length,
+			 const char *encoding, int force_ellipses,
+			 const struct value_print_options *options) const;
+
 protected:
 
   /* This is the overridable part of the GET_SYMBOL_NAME_MATCHER method.
@@ -651,8 +656,8 @@ extern enum language set_language (enum language);
 #define LA_PRINT_CHAR(ch, type, stream) \
   (current_language->printchar (ch, type, stream))
 #define LA_PRINT_STRING(stream, elttype, string, length, encoding, force_ellipses, options) \
-  (current_language->la_printstr(stream, elttype, string, length, \
-				 encoding, force_ellipses,options))
+  (current_language->printstr (stream, elttype, string, length, \
+			       encoding, force_ellipses,options))
 #define LA_EMIT_CHAR(ch, type, stream, quoter) \
   (current_language->emitchar (ch, type, stream, quoter))
 
diff --git a/gdb/m2-lang.c b/gdb/m2-lang.c
index bdb1a460ae..b84a9a49f8 100644
--- a/gdb/m2-lang.c
+++ b/gdb/m2-lang.c
@@ -42,86 +42,6 @@ m2_printchar (int c, struct type *type, struct ui_file *stream)
   fputs_filtered ("'", stream);
 }
 
-/* Print the character string STRING, printing at most LENGTH characters.
-   Printing stops early if the number hits print_max; repeat counts
-   are printed as appropriate.  Print ellipses at the end if we
-   had to stop before printing LENGTH characters, or if FORCE_ELLIPSES.
-   FIXME:  This is a copy of the same function from c-exp.y.  It should
-   be replaced with a true Modula version.  */
-
-static void
-m2_printstr (struct ui_file *stream, struct type *type, const gdb_byte *string,
-	     unsigned int length, const char *encoding, int force_ellipses,
-	     const struct value_print_options *options)
-{
-  unsigned int i;
-  unsigned int things_printed = 0;
-  int in_quotes = 0;
-  int need_comma = 0;
-
-  if (length == 0)
-    {
-      fputs_filtered ("\"\"", gdb_stdout);
-      return;
-    }
-
-  for (i = 0; i < length && things_printed < options->print_max; ++i)
-    {
-      /* Position of the character we are examining
-         to see whether it is repeated.  */
-      unsigned int rep1;
-      /* Number of repetitions we have detected so far.  */
-      unsigned int reps;
-
-      QUIT;
-
-      if (need_comma)
-	{
-	  fputs_filtered (", ", stream);
-	  need_comma = 0;
-	}
-
-      rep1 = i + 1;
-      reps = 1;
-      while (rep1 < length && string[rep1] == string[i])
-	{
-	  ++rep1;
-	  ++reps;
-	}
-
-      if (reps > options->repeat_count_threshold)
-	{
-	  if (in_quotes)
-	    {
-	      fputs_filtered ("\", ", stream);
-	      in_quotes = 0;
-	    }
-	  m2_printchar (string[i], type, stream);
-	  fprintf_filtered (stream, " <repeats %u times>", reps);
-	  i = rep1 - 1;
-	  things_printed += options->repeat_count_threshold;
-	  need_comma = 1;
-	}
-      else
-	{
-	  if (!in_quotes)
-	    {
-	      fputs_filtered ("\"", stream);
-	      in_quotes = 1;
-	    }
-	  LA_EMIT_CHAR (string[i], type, stream, '"');
-	  ++things_printed;
-	}
-    }
-
-  /* Terminate the quotes if necessary.  */
-  if (in_quotes)
-    fputs_filtered ("\"", stream);
-
-  if (force_ellipses || i < length)
-    fputs_filtered ("...", stream);
-}
-
 /* Return true if TYPE is a string.  */
 
 static bool
@@ -309,7 +229,6 @@ extern const struct language_data m2_language_data =
   macro_expansion_no,
   NULL,
   &exp_descriptor_modula2,
-  m2_printstr,			/* function to print string constant */
   m2_print_typedef,		/* Print a typedef using appropriate syntax */
   NULL,		                /* name_of_this */
   false,			/* la_store_sym_names_in_linkage_form_p */
@@ -433,6 +352,81 @@ public:
   {
     m2_printchar (ch, chtype, stream);
   }
+
+  /* See language.h.  */
+
+  void printstr (struct ui_file *stream, struct type *elttype,
+		 const gdb_byte *string, unsigned int length,
+		 const char *encoding, int force_ellipses,
+		 const struct value_print_options *options) const override
+  {
+    unsigned int i;
+    unsigned int things_printed = 0;
+    int in_quotes = 0;
+    int need_comma = 0;
+
+    if (length == 0)
+      {
+	fputs_filtered ("\"\"", gdb_stdout);
+	return;
+      }
+
+    for (i = 0; i < length && things_printed < options->print_max; ++i)
+      {
+	/* Position of the character we are examining
+	   to see whether it is repeated.  */
+	unsigned int rep1;
+	/* Number of repetitions we have detected so far.  */
+	unsigned int reps;
+
+	QUIT;
+
+	if (need_comma)
+	  {
+	    fputs_filtered (", ", stream);
+	    need_comma = 0;
+	  }
+
+	rep1 = i + 1;
+	reps = 1;
+	while (rep1 < length && string[rep1] == string[i])
+	  {
+	    ++rep1;
+	    ++reps;
+	  }
+
+	if (reps > options->repeat_count_threshold)
+	  {
+	    if (in_quotes)
+	      {
+		fputs_filtered ("\", ", stream);
+		in_quotes = 0;
+	      }
+	    m2_printchar (string[i], elttype, stream);
+	    fprintf_filtered (stream, " <repeats %u times>", reps);
+	    i = rep1 - 1;
+	    things_printed += options->repeat_count_threshold;
+	    need_comma = 1;
+	  }
+	else
+	  {
+	    if (!in_quotes)
+	      {
+		fputs_filtered ("\"", stream);
+		in_quotes = 1;
+	      }
+	    LA_EMIT_CHAR (string[i], elttype, stream, '"');
+	    ++things_printed;
+	  }
+      }
+
+    /* Terminate the quotes if necessary.  */
+    if (in_quotes)
+      fputs_filtered ("\"", stream);
+
+    if (force_ellipses || i < length)
+      fputs_filtered ("...", stream);
+  }
 };
 
 /* Single instance of the M2 language.  */
diff --git a/gdb/objc-lang.c b/gdb/objc-lang.c
index 736c868452..95c6c0a1fc 100644
--- a/gdb/objc-lang.c
+++ b/gdb/objc-lang.c
@@ -337,7 +337,6 @@ extern const struct language_data objc_language_data =
   macro_expansion_c,
   objc_extensions,
   &exp_descriptor_standard,
-  c_printstr,		       /* Function to print string constant */
   c_print_typedef,		/* Print a typedef using appropriate syntax */
   "self",		        /* name_of_this */
   false,			/* la_store_sym_names_in_linkage_form_p */
diff --git a/gdb/opencl-lang.c b/gdb/opencl-lang.c
index d66f3f8aec..765202aac0 100644
--- a/gdb/opencl-lang.c
+++ b/gdb/opencl-lang.c
@@ -1016,7 +1016,6 @@ extern const struct language_data opencl_language_data =
   macro_expansion_c,
   NULL,
   &exp_descriptor_opencl,
-  c_printstr,			/* Function to print string constant */
   c_print_typedef,		/* Print a typedef using appropriate syntax */
   NULL,                         /* name_of_this */
   false,			/* la_store_sym_names_in_linkage_form_p */
diff --git a/gdb/p-lang.c b/gdb/p-lang.c
index b8c99c4650..1c6aea90b6 100644
--- a/gdb/p-lang.c
+++ b/gdb/p-lang.c
@@ -202,106 +202,6 @@ pascal_printchar (int c, struct type *type, struct ui_file *stream)
     fputs_filtered ("'", stream);
 }
 
-/* Print the character string STRING, printing at most LENGTH characters.
-   Printing stops early if the number hits print_max; repeat counts
-   are printed as appropriate.  Print ellipses at the end if we
-   had to stop before printing LENGTH characters, or if FORCE_ELLIPSES.  */
-
-void
-pascal_printstr (struct ui_file *stream, struct type *type,
-		 const gdb_byte *string, unsigned int length,
-		 const char *encoding, int force_ellipses,
-		 const struct value_print_options *options)
-{
-  enum bfd_endian byte_order = type_byte_order (type);
-  unsigned int i;
-  unsigned int things_printed = 0;
-  int in_quotes = 0;
-  int need_comma = 0;
-  int width;
-
-  /* Preserve TYPE's original type, just set its LENGTH.  */
-  check_typedef (type);
-  width = TYPE_LENGTH (type);
-
-  /* If the string was not truncated due to `set print elements', and
-     the last byte of it is a null, we don't print that, in traditional C
-     style.  */
-  if ((!force_ellipses) && length > 0
-	&& extract_unsigned_integer (string + (length - 1) * width, width,
-				     byte_order) == 0)
-    length--;
-
-  if (length == 0)
-    {
-      fputs_filtered ("''", stream);
-      return;
-    }
-
-  for (i = 0; i < length && things_printed < options->print_max; ++i)
-    {
-      /* Position of the character we are examining
-         to see whether it is repeated.  */
-      unsigned int rep1;
-      /* Number of repetitions we have detected so far.  */
-      unsigned int reps;
-      unsigned long int current_char;
-
-      QUIT;
-
-      if (need_comma)
-	{
-	  fputs_filtered (", ", stream);
-	  need_comma = 0;
-	}
-
-      current_char = extract_unsigned_integer (string + i * width, width,
-					       byte_order);
-
-      rep1 = i + 1;
-      reps = 1;
-      while (rep1 < length
-	     && extract_unsigned_integer (string + rep1 * width, width,
-					  byte_order) == current_char)
-	{
-	  ++rep1;
-	  ++reps;
-	}
-
-      if (reps > options->repeat_count_threshold)
-	{
-	  if (in_quotes)
-	    {
-	      fputs_filtered ("', ", stream);
-	      in_quotes = 0;
-	    }
-	  pascal_printchar (current_char, type, stream);
-	  fprintf_filtered (stream, " %p[<repeats %u times>%p]",
-			    metadata_style.style ().ptr (),
-			    reps, nullptr);
-	  i = rep1 - 1;
-	  things_printed += options->repeat_count_threshold;
-	  need_comma = 1;
-	}
-      else
-	{
-	  if ((!in_quotes) && (PRINT_LITERAL_FORM (current_char)))
-	    {
-	      fputs_filtered ("'", stream);
-	      in_quotes = 1;
-	    }
-	  pascal_one_char (current_char, stream, &in_quotes);
-	  ++things_printed;
-	}
-    }
-
-  /* Terminate the quotes if necessary.  */
-  if (in_quotes)
-    fputs_filtered ("'", stream);
-
-  if (force_ellipses || i < length)
-    fputs_filtered ("...", stream);
-}
 \f
 
 /* Table mapping opcodes into strings for printing operators
@@ -376,7 +276,6 @@ extern const struct language_data pascal_language_data =
   macro_expansion_no,
   p_extensions,
   &exp_descriptor_standard,
-  pascal_printstr,		/* Function to print string constant */
   pascal_print_typedef,		/* Print a typedef using appropriate syntax */
   "this",		        /* name_of_this */
   false,			/* la_store_sym_names_in_linkage_form_p */
@@ -499,6 +398,102 @@ public:
     pascal_printchar (ch, chtype, stream);
   }
 
+  /* See language.h.  */
+
+  void printstr (struct ui_file *stream, struct type *elttype,
+		 const gdb_byte *string, unsigned int length,
+		 const char *encoding, int force_ellipses,
+		 const struct value_print_options *options) const override
+  {
+    enum bfd_endian byte_order = type_byte_order (elttype);
+    unsigned int i;
+    unsigned int things_printed = 0;
+    int in_quotes = 0;
+    int need_comma = 0;
+    int width;
+
+    /* Preserve ELTTYPE's original type, just set its LENGTH.  */
+    check_typedef (elttype);
+    width = TYPE_LENGTH (elttype);
+
+    /* If the string was not truncated due to `set print elements', and
+       the last byte of it is a null, we don't print that, in traditional C
+       style.  */
+    if ((!force_ellipses) && length > 0
+	&& extract_unsigned_integer (string + (length - 1) * width, width,
+				     byte_order) == 0)
+      length--;
+
+    if (length == 0)
+      {
+	fputs_filtered ("''", stream);
+	return;
+      }
+
+    for (i = 0; i < length && things_printed < options->print_max; ++i)
+      {
+	/* Position of the character we are examining
+	   to see whether it is repeated.  */
+	unsigned int rep1;
+	/* Number of repetitions we have detected so far.  */
+	unsigned int reps;
+	unsigned long int current_char;
+
+	QUIT;
+
+	if (need_comma)
+	  {
+	    fputs_filtered (", ", stream);
+	    need_comma = 0;
+	  }
+
+	current_char = extract_unsigned_integer (string + i * width, width,
+						 byte_order);
+
+	rep1 = i + 1;
+	reps = 1;
+	while (rep1 < length
+	       && extract_unsigned_integer (string + rep1 * width, width,
+					    byte_order) == current_char)
+	  {
+	    ++rep1;
+	    ++reps;
+	  }
+
+	if (reps > options->repeat_count_threshold)
+	  {
+	    if (in_quotes)
+	      {
+		fputs_filtered ("', ", stream);
+		in_quotes = 0;
+	      }
+	    pascal_printchar (current_char, elttype, stream);
+	    fprintf_filtered (stream, " %p[<repeats %u times>%p]",
+			      metadata_style.style ().ptr (),
+			      reps, nullptr);
+	    i = rep1 - 1;
+	    things_printed += options->repeat_count_threshold;
+	    need_comma = 1;
+	  }
+	else
+	  {
+	    if ((!in_quotes) && (PRINT_LITERAL_FORM (current_char)))
+	      {
+		fputs_filtered ("'", stream);
+		in_quotes = 1;
+	      }
+	    pascal_one_char (current_char, stream, &in_quotes);
+	    ++things_printed;
+	  }
+      }
+
+    /* Terminate the quotes if necessary.  */
+    if (in_quotes)
+      fputs_filtered ("'", stream);
+
+    if (force_ellipses || i < length)
+      fputs_filtered ("...", stream);
+  }
 };
 
 /* Single instance of the Pascal language class.  */
diff --git a/gdb/p-lang.h b/gdb/p-lang.h
index 9ce6131876..3eaad015a6 100644
--- a/gdb/p-lang.h
+++ b/gdb/p-lang.h
@@ -56,10 +56,6 @@ extern int
 
 extern void pascal_printchar (int, struct type *, struct ui_file *);
 
-extern void pascal_printstr (struct ui_file *, struct type *, const gdb_byte *,
-			     unsigned int, const char *, int,
-			     const struct value_print_options *);
-
 extern struct type **const pascal_builtin_types[];
 
 /* These are in p-typeprint.c: */
diff --git a/gdb/rust-lang.c b/gdb/rust-lang.c
index 36e26179f3..b13623fe61 100644
--- a/gdb/rust-lang.c
+++ b/gdb/rust-lang.c
@@ -281,7 +281,7 @@ rust_get_trait_object_pointer (struct value *value)
 
 \f
 
-/* la_printstr implementation for Rust.  */
+/* language_defn::printstr implementation for Rust.  */
 
 static void
 rust_printstr (struct ui_file *stream, struct type *type,
@@ -1953,7 +1953,6 @@ extern const struct language_data rust_language_data =
   macro_expansion_no,
   rust_extensions,
   &exp_descriptor_rust,
-  rust_printstr,		/* Function to print string constant */
   rust_print_typedef,		/* Print a typedef using appropriate syntax */
   NULL,				/* name_of_this */
   false,			/* la_store_sym_names_in_linkage_form_p */
@@ -2145,6 +2144,17 @@ public:
     LA_EMIT_CHAR (ch, chtype, stream, '\'');
     fputs_filtered ("'", stream);
   }
+
+  /* See language.h.  */
+
+  void printstr (struct ui_file *stream, struct type *elttype,
+		 const gdb_byte *string, unsigned int length,
+		 const char *encoding, int force_ellipses,
+		 const struct value_print_options *options) const override
+  {
+    rust_printstr (stream, elttype, string, length, encoding,
+		   force_ellipses, options);
+  }
 };
 
 /* Single instance of the Rust language class.  */


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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-23 18:09 [binutils-gdb] gdb: Convert language la_printstr field to a method gdb-buildbot
  2020-06-23 18:09 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
@ 2020-06-23 18:27 ` gdb-buildbot
  2020-07-24  0:32 ` *** COMPILATION FAILED *** Failures on Fedora-i686, branch master *** BREAKAGE *** gdb-buildbot
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-23 18:27 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/3183

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        d711ee67aca06c9753f09dc154eb8c75cb4f58ef

Subject of commit:
        gdb: Convert language la_printstr field to a method

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/d7/d711ee67aca06c9753f09dc154eb8c75cb4f58ef//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/d7/d711ee67aca06c9753f09dc154eb8c75cb4f58ef//xfail.table.gz>



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

* *** COMPILATION FAILED *** Failures on Fedora-i686, branch master *** BREAKAGE ***
  2020-06-23 18:09 [binutils-gdb] gdb: Convert language la_printstr field to a method gdb-buildbot
  2020-06-23 18:09 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
  2020-06-23 18:27 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, " gdb-buildbot
@ 2020-07-24  0:32 ` gdb-buildbot
  2020-07-24  1:09 ` Failures on Fedora-x86_64-cc-with-index, branch master gdb-buildbot
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-07-24  0:32 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/3547

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        d711ee67aca06c9753f09dc154eb8c75cb4f58ef

Subject of commit:
        gdb: Convert language la_printstr field to a method

*** FAILED to build GDB -- compile gdb ***
==============================================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

  CXX    user-regs.o
  CXX    utils.o
  CXX    v850-tdep.o
  CXX    valarith.o
  CXX    valops.o
  CXX    valprint.o
  CXX    value.o
  CXX    varobj.o
  CXX    vax-nbsd-tdep.o
  CXX    vax-tdep.o
  GEN    stamp-version
  CXX    windows-tdep.o
  CXX    x86-linux-nat.o
  CXX    x86-nat.o
  CXX    x86-tdep.o
  CXX    xcoffread.o
  GEN    xml-builtin.c
  CXX    xml-support.o
  CXX    xml-syscall.o
  CXX    xml-tdesc.o
  CXX    xstormy16-tdep.o
  CXX    xtensa-config.o
  CXX    xtensa-linux-tdep.o
  CXX    xtensa-tdep.o
  CXX    gdb.o
  CXX    aarch32-tdep.o
  CXX    ada-exp.o
  CXX    ada-lang.o
  CXX    ada-tasks.o
  CXX    ada-typeprint.o
  CXX    ada-valprint.o
  CXX    ada-varobj.o
  CXX    addrmap.o
  CXX    agent.o
  CXX    alloc.o
  CXX    annotate.o
  CXX    arc-tdep.o
  CXX    arch-utils.o
  CXX    arch/aarch32.o
  CXX    arch/arc.o
  CXX    arch/arm-get-next-pcs.o
  CXX    arch/arm-linux.o
  CXX    arch/arm.o
  CXX    arch/i386.o
  CXX    arch/ppc-linux-common.o
  CXX    arch/riscv.o
  CXX    arm-bsd-tdep.o
  CXX    arm-fbsd-tdep.o
  CXX    arm-linux-tdep.o
  CXX    arm-nbsd-tdep.o
  CXX    arm-obsd-tdep.o
  CXX    arm-pikeos-tdep.o
  CXX    arm-symbian-tdep.o
  CXX    arm-tdep.o
  CXX    arm-wince-tdep.o
  CXX    async-event.o
  CXX    auto-load.o
  CXX    auxv.o
  CXX    avr-tdep.o
  CXX    ax-gdb.o
  CXX    ax-general.o
  CXX    bcache.o
  CXX    bfd-target.o
  CXX    bfin-linux-tdep.o
  CXX    bfin-tdep.o
  CXX    block.o
  CXX    blockframe.o
  CXX    break-catch-sig.o
  CXX    break-catch-syscall.o
  CXX    break-catch-throw.o
  CXX    breakpoint.o
  CXX    bsd-uthread.o
  CXX    btrace.o
  CXX    build-id.o
  CXX    buildsym-legacy.o
  CXX    buildsym.o
  CXX    c-exp.o
  CXX    cp-name-parser.o
  CXX    d-exp.o
  CXX    f-exp.o
  CXX    go-exp.o
  CXX    m2-exp.o
  CXX    p-exp.o
  CXX    rust-exp.o
  CXX    version.o
  CXX    xml-builtin.o
  GEN    init.c
  CXX    init.o
  CXXLD  gdb
/usr/bin/ld: ../opcodes/libopcodes.a(riscv-dis.o): in function `parse_riscv_dis_option':
/home/gdb-buildbot-2/fedora-x86-64-4/fedora-i686/build/opcodes/../../binutils-gdb/opcodes/riscv-dis.c:102: undefined reference to `riscv_get_priv_spec_class'
collect2: error: ld returned 1 exit status
make[2]: *** [Makefile:1861: gdb] Error 1
make[2]: Leaving directory '/home/gdb-buildbot-2/fedora-x86-64-4/fedora-i686/build/gdb'
make[1]: *** [Makefile:10066: all-gdb] Error 2
make[1]: Leaving directory '/home/gdb-buildbot-2/fedora-x86-64-4/fedora-i686/build'
make: *** [Makefile:854: all] Error 2
program finished with exit code 2
elapsedTime=473.234062
==============================================



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

* Failures on Fedora-x86_64-cc-with-index, branch master
  2020-06-23 18:09 [binutils-gdb] gdb: Convert language la_printstr field to a method gdb-buildbot
                   ` (2 preceding siblings ...)
  2020-07-24  0:32 ` *** COMPILATION FAILED *** Failures on Fedora-i686, branch master *** BREAKAGE *** gdb-buildbot
@ 2020-07-24  1:09 ` gdb-buildbot
  2020-07-24  1:23 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-07-24  1:09 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/3495

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        d711ee67aca06c9753f09dc154eb8c75cb4f58ef

Subject of commit:
        gdb: Convert language la_printstr field to a method

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "frame apply all print "
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "frame apply all print "
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: second thread: print i3
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/d7/d711ee67aca06c9753f09dc154eb8c75cb4f58ef//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/d7/d711ee67aca06c9753f09dc154eb8c75cb4f58ef//xfail.table.gz>



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

* Failures on Fedora-x86_64-m32, branch master
  2020-06-23 18:09 [binutils-gdb] gdb: Convert language la_printstr field to a method gdb-buildbot
                   ` (3 preceding siblings ...)
  2020-07-24  1:09 ` Failures on Fedora-x86_64-cc-with-index, branch master gdb-buildbot
@ 2020-07-24  1:23 ` gdb-buildbot
  2020-07-24  1:43 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-07-24  1:23 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/3541

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        d711ee67aca06c9753f09dc154eb8c75cb4f58ef

Subject of commit:
        gdb: Convert language la_printstr field to a method

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

*** Diff to previous build ***
==============================================
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 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
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
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-m32/d7/d711ee67aca06c9753f09dc154eb8c75cb4f58ef//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/d7/d711ee67aca06c9753f09dc154eb8c75cb4f58ef//xfail.table.gz>



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

* Failures on Fedora-x86_64-m64, branch master
  2020-06-23 18:09 [binutils-gdb] gdb: Convert language la_printstr field to a method gdb-buildbot
                   ` (4 preceding siblings ...)
  2020-07-24  1:23 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
@ 2020-07-24  1:43 ` gdb-buildbot
  2020-07-24  2:07 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-07-24  1:43 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/3604

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        d711ee67aca06c9753f09dc154eb8c75cb4f58ef

Subject of commit:
        gdb: Convert language la_printstr field to a method

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

*** Diff to previous build ***
==============================================
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_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-m64/d7/d711ee67aca06c9753f09dc154eb8c75cb4f58ef//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/d7/d711ee67aca06c9753f09dc154eb8c75cb4f58ef//xfail.table.gz>



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

* Failures on Fedora-x86_64-native-extended-gdbserver-m32, branch master
  2020-06-23 18:09 [binutils-gdb] gdb: Convert language la_printstr field to a method gdb-buildbot
                   ` (5 preceding siblings ...)
  2020-07-24  1:43 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
@ 2020-07-24  2:07 ` gdb-buildbot
  2020-07-24  2:29 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-07-24  2:07 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/3437

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        d711ee67aca06c9753f09dc154eb8c75cb4f58ef

Subject of commit:
        gdb: Convert language la_printstr field to a method

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.fortran/vla-ptype.exp: ptype vla1
PASS -> FAIL: gdb.fortran/vla-value.exp: print member in non-allocated vla1
PASS -> FAIL: gdb.fortran/vla-value.exp: set member in non-allocated vla1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior
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/d7/d711ee67aca06c9753f09dc154eb8c75cb4f58ef//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/d7/d711ee67aca06c9753f09dc154eb8c75cb4f58ef//xfail.table.gz>



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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch master
  2020-06-23 18:09 [binutils-gdb] gdb: Convert language la_printstr field to a method gdb-buildbot
                   ` (6 preceding siblings ...)
  2020-07-24  2:07 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
@ 2020-07-24  2:29 ` gdb-buildbot
  2020-07-24  2:43 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
  2020-07-24  3:07 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
  9 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-07-24  2:29 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/3438

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        d711ee67aca06c9753f09dc154eb8c75cb4f58ef

Subject of commit:
        gdb: Convert language la_printstr field to a method

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.multi/multi-re-run.exp: re_run_inf=1: iter=2: continue until exit
PASS -> FAIL: gdb.multi/multi-re-run.exp: re_run_inf=1: iter=2: print re_run_var_1
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: 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: 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
==============================================

*** 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/d7/d711ee67aca06c9753f09dc154eb8c75cb4f58ef//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/d7/d711ee67aca06c9753f09dc154eb8c75cb4f58ef//xfail.table.gz>



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

* Failures on Fedora-x86_64-native-gdbserver-m32, branch master
  2020-06-23 18:09 [binutils-gdb] gdb: Convert language la_printstr field to a method gdb-buildbot
                   ` (7 preceding siblings ...)
  2020-07-24  2:29 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
@ 2020-07-24  2:43 ` gdb-buildbot
  2020-07-24  3:07 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
  9 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-07-24  2:43 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/3450

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        d711ee67aca06c9753f09dc154eb8c75cb4f58ef

Subject of commit:
        gdb: Convert language la_printstr field to a method

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

*** 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/d7/d711ee67aca06c9753f09dc154eb8c75cb4f58ef//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/d7/d711ee67aca06c9753f09dc154eb8c75cb4f58ef//xfail.table.gz>



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

* Failures on Fedora-x86_64-native-gdbserver-m64, branch master
  2020-06-23 18:09 [binutils-gdb] gdb: Convert language la_printstr field to a method gdb-buildbot
                   ` (8 preceding siblings ...)
  2020-07-24  2:43 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
@ 2020-07-24  3:07 ` gdb-buildbot
  9 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-07-24  3:07 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-native-gdbserver-m64

Worker:
        fedora-x86-64-4

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

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        d711ee67aca06c9753f09dc154eb8c75cb4f58ef

Subject of commit:
        gdb: Convert language la_printstr field to a method

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.multi/multi-re-run.exp: re_run_inf=2: iter=1: continue until exit
PASS -> FAIL: gdb.multi/multi-re-run.exp: re_run_inf=2: iter=1: print re_run_var_2
new UNRESOLVED: gdb.multi/multi-re-run.exp: re_run_inf=2: iter=2: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.multi/multi-re-run.exp: re_run_inf=2: iter=2: setting breakpoint at all_started
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=0: 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/d7/d711ee67aca06c9753f09dc154eb8c75cb4f58ef//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/d7/d711ee67aca06c9753f09dc154eb8c75cb4f58ef//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-24  3:57 [binutils-gdb] gdb: New maintenance command to print XML target description gdb-buildbot
@ 2020-06-24  4:15 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-24  4:15 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/3193

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        caa7fd04f652c00caf5c84d486c622cb1ffaf6c9

Subject of commit:
        gdb: New maintenance command to print XML target description

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/ca/caa7fd04f652c00caf5c84d486c622cb1ffaf6c9//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/ca/caa7fd04f652c00caf5c84d486c622cb1ffaf6c9//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-23 22:49 [binutils-gdb] Fix "maint selftest" regression, add struct scoped_mock_context gdb-buildbot
@ 2020-06-23 23:28 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-23 23:28 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/3188

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        236ef0346d88efffd1ca1da1a5d80724cb145660

Subject of commit:
        Fix "maint selftest" regression, add struct scoped_mock_context

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

*** Diff to previous build ***
==============================================
FAIL -> UNRESOLVED: gdb.gdb/unittest.exp: maintenance check xml-descriptions ${srcdir}/../features
==============================================

*** 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/23/236ef0346d88efffd1ca1da1a5d80724cb145660//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/23/236ef0346d88efffd1ca1da1a5d80724cb145660//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-23 22:30 [binutils-gdb] Adjust command completion output when TUI is disabled gdb-buildbot
@ 2020-06-23 22:30 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-23 22:30 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/3187

Author:
        Sandra Loosemore <sandra@codesourcery.com>

Commit tested:
        bb8d126033bc7982808323da80ac8649e27bb3eb

Subject of commit:
        Adjust command completion output when TUI is disabled

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/bb/bb8d126033bc7982808323da80ac8649e27bb3eb//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/bb/bb8d126033bc7982808323da80ac8649e27bb3eb//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-23 21:04 [binutils-gdb] Improve -Wunused-value testcase build failures fix gdb-buildbot
@ 2020-06-23 21:33 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-23 21:33 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/3186

Author:
        Gary Benson <gbenson@redhat.com>

Commit tested:
        7e4b9c4cd3b83be4c52eb475a6ef6b3fa4946cc5

Subject of commit:
        Improve -Wunused-value testcase build failures fix

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/7e/7e4b9c4cd3b83be4c52eb475a6ef6b3fa4946cc5//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/7e/7e4b9c4cd3b83be4c52eb475a6ef6b3fa4946cc5//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-23 15:34 [binutils-gdb] gdb: Convert language la_post_parser field to a method gdb-buildbot
@ 2020-06-23 15:34 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-23 15:34 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/3180

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        1bf9c36374d9c758bc49dc18dca7acf0719e290d

Subject of commit:
        gdb: Convert language la_post_parser field to a method

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/1b/1bf9c36374d9c758bc49dc18dca7acf0719e290d//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/1b/1bf9c36374d9c758bc49dc18dca7acf0719e290d//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-23 12:09 [binutils-gdb] Avoid testcase build failures with -Wunused-value gdb-buildbot
@ 2020-06-23 12:29 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-23 12:29 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/3177

Author:
        Gary Benson <gbenson@redhat.com>

Commit tested:
        2e573c0a3f9de232587f75de0af765abb8e193b9

Subject of commit:
        Avoid testcase build failures with -Wunused-value

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/2e/2e573c0a3f9de232587f75de0af765abb8e193b9//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/2e/2e573c0a3f9de232587f75de0af765abb8e193b9//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-23  9:50 [binutils-gdb] gdb: Add --with-python-libdir to gdb's --configuration output gdb-buildbot
@ 2020-06-23 10:09 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-23 10:09 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/3176

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        378258006c924e258f2433a94c1d9d7cb462e128

Subject of commit:
        gdb: Add --with-python-libdir to gdb's --configuration output

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/37/378258006c924e258f2433a94c1d9d7cb462e128//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/37/378258006c924e258f2433a94c1d9d7cb462e128//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-22 20:51 [binutils-gdb] Add tests for new alias default-args related commands and arguments gdb-buildbot
@ 2020-06-22 21:29 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-22 21:29 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/3174

Author:
        Philippe Waroquiers <philippe.waroquiers@skynet.be>

Commit tested:
        746ebfe8dd7aa7d9ec8e9651871f6e11fbf14537

Subject of commit:
        Add tests for new alias default-args related commands and arguments.

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/74/746ebfe8dd7aa7d9ec8e9651871f6e11fbf14537//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/74/746ebfe8dd7aa7d9ec8e9651871f6e11fbf14537//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-22 19:54 [binutils-gdb] default-args: allow to define default arguments for aliases gdb-buildbot
@ 2020-06-22 20:32 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-22 20:32 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/3173

Author:
        Philippe Waroquiers <philippe.waroquiers@skynet.be>

Commit tested:
        cf00cd6faf31c208bbfe107140c26895412214bb

Subject of commit:
        default-args: allow to define default arguments for aliases

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

*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.base/alias.exp: alias foo=bar
PASS -> FAIL: gdb.base/default.exp: help
PASS -> FAIL: gdb.base/default.exp: help "h" abbreviation
PASS -> FAIL: gdb.base/help.exp: help aliases
PASS -> FAIL: gdb.base/page.exp: paged help
PASS -> FAIL: gdb.base/page.exp: unpaged help
PASS -> FAIL: gdb.base/style.exp: apropos -v cut for 'thre
PASS -> FAIL: gdb.base/style.exp: help classes of commands styled with title
PASS -> FAIL: gdb.python/python.exp: verify help to uiout
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/Ubuntu-Aarch64-native-gdbserver-m64/cf/cf00cd6faf31c208bbfe107140c26895412214bb//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/cf/cf00cd6faf31c208bbfe107140c26895412214bb//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-22 17:58 [binutils-gdb] Disable parts of gdb.base/source-dir.exp on remote host gdb-buildbot
@ 2020-06-22 18:16 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-22 18:16 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/3172

Author:
        Sandra Loosemore <sandra@codesourcery.com>

Commit tested:
        e822f2cda9bc484adb5f8860050640a5c6f1ced9

Subject of commit:
        Disable parts of gdb.base/source-dir.exp on remote host

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/e8/e822f2cda9bc484adb5f8860050640a5c6f1ced9//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/e8/e822f2cda9bc484adb5f8860050640a5c6f1ced9//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-22 15:37 [binutils-gdb] aarch64: Normalize and sort feature bit macros gdb-buildbot
@ 2020-06-22 15:56 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-22 15:56 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/3171

Author:
        Alex Coplan <alex.coplan@arm.com>

Commit tested:
        359157df2087894563a900e5f63299b42f460be2

Subject of commit:
        aarch64: Normalize and sort feature bit macros

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/35/359157df2087894563a900e5f63299b42f460be2//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/35/359157df2087894563a900e5f63299b42f460be2//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-22 14:59 [binutils-gdb] Recognize some new Mach-O load commands gdb-buildbot
@ 2020-06-22 14:59 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-22 14:59 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/3170

Author:
        Saagar Jha <saagar@saagarjha.com>

Commit tested:
        d768f160a99558a07a2463899c8bfeec0f0a67a7

Subject of commit:
        Recognize some new Mach-O load commands

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/d7/d768f160a99558a07a2463899c8bfeec0f0a67a7//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/d7/d768f160a99558a07a2463899c8bfeec0f0a67a7//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-22 12:47 [binutils-gdb] gdb/jit: return bool in jit_breakpoint_re_set_internal and jit_read_descriptor gdb-buildbot
@ 2020-06-22 13:06 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-22 13:06 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/3168

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        bd920864f3dc2cad376989a642ab774aef6b2fce

Subject of commit:
        gdb/jit: return bool in jit_breakpoint_re_set_internal and jit_read_descriptor

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/bd/bd920864f3dc2cad376989a642ab774aef6b2fce//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/bd/bd920864f3dc2cad376989a642ab774aef6b2fce//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-22  2:50 [binutils-gdb] RISC-V: Don't assume the priv attributes are in order when handling them gdb-buildbot
@ 2020-06-22  3:08 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-22  3:08 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/3165

Author:
        Nelson Chu <nelson.chu@sifive.com>

Commit tested:
        cbd7581f343d85b4216db2eefdf601f6d988062d

Subject of commit:
        RISC-V: Don't assume the priv attributes are in order when handling them.

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

*** Diff to previous build ***
==============================================
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=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/Ubuntu-Aarch64-native-gdbserver-m64/cb/cbd7581f343d85b4216db2eefdf601f6d988062d//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/cb/cbd7581f343d85b4216db2eefdf601f6d988062d//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-21 13:34 [binutils-gdb] PR26132, ar creates invalid libraries for some targets with plugins enabled gdb-buildbot
@ 2020-06-21 13:52 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-21 13:52 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/3162

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        1e92785005ce880a5fac9d022f05cdcff91c3091

Subject of commit:
        PR26132, ar creates invalid libraries for some targets with plugins enabled

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/1e/1e92785005ce880a5fac9d022f05cdcff91c3091//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/1e/1e92785005ce880a5fac9d022f05cdcff91c3091//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-21  3:47 [binutils-gdb] Adjust gdb.mi/mi-sym-info.exp filename patterns gdb-buildbot
@ 2020-06-21  3:47 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-21  3: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/3159

Author:
        Sandra Loosemore <sandra@codesourcery.com>

Commit tested:
        160f8a8f32f5566077e4a4b13943bc7c70bc5da2

Subject of commit:
        Adjust gdb.mi/mi-sym-info.exp filename patterns.

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/16/160f8a8f32f5566077e4a4b13943bc7c70bc5da2//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/16/160f8a8f32f5566077e4a4b13943bc7c70bc5da2//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-21  1:10 [binutils-gdb] Fix gdb.base/list-missing-source.exp on remote host gdb-buildbot
@ 2020-06-21  1:28 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-21  1:28 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/3158

Author:
        Sandra Loosemore <sandra@codesourcery.com>

Commit tested:
        4d91c2a4677b90802c8d369190927921bf8ee97d

Subject of commit:
        Fix gdb.base/list-missing-source.exp on remote host.

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/4d/4d91c2a4677b90802c8d369190927921bf8ee97d//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/4d/4d91c2a4677b90802c8d369190927921bf8ee97d//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-20  0:04 [binutils-gdb] [gdb/testsuite] Limit default_target_compile override gdb-buildbot
@ 2020-06-20  0:42 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-20  0:42 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/3156

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        37ab86550b9da31d6c32c2d3384bd27f0426e935

Subject of commit:
        [gdb/testsuite] Limit default_target_compile override

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.arch/ftrace-insn-reloc.exp: IPA loaded
PASS -> FAIL: gdb.base/display.exp: step
PASS -> FAIL: gdb.base/jit-reader-simple.exp: shared: change addr: address changed
PASS -> FAIL: gdb.base/jit-reader-simple.exp: shared: change addr: initial run: get address of __jit_debug_descriptor
PASS -> FAIL: gdb.base/jit-reader-simple.exp: shared: change addr: initial run: maint info breakpoints shows jit breakpoint
PASS -> FAIL: gdb.base/jit-reader-simple.exp: shared: change addr: second run: get address of __jit_debug_descriptor
PASS -> FAIL: gdb.base/jit-reader-simple.exp: shared: change addr: second run: maint info breakpoints shows jit breakpoint
PASS -> FAIL: gdb.base/jit-reader-simple.exp: shared: same addr: initial run: get address of __jit_debug_descriptor
PASS -> FAIL: gdb.base/jit-reader-simple.exp: shared: same addr: initial run: maint info breakpoints shows jit breakpoint
PASS -> FAIL: gdb.base/jit-reader-simple.exp: shared: same addr: second run: get address of __jit_debug_descriptor
PASS -> FAIL: gdb.base/jit-reader-simple.exp: shared: same addr: second run: maint info breakpoints shows jit breakpoint
PASS -> FAIL: gdb.base/shlib-call.exp: next over shr1
PASS -> FAIL: gdb.base/shlib-call.exp: next to shr1
PASS -> FAIL: gdb.base/shlib-call.exp: print g
PASS -> FAIL: gdb.base/shlib-call.exp: print shr1
PASS -> FAIL: gdb.base/solib-weak.exp: run to breakpoint - lib1 debug, lib2 debug, lib1 first
PASS -> FAIL: gdb.base/solib-weak.exp: run to breakpoint - lib1 debug, lib2 nodebug, lib1 first
PASS -> FAIL: gdb.base/solib-weak.exp: run to breakpoint - lib1 nodebug, lib2 debug, lib1 first
PASS -> FAIL: gdb.base/solib-weak.exp: run to breakpoint - lib1 nodebug, lib2 nodebug, lib1 first
PASS -> FAIL: gdb.base/step-test.exp: next 1
PASS -> FAIL: gdb.base/step-test.exp: next 2
PASS -> FAIL: gdb.base/step-test.exp: next 3
PASS -> FAIL: gdb.base/step-test.exp: next over
PASS -> FAIL: gdb.base/step-test.exp: nexti over function
PASS -> FAIL: gdb.base/step-test.exp: step 1
PASS -> FAIL: gdb.base/step-test.exp: step 3
PASS -> FAIL: gdb.base/step-test.exp: step out
PASS -> FAIL: gdb.base/step-test.exp: stepi into function
PASS -> FAIL: gdb.base/step-test.exp: stepi to next line
PASS -> FAIL: gdb.base/step-test.exp: stepi: finish call
PASS -> FAIL: gdb.base/store.exp: continue to add_struct_1
PASS -> FAIL: gdb.base/store.exp: continue to add_struct_2
PASS -> FAIL: gdb.base/store.exp: continue to add_struct_3
PASS -> FAIL: gdb.base/store.exp: continue to add_struct_4
PASS -> FAIL: gdb.base/store.exp: continue to wack_struct_1
PASS -> FAIL: gdb.base/store.exp: continue to wack_struct_2
PASS -> FAIL: gdb.base/store.exp: continue to wack_struct_3
PASS -> FAIL: gdb.base/store.exp: continue to wack_struct_4
PASS -> FAIL: gdb.base/store.exp: var struct 1 u; next to add_struct_1 call
PASS -> FAIL: gdb.base/store.exp: var struct 1 u; print new u, expecting {s = \{1}}
PASS -> FAIL: gdb.base/store.exp: var struct 2 u; next to add_struct_2 call
PASS -> FAIL: gdb.base/store.exp: var struct 2 u; print new u, expecting {s = \{1, 2}}
PASS -> FAIL: gdb.base/store.exp: var struct 3 u; next to add_struct_3 call
PASS -> FAIL: gdb.base/store.exp: var struct 3 u; print new u, expecting {s = \{1, 2, 3}}
PASS -> FAIL: gdb.base/store.exp: var struct 4 u; next to add_struct_4 call
PASS -> FAIL: gdb.base/store.exp: var struct 4 u; print new u, expecting {s = \{1, 2, 3, 4}}
PASS -> FAIL: gdb.base/type-opaque.exp: opaque struct type resolving
PASS -> FAIL: gdb.base/type-opaque.exp: opaque union type resolving
PASS -> FAIL: gdb.cp/ovldbreak.exp: breakpoint info
PASS -> KFAIL: gdb.cp/re-set-overloaded.exp: breakpoint resolved
PASS -> FAIL: gdb.reverse/step-precsave.exp: finish out of fn call
PASS -> FAIL: gdb.reverse/step-precsave.exp: next over call
PASS -> FAIL: gdb.reverse/step-precsave.exp: next test 1
PASS -> FAIL: gdb.reverse/step-precsave.exp: next test 2
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse next over call
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse next test 1
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse next test 2
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse step into fn call
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse step out of called fn
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse step test 1
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse step test 2
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse stepi from a function call
PASS -> FAIL: gdb.reverse/step-precsave.exp: simple reverse stepi
PASS -> FAIL: gdb.reverse/step-precsave.exp: simple stepi
PASS -> FAIL: gdb.reverse/step-precsave.exp: step test 1
PASS -> FAIL: gdb.reverse/step-precsave.exp: step test 2
PASS -> FAIL: gdb.reverse/step-precsave.exp: step up to call
PASS -> FAIL: gdb.reverse/step-precsave.exp: stepi back from function call
PASS -> FAIL: gdb.reverse/step-reverse.exp: finish out of fn call
PASS -> FAIL: gdb.reverse/step-reverse.exp: next over call
PASS -> FAIL: gdb.reverse/step-reverse.exp: next test 1
PASS -> FAIL: gdb.reverse/step-reverse.exp: next test 2
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse next over call
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse next test 1
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse next test 2
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse step into fn call
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse step out of called fn
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse step test 1
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse step test 2
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse stepi from a function call
PASS -> FAIL: gdb.reverse/step-reverse.exp: simple reverse stepi
PASS -> FAIL: gdb.reverse/step-reverse.exp: simple stepi
PASS -> FAIL: gdb.reverse/step-reverse.exp: step test 1
PASS -> FAIL: gdb.reverse/step-reverse.exp: step test 2
PASS -> FAIL: gdb.reverse/step-reverse.exp: step up to call
PASS -> FAIL: gdb.reverse/step-reverse.exp: stepi back from function call
PASS -> FAIL: gdb.threads/fork-child-threads.exp: next over fork
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/change-loc.exp: 1 ftrace: continue to marker 2
new FAIL: gdb.trace/change-loc.exp: 1 ftrace: continue to marker 3
new FAIL: gdb.trace/change-loc.exp: 1 ftrace: tfind
new FAIL: gdb.trace/change-loc.exp: 1 ftrace: tfind frame 0
new FAIL: gdb.trace/change-loc.exp: 1 ftrace: tracepoint with three locations
new FAIL: gdb.trace/change-loc.exp: 1 ftrace: tracepoint with two locations - installed
new FAIL: gdb.trace/change-loc.exp: 1 ftrace: tracepoint with two locations - pending
new FAIL: gdb.trace/change-loc.exp: 1 ftrace: tstop
new FAIL: gdb.trace/change-loc.exp: 2 ftrace: tfind frame 0
new FAIL: gdb.trace/change-loc.exp: 2 ftrace: tfind frame 1
new FAIL: gdb.trace/change-loc.exp: 2 ftrace: tfind frame 2
new FAIL: gdb.trace/change-loc.exp: 2 ftrace: tracepoint with two locations - installed
PASS -> FAIL: gdb.trace/change-loc.exp: 2 ftrace: tstart
new FAIL: gdb.trace/change-loc.exp: 2 ftrace: tstop
PASS -> FAIL: gdb.trace/ftrace-lock.exp: IPA loaded
PASS -> FAIL: gdb.trace/ftrace.exp: IPA loaded
PASS -> FAIL: gdb.trace/pending.exp: ftrace action_resolved: continue to marker 2
new FAIL: gdb.trace/pending.exp: ftrace action_resolved: tdump
new FAIL: gdb.trace/pending.exp: ftrace action_resolved: tfind test frame
new FAIL: gdb.trace/pending.exp: ftrace action_resolved: tfind test frame 0
PASS -> FAIL: gdb.trace/pending.exp: ftrace resolved_in_trace: continue to marker 2
new FAIL: gdb.trace/pending.exp: ftrace resolved_in_trace: tfind test frame
new FAIL: gdb.trace/pending.exp: ftrace resolved_in_trace: tfind test frame 0
PASS -> FAIL: gdb.trace/pending.exp: ftrace works: start trace experiment
new FAIL: gdb.trace/pending.exp: ftrace works: tfind test frame 0
new FAIL: gdb.trace/pending.exp: ftrace works: tfind test frame 1
new FAIL: gdb.trace/pending.exp: ftrace works: tfind test frame 2
PASS -> FAIL: gdb.trace/range-stepping.exp: IPA loaded
PASS -> FAIL: gdb.trace/trace-break.exp: IPA loaded
PASS -> FAIL: gdb.trace/trace-condition.exp: IPA loaded
PASS -> FAIL: gdb.trace/trace-enable-disable.exp: test_tracepoint_enable_disable ftrace: disable #1: tstatus
PASS -> FAIL: gdb.trace/trace-enable-disable.exp: test_tracepoint_enable_disable ftrace: disable #2: tstatus
PASS -> FAIL: gdb.trace/trace-enable-disable.exp: test_tracepoint_enable_disable ftrace: disable #3: tstatus
PASS -> FAIL: gdb.trace/trace-enable-disable.exp: test_tracepoint_enable_disable ftrace: enable #1: tstatus
PASS -> FAIL: gdb.trace/trace-enable-disable.exp: test_tracepoint_enable_disable ftrace: enable #2: tstatus
PASS -> FAIL: gdb.trace/trace-enable-disable.exp: test_tracepoint_enable_disable ftrace: enable #3: tstatus
PASS -> FAIL: gdb.trace/trace-enable-disable.exp: test_tracepoint_enable_disable ftrace: start: tstatus
PASS -> FAIL: gdb.trace/trace-enable-disable.exp: test_tracepoint_enable_disable ftrace: tstart
PASS -> FAIL: gdb.trace/trace-mt.exp: IPA loaded
PASS -> FAIL: gdb.trace/tspeed.exp: start trace experiment
==============================================

*** 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/37/37ab86550b9da31d6c32c2d3384bd27f0426e935//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/37/37ab86550b9da31d6c32c2d3384bd27f0426e935//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-19 22:13 [binutils-gdb] Decouple inferior_ptid/inferior_thread(); dup ptids in thread list (PR 25412) gdb-buildbot
@ 2020-06-19 22:50 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-19 22:50 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/3154

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        3922b302645fda04da42a5279399578ae2f6206c

Subject of commit:
        Decouple inferior_ptid/inferior_thread(); dup ptids in thread list (PR 25412)

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

*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.gdb/unittest.exp: maintenance check xml-descriptions ${srcdir}/../features
==============================================

*** 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/39/3922b302645fda04da42a5279399578ae2f6206c//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/39/3922b302645fda04da42a5279399578ae2f6206c//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-19 17:15 [binutils-gdb] Don't write to inferior_ptid in fork-child.c gdb-buildbot
@ 2020-06-19 17:15 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-19 17:15 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/3148

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        6d350754a32007465f9adbc11b87339e4493b358

Subject of commit:
        Don't write to inferior_ptid in fork-child.c

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

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.opencl/callfuncs.exp: OpenCL support not 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/Ubuntu-Aarch64-native-gdbserver-m64/6d/6d350754a32007465f9adbc11b87339e4493b358//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/6d/6d350754a32007465f9adbc11b87339e4493b358//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-19 16:03 [binutils-gdb] Don't write to inferior_ptid in bsd-kvm.c gdb-buildbot
@ 2020-06-19 16:21 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-19 16:21 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/3147

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        5d971d48b922afc1cfe3ba1798477473cfbd052e

Subject of commit:
        Don't write to inferior_ptid in bsd-kvm.c

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/5d/5d971d48b922afc1cfe3ba1798477473cfbd052e//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/5d/5d971d48b922afc1cfe3ba1798477473cfbd052e//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-19  9:39 [binutils-gdb] Don't write to inferior_ptid in nto-procfs.c gdb-buildbot
@ 2020-06-19  9:57 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-19  9:57 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/3140

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        ebe84f23d2f3c0cb145cc7b3acfb011a4c7df1c9

Subject of commit:
        Don't write to inferior_ptid in nto-procfs.c

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

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.opencl/callfuncs.exp: OpenCL support not detected
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/Ubuntu-Aarch64-native-gdbserver-m64/eb/ebe84f23d2f3c0cb145cc7b3acfb011a4c7df1c9//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/eb/ebe84f23d2f3c0cb145cc7b3acfb011a4c7df1c9//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-19  5:22 [binutils-gdb] Don't write to inferior_ptid in procfs.c gdb-buildbot
@ 2020-06-19  5:22 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-19  5:22 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/3135

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        7fb43e53d57d5d1c47fad8a2dece7b90d20b3fd3

Subject of commit:
        Don't write to inferior_ptid in procfs.c

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

*** Diff to previous build ***
==============================================
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=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/Ubuntu-Aarch64-native-gdbserver-m64/7f/7fb43e53d57d5d1c47fad8a2dece7b90d20b3fd3//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/7f/7fb43e53d57d5d1c47fad8a2dece7b90d20b3fd3//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-19  3:50 [binutils-gdb] Don't write to inferior_ptid in infrun.c gdb-buildbot
@ 2020-06-19  4:27 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-19  4:27 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/3134

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        18493a005acc8fbccbee4a2b767334eaaf636dd2

Subject of commit:
        Don't write to inferior_ptid in infrun.c

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

*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.base/catch-fork-kill.exp: fork-kind=fork: exit-kind=exit: fork: break grandparent_done
PASS -> UNRESOLVED: gdb.base/catch-fork-kill.exp: fork-kind=fork: exit-kind=exit: fork: continue
PASS -> FAIL: gdb.base/catch-fork-kill.exp: fork-kind=fork: exit-kind=exit: fork: continue to grandchild fork
PASS -> UNRESOLVED: gdb.base/catch-fork-kill.exp: fork-kind=fork: exit-kind=exit: fork: kill child
PASS -> UNRESOLVED: gdb.base/catch-fork-kill.exp: fork-kind=fork: exit-kind=exit: fork: switch to parent
PASS -> FAIL: gdb.base/catch-fork-kill.exp: fork-kind=fork: exit-kind=kill: fork: continue to grandchild fork
PASS -> UNRESOLVED: gdb.base/catch-fork-kill.exp: fork-kind=fork: exit-kind=kill: fork: kill child
PASS -> UNRESOLVED: gdb.base/catch-fork-kill.exp: fork-kind=fork: exit-kind=kill: fork: kill parent
PASS -> UNRESOLVED: gdb.base/catch-fork-kill.exp: fork-kind=fork: exit-kind=kill: fork: switch to parent
PASS -> FAIL: gdb.base/foll-fork.exp: follow child, detach off, command "continue": continue past fork
PASS -> UNRESOLVED: gdb.base/foll-fork.exp: follow child, detach off, command "continue": continue to breakpoint: continue unfollowed inferior to bp
PASS -> UNRESOLVED: gdb.base/foll-fork.exp: follow child, detach off, command "continue": inferior 1
PASS -> UNRESOLVED: gdb.base/foll-fork.exp: follow child, detach off, command "continue": info inferiors
PASS -> UNRESOLVED: gdb.base/foll-fork.exp: follow child, detach off, command "next 2": continue until exit at continue unfollowed inferior to end
PASS -> UNRESOLVED: gdb.base/foll-fork.exp: follow child, detach off, command "next 2": inferior 1
PASS -> UNRESOLVED: gdb.base/foll-fork.exp: follow child, detach off, command "next 2": info inferiors
PASS -> FAIL: gdb.base/foll-fork.exp: follow child, detach off, command "next 2": next 2 past fork
PASS -> UNRESOLVED: gdb.base/step-over-exit.exp: break marker
PASS -> UNRESOLVED: gdb.base/step-over-exit.exp: continue to end, first time
PASS -> UNRESOLVED: gdb.base/step-over-exit.exp: continue to end, second time
PASS -> FAIL: gdb.base/step-over-exit.exp: continue to exit
PASS -> UNRESOLVED: gdb.base/step-over-exit.exp: continue to marker, first time
PASS -> UNRESOLVED: gdb.base/step-over-exit.exp: continue to marker, second time
new UNRESOLVED: gdb.base/step-over-exit.exp: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/step-over-exit.exp: delete display 1
PASS -> UNRESOLVED: gdb.base/step-over-exit.exp: display/i $pc
PASS -> UNRESOLVED: gdb.base/step-over-exit.exp: find syscall insn in exit
PASS -> UNRESOLVED: gdb.base/step-over-exit.exp: get hexadecimal valueof "$pc"
new UNRESOLVED: gdb.base/step-over-exit.exp: set breakpoint condition-evaluation target
PASS -> UNRESOLVED: gdb.base/step-over-exit.exp: set conditional break at syscall address
PASS -> UNRESOLVED: gdb.base/step-over-exit.exp: switch back to inferior 1, first time
PASS -> UNRESOLVED: gdb.base/step-over-exit.exp: switch back to inferior 1, second time
PASS -> UNRESOLVED: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : fork: break marker
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : fork: continue to end of inf 2
PASS -> UNRESOLVED: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : fork: continue to marker
PASS -> UNRESOLVED: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : fork: inferior 1
new UNRESOLVED: gdb.multi/watchpoint-multi-exit.exp: dispose=detach: can't run to child_function
new UNRESOLVED: gdb.multi/watchpoint-multi-exit.exp: dispose=exit: can't run to child_function
new UNRESOLVED: gdb.multi/watchpoint-multi-exit.exp: dispose=kill: can't run to child_function
PASS -> UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: detach: continue
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: detach: continue to breakpoint: _exit
PASS -> UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: detach: detach child
PASS -> UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: detach: server exits
PASS -> UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: detach: switch to parent
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: killed outside: continue to breakpoint: _exit
PASS -> UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: killed outside: get integer valueof "mypid"
PASS -> UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: continue
PASS -> UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: continue to breakpoint: _exit
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: continue to breakpoint: child_function
PASS -> UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: detach child
PASS -> UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: server exits
new UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: setting breakpoint at _exit
PASS -> UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: switch to parent
PASS -> UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: watch globalvar
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: detach: continue to breakpoint: _exit
PASS -> UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: detach: detach child
PASS -> UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: detach: detach parent
PASS -> UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: detach: server exits
PASS -> UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: detach: switch to parent
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: killed outside: continue to breakpoint: _exit
PASS -> UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: killed outside: get integer valueof "mypid"
PASS -> UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: continue to breakpoint: _exit
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: continue to breakpoint: child_function
PASS -> UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: detach child
PASS -> UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: detach parent
PASS -> UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: server exits
new UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: setting breakpoint at _exit
PASS -> UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: switch to parent
PASS -> UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: watch globalvar
==============================================

*** 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/18/18493a005acc8fbccbee4a2b767334eaaf636dd2//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/18/18493a005acc8fbccbee4a2b767334eaaf636dd2//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-19  2:19 [binutils-gdb] Don't write to inferior_ptid in inf-ptrace.c gdb-buildbot
@ 2020-06-19  2:37 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-19  2:37 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/3132

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        6155c136ccf04b1e4ae1bdc201b853ce899b8607

Subject of commit:
        Don't write to inferior_ptid in inf-ptrace.c

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/61/6155c136ccf04b1e4ae1bdc201b853ce899b8607//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/61/6155c136ccf04b1e4ae1bdc201b853ce899b8607//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-18 13:48 [binutils-gdb] [gdb/testsuite] Move code from gdb_init to default_gdb_init gdb-buildbot
@ 2020-06-18 14:06 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-18 14:06 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/3128

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        a8a566853a0fc7f57159e55436ff6f395e499568

Subject of commit:
        [gdb/testsuite] Move code from gdb_init to default_gdb_init

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/a8/a8a566853a0fc7f57159e55436ff6f395e499568//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/a8/a8a566853a0fc7f57159e55436ff6f395e499568//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-18  0:49 [binutils-gdb] Fix TCL error in gdb.python/py-format-string.exp gdb-buildbot
@ 2020-06-18  1:26 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-18  1:26 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/3124

Author:
        Sandra Loosemore <sandra@codesourcery.com>

Commit tested:
        05e682e3be7e3d9d63ec358dcf8943fd200545cb

Subject of commit:
        Fix TCL error in gdb.python/py-format-string.exp.

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/05/05e682e3be7e3d9d63ec358dcf8943fd200545cb//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/05/05e682e3be7e3d9d63ec358dcf8943fd200545cb//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-17 22:40 [binutils-gdb] gdb, gdbserver: remove ARM regdat files gdb-buildbot
@ 2020-06-17 22:40 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-17 22:40 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/3121

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        7d458ea516b58c98214406859d57965879019215

Subject of commit:
        gdb, gdbserver: remove ARM regdat files

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

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.opencl/callfuncs.exp: OpenCL support not detected
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/Ubuntu-Aarch64-native-gdbserver-m64/7d/7d458ea516b58c98214406859d57965879019215//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/7d/7d458ea516b58c98214406859d57965879019215//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-17 21:27 [binutils-gdb] gdb/features: remove rx.xml from XMLTOC list gdb-buildbot
@ 2020-06-17 21:46 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-17 21:46 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/3120

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        3af96c0d99dedab49d2b82b730c74c27ce99bba4

Subject of commit:
        gdb/features: remove rx.xml from XMLTOC list

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: save a corefile
==============================================

*** 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/3a/3af96c0d99dedab49d2b82b730c74c27ce99bba4//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/3a/3af96c0d99dedab49d2b82b730c74c27ce99bba4//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-17 19:51 [binutils-gdb] x86: Delete incorrect vmgexit entry in prefix_table gdb-buildbot
@ 2020-06-17 19:51 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-17 19:51 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/3118

Author:
        Cui,Lili <lili.cui@intel.com>

Commit tested:
        6fde587ff78a54b9e3bd70259de60cc5d7d8ced7

Subject of commit:
        x86: Delete incorrect vmgexit entry in prefix_table

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/6f/6fde587ff78a54b9e3bd70259de60cc5d7d8ced7//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/6f/6fde587ff78a54b9e3bd70259de60cc5d7d8ced7//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-17 17:29 [binutils-gdb] Update thread_control_state::trap_expected comments gdb-buildbot
@ 2020-06-17 17:51 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-17 17:51 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/3116

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        b25e22fd1698b600310fc56f01b6005b5a3f6227

Subject of commit:
        Update thread_control_state::trap_expected comments

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/b2/b25e22fd1698b600310fc56f01b6005b5a3f6227//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/b2/b25e22fd1698b600310fc56f01b6005b5a3f6227//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-17 14:26 [binutils-gdb] gdb: Convert language la_value_print field to a method gdb-buildbot
@ 2020-06-17 14:26 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-17 14:26 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/3113

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        a1d1fa3e417b4bd8e79e2a731f9c6089e2d5f747

Subject of commit:
        gdb: Convert language la_value_print field to a method

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/a1/a1d1fa3e417b4bd8e79e2a731f9c6089e2d5f747//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/a1/a1d1fa3e417b4bd8e79e2a731f9c6089e2d5f747//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-17 13:46 [binutils-gdb] gdb: Convert language la_watch_location_expression field to a method gdb-buildbot
@ 2020-06-17 14:08 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-17 14:08 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/3112

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        f16a9f57b50af64ccb9652d20cc934fc5e80cd20

Subject of commit:
        gdb: Convert language la_watch_location_expression field to a method

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/f1/f16a9f57b50af64ccb9652d20cc934fc5e80cd20//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/f1/f16a9f57b50af64ccb9652d20cc934fc5e80cd20//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-17 11:00 [binutils-gdb] gdb: Convert language la_get_symbol_name_matcher field to a method gdb-buildbot
@ 2020-06-17 11:19 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-17 11:19 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/3109

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        c9debfb97e052c32cf0308157cae529ce2059f48

Subject of commit:
        gdb: Convert language la_get_symbol_name_matcher field to a method

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/c9/c9debfb97e052c32cf0308157cae529ce2059f48//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/c9/c9debfb97e052c32cf0308157cae529ce2059f48//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-17  9:11 [binutils-gdb] gdb: Convert language la_class_name_from_physname field to a method gdb-buildbot
@ 2020-06-17  9:29 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-17  9:29 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/3107

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        eff93b4d48eb0e79b7879475bb47eec55dbb41be

Subject of commit:
        gdb: Convert language la_class_name_from_physname field to a method

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/ef/eff93b4d48eb0e79b7879475bb47eec55dbb41be//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/ef/eff93b4d48eb0e79b7879475bb47eec55dbb41be//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-17  2:46 [binutils-gdb] Fix crash when exiting TUI with gdb -tui gdb-buildbot
@ 2020-06-17  2:46 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-17  2:46 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/3105

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        a350efd4fb368a35ada608f6bc26ccd3bed0ae6b

Subject of commit:
        Fix crash when exiting TUI with gdb -tui

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

*** Diff to previous build ***
==============================================
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=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/Ubuntu-Aarch64-native-gdbserver-m64/a3/a350efd4fb368a35ada608f6bc26ccd3bed0ae6b//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/a3/a350efd4fb368a35ada608f6bc26ccd3bed0ae6b//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-17  0:38 [binutils-gdb] Fix crash when TUI window creation fails gdb-buildbot
@ 2020-06-17  0:56 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-17  0:56 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/3103

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        d2d1ea20aef6ed97232280b5e15a52b8d7dc7b7d

Subject of commit:
        Fix crash when TUI window creation fails

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/d2/d2d1ea20aef6ed97232280b5e15a52b8d7dc7b7d//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/d2/d2d1ea20aef6ed97232280b5e15a52b8d7dc7b7d//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-15 20:44 [binutils-gdb] xtensa: allow runtime ABI selection gdb-buildbot
@ 2020-06-15 21:02 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-15 21:02 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/3099

Author:
        Max Filippov <jcmvbkbc@gmail.com>

Commit tested:
        7a77f1ac2c6f899faa39e8c0b42d4284d586c44e

Subject of commit:
        xtensa: allow runtime ABI selection

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/7a/7a77f1ac2c6f899faa39e8c0b42d4284d586c44e//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/7a/7a77f1ac2c6f899faa39e8c0b42d4284d586c44e//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-15  7:33 [binutils-gdb] gdb/testsuite: fix minor things in jit tests gdb-buildbot
@ 2020-06-15  8:10 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-15  8:10 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/3093

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        ff08abb8a2cdb449314b68ebc6ba8edf475fb415

Subject of commit:
        gdb/testsuite: fix minor things in jit tests

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

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.opencl/vec_comps.exp: OpenCL support not detected
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/Ubuntu-Aarch64-native-gdbserver-m64/ff/ff08abb8a2cdb449314b68ebc6ba8edf475fb415//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/ff/ff08abb8a2cdb449314b68ebc6ba8edf475fb415//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-14 12:51 [binutils-gdb] x86: Correct xsusldtrk mnemonic gdb-buildbot
@ 2020-06-14 13:28 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-14 13:28 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/3089

Author:
        H.J. Lu <hjl.tools@gmail.com>

Commit tested:
        efe30057d2fcf875e39efbe6cc2a6271decbbd2e

Subject of commit:
        x86: Correct xsusldtrk mnemonic

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: pc after stepi matches insn addr after syscall
==============================================

*** 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/ef/efe30057d2fcf875e39efbe6cc2a6271decbbd2e//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/ef/efe30057d2fcf875e39efbe6cc2a6271decbbd2e//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-13  4:15 [binutils-gdb] gdb: mention removed GDBserver host support in NEWS gdb-buildbot
@ 2020-06-13  4:33 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-13  4:33 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/3087

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        6a17d503c45b69dbf92c4c2a1aa2148db458c6b1

Subject of commit:
        gdb: mention removed GDBserver host support in NEWS

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/6a/6a17d503c45b69dbf92c4c2a1aa2148db458c6b1//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/6a/6a17d503c45b69dbf92c4c2a1aa2148db458c6b1//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-13  3:38 [binutils-gdb] gdbserver: remove support for ARM/WinCE gdb-buildbot
@ 2020-06-13  3:38 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-13  3:38 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/3086

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        84b300de3666ce1c86820a44f22ffd76eca04085

Subject of commit:
        gdbserver: remove support for ARM/WinCE

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

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.opencl/vec_comps.exp: OpenCL support not 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/Ubuntu-Aarch64-native-gdbserver-m64/84/84b300de3666ce1c86820a44f22ffd76eca04085//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/84/84b300de3666ce1c86820a44f22ffd76eca04085//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-13  2:25 [binutils-gdb] gdbserver: remove support for Tile gdb-buildbot
@ 2020-06-13  2:43 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-13  2:43 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/3085

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        96c16e2b7f47c301912ac92f53b756e26ef44ffb

Subject of commit:
        gdbserver: remove support for Tile

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/96/96c16e2b7f47c301912ac92f53b756e26ef44ffb//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/96/96c16e2b7f47c301912ac92f53b756e26ef44ffb//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-13  1:48 [binutils-gdb] gdbserver: remove support for M32R gdb-buildbot
@ 2020-06-13  1:48 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-13  1:48 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/3084

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        bd1467aee8dff8f1ea196b1ae10b14b6d1709dfb

Subject of commit:
        gdbserver: remove support for M32R

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

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.opencl/callfuncs.exp: OpenCL support not 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/Ubuntu-Aarch64-native-gdbserver-m64/bd/bd1467aee8dff8f1ea196b1ae10b14b6d1709dfb//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/bd/bd1467aee8dff8f1ea196b1ae10b14b6d1709dfb//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-13  0:15 [binutils-gdb] gdbserver: remove support for CRIS gdb-buildbot
@ 2020-06-13  0:53 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-13  0:53 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/3083

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        7b46bf6f83c444ac84b3b88ebd89a8dae0de2f37

Subject of commit:
        gdbserver: remove support for CRIS

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/7b/7b46bf6f83c444ac84b3b88ebd89a8dae0de2f37//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/7b/7b46bf6f83c444ac84b3b88ebd89a8dae0de2f37//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-12 21:48 [binutils-gdb] gdbserver: remove support for LynxOS gdb-buildbot
@ 2020-06-12 22:06 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-12 22:06 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/3080

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        fdb95bf546c7ea42fc61bed73bacd04ef237aa1a

Subject of commit:
        gdbserver: remove support for LynxOS

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/fd/fdb95bf546c7ea42fc61bed73bacd04ef237aa1a//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/fd/fdb95bf546c7ea42fc61bed73bacd04ef237aa1a//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-12 12:11 [binutils-gdb] [gdb/testsuite] Don't leak tuiterm.exp spawn override gdb-buildbot
@ 2020-06-12 12:29 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-12 12:29 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/3076

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        8c74a764f2cf5ea5e6997e35ba0f755fe2c09889

Subject of commit:
        [gdb/testsuite] Don't leak tuiterm.exp spawn override

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/8c/8c74a764f2cf5ea5e6997e35ba0f755fe2c09889//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/8c/8c74a764f2cf5ea5e6997e35ba0f755fe2c09889//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-12  7:55 [binutils-gdb] [gdb/testsuite] Don't abort testrun for invalid command in test-case gdb-buildbot
@ 2020-06-12  8:13 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-12  8:13 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/3075

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        26783bce15adc0316f9167a216519cebcf1ccac3

Subject of commit:
        [gdb/testsuite] Don't abort testrun for invalid command in test-case

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/26/26783bce15adc0316f9167a216519cebcf1ccac3//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/26/26783bce15adc0316f9167a216519cebcf1ccac3//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-11 17:19 [binutils-gdb] Fix hex floating point lexing gdb-buildbot
@ 2020-06-11 17:36 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-11 17:36 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/3072

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        2b4e6a3f4b66284556254f548716c7b21b93524a

Subject of commit:
        Fix hex floating point lexing

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

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.opencl/callfuncs.exp: OpenCL support not 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=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/Ubuntu-Aarch64-native-gdbserver-m64/2b/2b4e6a3f4b66284556254f548716c7b21b93524a//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/2b/2b4e6a3f4b66284556254f548716c7b21b93524a//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-11  2:14 [binutils-gdb] ia64: Set DF_TEXTREL instead of reltext gdb-buildbot
@ 2020-06-11  2:32 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-11  2:32 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/3065

Author:
        H.J. Lu <hjl.tools@gmail.com>

Commit tested:
        447f6d86275aa5790109c2dfd85f3a11919fff8f

Subject of commit:
        ia64: Set DF_TEXTREL instead of reltext

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/44/447f6d86275aa5790109c2dfd85f3a11919fff8f//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/44/447f6d86275aa5790109c2dfd85f3a11919fff8f//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-10 13:17 [binutils-gdb] ELF: Properly handle section symbols gdb-buildbot
@ 2020-06-10 13:35 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-10 13:35 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/3062

Author:
        H.J. Lu <hjl.tools@gmail.com>

Commit tested:
        e1b5d517d1c293a64df311d2749bbbbfbe035a4c

Subject of commit:
        ELF: Properly handle section symbols

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/e1/e1b5d517d1c293a64df311d2749bbbbfbe035a4c//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/e1/e1b5d517d1c293a64df311d2749bbbbfbe035a4c//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-09 15:25 [binutils-gdb] IFUNC: Update IFUNC resolver check with DT_TEXTREL gdb-buildbot
@ 2020-06-09 15:25 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-09 15:25 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/3060

Author:
        H.J. Lu <hjl.tools@gmail.com>

Commit tested:
        cebd6b8ac1c5a2a847a50e3efe932ff2d0867b3e

Subject of commit:
        IFUNC: Update IFUNC resolver check with DT_TEXTREL

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/ce/cebd6b8ac1c5a2a847a50e3efe932ff2d0867b3e//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/ce/cebd6b8ac1c5a2a847a50e3efe932ff2d0867b3e//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-09 11:42 [binutils-gdb] x86: consistently print prefixes explicitly which are invalid with VEX etc gdb-buildbot
@ 2020-06-09 11:42 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-09 11:42 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/3058

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        73239888b37b95101d55d1d58b0acb663496b8d7

Subject of commit:
        x86: consistently print prefixes explicitly which are invalid with VEX etc

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

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.opencl/vec_comps.exp: OpenCL support not 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/Ubuntu-Aarch64-native-gdbserver-m64/73/73239888b37b95101d55d1d58b0acb663496b8d7//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/73/73239888b37b95101d55d1d58b0acb663496b8d7//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-09  9:34 [binutils-gdb] x86: utilize X macro in EVEX decoding gdb-buildbot
@ 2020-06-09  9:52 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-09  9:52 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/3056

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        97e6786a6e354de573a1ec8c5021addf0066417a

Subject of commit:
        x86: utilize X macro in EVEX decoding

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/97/97e6786a6e354de573a1ec8c5021addf0066417a//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/97/97e6786a6e354de573a1ec8c5021addf0066417a//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-09  1:29 [binutils-gdb] PowerPC64: Downgrade ifunc with textrel error to a warning gdb-buildbot
@ 2020-06-09  1:47 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-09  1: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/3053

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        efb2a7b412c2c78eaf6d3b63f153a749fcde292c

Subject of commit:
        PowerPC64: Downgrade ifunc with textrel error to a warning

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/ef/efb2a7b412c2c78eaf6d3b63f153a749fcde292c//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/ef/efb2a7b412c2c78eaf6d3b63f153a749fcde292c//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-08 23:05 [binutils-gdb] gdb: remove FIELD_TYPE macro gdb-buildbot
@ 2020-06-08 23:42 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-08 23:42 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/3051

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        b6cdac4b80c1d32726227305e16483cef9d40e2c

Subject of commit:
        gdb: remove FIELD_TYPE macro

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/b6/b6cdac4b80c1d32726227305e16483cef9d40e2c//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/b6/b6cdac4b80c1d32726227305e16483cef9d40e2c//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-08 20:39 [binutils-gdb] gdb: add type::index_type / type::set_index_type gdb-buildbot
@ 2020-06-08 20:57 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-08 20:57 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/3048

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        262abc0d67af006a709d0935940f9c9f5f7c5ee5

Subject of commit:
        gdb: add type::index_type / type::set_index_type

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/26/262abc0d67af006a709d0935940f9c9f5f7c5ee5//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/26/262abc0d67af006a709d0935940f9c9f5f7c5ee5//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-08 15:56 [binutils-gdb] [PATCH] arm: Add DFB instruction for ARMv8-R gdb-buildbot
@ 2020-06-08 16:14 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-08 16:14 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/3047

Author:
        Alex Coplan <alex.coplan@arm.com>

Commit tested:
        26417f19193444a1516c945492c5eb47dc38abe9

Subject of commit:
        [PATCH] arm: Add DFB instruction for ARMv8-R

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

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.opencl/vec_comps.exp: OpenCL support not 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/Ubuntu-Aarch64-native-gdbserver-m64/26/26417f19193444a1516c945492c5eb47dc38abe9//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/26/26417f19193444a1516c945492c5eb47dc38abe9//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-08  7:43 [binutils-gdb] x86: restrict use of register aliases gdb-buildbot
@ 2020-06-08  7:43 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-08  7:43 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/3045

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        8a6fb3f9bb5105e58f6800de9089a4bdb0cc0cd6

Subject of commit:
        x86: restrict use of register aliases

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/8a/8a6fb3f9bb5105e58f6800de9089a4bdb0cc0cd6//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/8a/8a6fb3f9bb5105e58f6800de9089a4bdb0cc0cd6//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-07 15:25 [binutils-gdb] Remove unused parameter from generic_val_print_float gdb-buildbot
@ 2020-06-07 15:25 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-07 15:25 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/3042

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        82836c928ffc6aaa9e594ba69af5f446bdc95bf4

Subject of commit:
        Remove unused parameter from generic_val_print_float

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

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.opencl/vec_comps.exp: OpenCL support not 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=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
==============================================

*** 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/82/82836c928ffc6aaa9e594ba69af5f446bdc95bf4//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/82/82836c928ffc6aaa9e594ba69af5f446bdc95bf4//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-07  1:42 [binutils-gdb] Remove is_vxworks from _bfd_sparc_elf_link_hash_table gdb-buildbot
@ 2020-06-07  1:42 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-07  1:42 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/3040

Author:
        H.J. Lu <hjl.tools@gmail.com>

Commit tested:
        bcab203d31b2dd7e0b35abda34c42c278217bcf6

Subject of commit:
        Remove is_vxworks from _bfd_sparc_elf_link_hash_table

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/bc/bcab203d31b2dd7e0b35abda34c42c278217bcf6//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/bc/bcab203d31b2dd7e0b35abda34c42c278217bcf6//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-06 14:12 [binutils-gdb] ELF: Add target_os to elf_link_hash_table/elf_backend_data gdb-buildbot
@ 2020-06-06 14:48 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-06 14:48 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/3039

Author:
        H.J. Lu <hjl.tools@gmail.com>

Commit tested:
        90c14f0c3ac0252be955990e0ae120faedfb7b59

Subject of commit:
        ELF: Add target_os to elf_link_hash_table/elf_backend_data

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/90/90c14f0c3ac0252be955990e0ae120faedfb7b59//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/90/90c14f0c3ac0252be955990e0ae120faedfb7b59//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-06  7:12 [binutils-gdb] Power10 tidies gdb-buildbot
@ 2020-06-06  7:12 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-06  7:12 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/3038

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        1424c35d071e7d49a4a219c7dee8c88ffd60ddca

Subject of commit:
        Power10 tidies

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/14/1424c35d071e7d49a4a219c7dee8c88ffd60ddca//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/14/1424c35d071e7d49a4a219c7dee8c88ffd60ddca//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-05 21:14 [binutils-gdb] Revert "gdb/python: Avoid use after free in py-tui.c" gdb-buildbot
@ 2020-06-05 21:14 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-05 21:14 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/3036

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        940dace9cff6f44e051632e12b51cef23f19de1f

Subject of commit:
        Revert "gdb/python: Avoid use after free in py-tui.c"

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/94/940dace9cff6f44e051632e12b51cef23f19de1f//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/94/940dace9cff6f44e051632e12b51cef23f19de1f//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-05 15:58 [binutils-gdb] bfin: Skip non SEC_ALLOC section gdb-buildbot
@ 2020-06-05 16:16 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-05 16:16 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/3032

Author:
        H.J. Lu <hjl.tools@gmail.com>

Commit tested:
        981f151804e47290f4dcff507aeb530b3334ac17

Subject of commit:
        bfin: Skip non SEC_ALLOC section

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/98/981f151804e47290f4dcff507aeb530b3334ac17//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/98/981f151804e47290f4dcff507aeb530b3334ac17//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-05 14:27 [binutils-gdb] Fix a use before initialization bug in the pdp11.c source file gdb-buildbot
@ 2020-06-05 14:27 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-05 14:27 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/3030

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        9c65eeacd88bc02aad537394930b48c50fb616d6

Subject of commit:
        Fix a use before initialization bug in the pdp11.c source file.

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/9c/9c65eeacd88bc02aad537394930b48c50fb616d6//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/9c/9c65eeacd88bc02aad537394930b48c50fb616d6//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-05  9:51 [binutils-gdb] gdb: really share partial symtabs when using .gdb_index or .debug_names gdb-buildbot
@ 2020-06-05  9:51 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-05  9:51 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/3025

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        f8c4185131758306ddeb7b40479e82cab4dd7f26

Subject of commit:
        gdb: really share partial symtabs when using .gdb_index or .debug_names

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/f8/f8c4185131758306ddeb7b40479e82cab4dd7f26//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/f8/f8c4185131758306ddeb7b40479e82cab4dd7f26//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-05  8:36 [binutils-gdb] x86: Remove target_id from elf_x86_link_hash_table gdb-buildbot
@ 2020-06-05  8:54 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-05  8:54 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/3024

Author:
        H.J. Lu <hjl.tools@gmail.com>

Commit tested:
        add5f777decf9257f46c98dc2aacedb52a3d65e6

Subject of commit:
        x86: Remove target_id from elf_x86_link_hash_table

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

*** 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/ad/add5f777decf9257f46c98dc2aacedb52a3d65e6//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/ad/add5f777decf9257f46c98dc2aacedb52a3d65e6//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-05  7:23 [binutils-gdb] [gdb/testsuite] Remove path names from error messages in gdb_file_cmd gdb-buildbot
@ 2020-06-05  8:00 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-05  8:00 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/3023

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        1c07a73f66382eb0c95132aaf9690621fdce1e78

Subject of commit:
        [gdb/testsuite] Remove path names from error messages in gdb_file_cmd

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/1c/1c07a73f66382eb0c95132aaf9690621fdce1e78//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/1c/1c07a73f66382eb0c95132aaf9690621fdce1e78//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-05  6:10 [binutils-gdb] cpu, gas, opcodes: remove no longer needed workaround from the BPF port gdb-buildbot
@ 2020-06-05  6:10 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-05  6:10 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/3021

Author:
        Jose E. Marchesi <jose.marchesi@oracle.com>

Commit tested:
        d8740be15930b820ab51d7a76695194022a83551

Subject of commit:
        cpu,gas,opcodes: remove no longer needed workaround from the BPF port

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

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.opencl/vec_comps.exp: OpenCL support not 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/Ubuntu-Aarch64-native-gdbserver-m64/d8/d8740be15930b820ab51d7a76695194022a83551//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/d8/d8740be15930b820ab51d7a76695194022a83551//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-04 16:50 [binutils-gdb] opcodes: discriminate endianness and insn-endianness in CGEN ports gdb-buildbot
@ 2020-06-04 17:08 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-04 17:08 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/3019

Author:
        Jose E. Marchesi <jose.marchesi@oracle.com>

Commit tested:
        e9bffec9afc45cf7c49308f0b4b8cc6bf68f58f2

Subject of commit:
        opcodes: discriminate endianness and insn-endianness in CGEN ports

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/e9/e9bffec9afc45cf7c49308f0b4b8cc6bf68f58f2//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/e9/e9bffec9afc45cf7c49308f0b4b8cc6bf68f58f2//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-04 15:17 [binutils-gdb] [gdb/testsuite] Fix use of fail in gdb_cmd_file gdb-buildbot
@ 2020-06-04 15:17 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-04 15:17 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/3017

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        0cfcd4f003ce0ed5467fd0ceeff4a191439c5923

Subject of commit:
        [gdb/testsuite] Fix use of fail in gdb_cmd_file

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/0c/0cfcd4f003ce0ed5467fd0ceeff4a191439c5923//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/0c/0cfcd4f003ce0ed5467fd0ceeff4a191439c5923//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-04  0:30 [binutils-gdb] [gdb/symtab] Fix missing breakpoint location for inlined function gdb-buildbot
@ 2020-06-04  0:49 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-04  0:49 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/3014

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        f9b5d5ea18a3878ca48c1b747e35d456133858bc

Subject of commit:
        [gdb/symtab] Fix missing breakpoint location for inlined function

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

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.opencl/callfuncs.exp: OpenCL support not 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/Ubuntu-Aarch64-native-gdbserver-m64/f9/f9b5d5ea18a3878ca48c1b747e35d456133858bc//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/f9/f9b5d5ea18a3878ca48c1b747e35d456133858bc//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-03 23:35 [binutils-gdb] nios2: Call _bfd_elf_maybe_set_textrel to set DF_TEXTREL gdb-buildbot
@ 2020-06-03 23:53 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-03 23:53 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/3013

Author:
        H.J. Lu <hjl.tools@gmail.com>

Commit tested:
        d4d8aee345704f7c39ebe9910cc08386708637b1

Subject of commit:
        nios2: Call _bfd_elf_maybe_set_textrel to set DF_TEXTREL

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/d4/d4d8aee345704f7c39ebe9910cc08386708637b1//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/d4/d4d8aee345704f7c39ebe9910cc08386708637b1//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-03 22:03 [binutils-gdb] frv: Don't generate dynamic relocation for non SEC_ALLOC sections gdb-buildbot
@ 2020-06-03 22:03 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-03 22: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/3011

Author:
        H.J. Lu <hjl.tools@gmail.com>

Commit tested:
        9a6896021df5997a1ea5d52b86b833920005e652

Subject of commit:
        frv: Don't generate dynamic relocation for non SEC_ALLOC sections

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/9a/9a6896021df5997a1ea5d52b86b833920005e652//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/9a/9a6896021df5997a1ea5d52b86b833920005e652//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-03 20:13 [binutils-gdb] [gdb/testsuite] Fix use of verbose in gdb/jit-*.exp gdb-buildbot
@ 2020-06-03 20:13 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-03 20:13 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/3009

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        5144dfba285d9b467016b7a2f72f0240fda7ce8f

Subject of commit:
        [gdb/testsuite] Fix use of verbose in gdb/jit-*.exp

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/51/5144dfba285d9b467016b7a2f72f0240fda7ce8f//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/51/5144dfba285d9b467016b7a2f72f0240fda7ce8f//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-03 19:18 [binutils-gdb] Updated Serbian translation for the opcodes sub-directory gdb-buildbot
@ 2020-06-03 19:18 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-03 19:18 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/3008

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        4ee4189f86ca1efac81864c61b51acca65078077

Subject of commit:
        Updated Serbian translation for the opcodes sub-directory

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

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: 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/Ubuntu-Aarch64-native-gdbserver-m64/4e/4ee4189f86ca1efac81864c61b51acca65078077//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/4e/4ee4189f86ca1efac81864c61b51acca65078077//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-03 17:46 [binutils-gdb] This patch set for the generic BFD a.out backend removes a dead #define and makes aoutx.h self-contained: [PATCH 1/2]: bfd: remove unused NO_WRITE_HEADER_KLUDGE #define [PATCH 2/2]: bfd: make aoutx.h self-contained gdb-buildbot
@ 2020-06-03 18:23 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-03 18:23 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/3007

Author:
        Gunther Nikl <gnikl@justmail.de>

Commit tested:
        0bff75284e1067e22cbe88fad672362db06f22ee

Subject of commit:
        This patch set for the generic BFD a.out backend removes a dead #define and makes aoutx.h self-contained:  [PATCH 1/2]: bfd: remove unused NO_WRITE_HEADER_KLUDGE #define  [PATCH 2/2]: bfd: make aoutx.h self-contained

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/0b/0bff75284e1067e22cbe88fad672362db06f22ee//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/0b/0bff75284e1067e22cbe88fad672362db06f22ee//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-03 16:09 [binutils-gdb] ELF: Copy dyn_relocs in _bfd_elf_link_hash_copy_indirect gdb-buildbot
@ 2020-06-03 16:33 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-03 16:33 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/3005

Author:
        H.J. Lu <hjl.tools@gmail.com>

Commit tested:
        ad172eaa4f5ff973890a6c37574946cecf0668b0

Subject of commit:
        ELF: Copy dyn_relocs in _bfd_elf_link_hash_copy_indirect

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/ad/ad172eaa4f5ff973890a6c37574946cecf0668b0//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/ad/ad172eaa4f5ff973890a6c37574946cecf0668b0//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-03 14:37 [binutils-gdb] x86: Silence -fsanitize=undefined gdb-buildbot
@ 2020-06-03 14:37 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-03 14:37 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/3003

Author:
        H.J. Lu <hjl.tools@gmail.com>

Commit tested:
        433953ffa1a59531a5537327a4e3ce24565e609c

Subject of commit:
        x86: Silence -fsanitize=undefined

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/43/433953ffa1a59531a5537327a4e3ce24565e609c//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/43/433953ffa1a59531a5537327a4e3ce24565e609c//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-03  2:28 [binutils-gdb] RISC-V: Fix the error when building RISC-V linux native gdbserver gdb-buildbot
@ 2020-06-03  2:28 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-03  2:28 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/3000

Author:
        Nelson Chu <nelson.chu@sifive.com>

Commit tested:
        44730156af5f411d2c47af22558e7bd84dc4fcea

Subject of commit:
        RISC-V: Fix the error when building RISC-V linux native gdbserver.

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

*** Diff to previous build ***
==============================================
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=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/Ubuntu-Aarch64-native-gdbserver-m64/44/44730156af5f411d2c47af22558e7bd84dc4fcea//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/44/44730156af5f411d2c47af22558e7bd84dc4fcea//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-03  0:38 [binutils-gdb] gdb: Convert language la_demangle field to a method gdb-buildbot
@ 2020-06-03  0:38 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-03  0:38 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/2998

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        0a50df5dabfe12c8bf20f4f724622ff38ef7828b

Subject of commit:
        gdb: Convert language la_demangle field to a method

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/0a/0a50df5dabfe12c8bf20f4f724622ff38ef7828b//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/0a/0a50df5dabfe12c8bf20f4f724622ff38ef7828b//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-02 22:48 [binutils-gdb] gdb: Convert language la_sniff_from_mangled_name field to a method gdb-buildbot
@ 2020-06-02 22:48 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-02 22:48 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/2996

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        6f8270197a2909607f2c076018e30677bbac652e

Subject of commit:
        gdb: Convert language la_sniff_from_mangled_name field to a method

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/6f/6f8270197a2909607f2c076018e30677bbac652e//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/6f/6f8270197a2909607f2c076018e30677bbac652e//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-02 21:16 [binutils-gdb] gdb: Convert language la_search_name_hash field to a method gdb-buildbot
@ 2020-06-02 21:54 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-02 21:54 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/2995

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        fb8006fd350ad9eba04c19904f9a0fcd47628b41

Subject of commit:
        gdb: Convert language la_search_name_hash field to a method

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/fb/fb8006fd350ad9eba04c19904f9a0fcd47628b41//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/fb/fb8006fd350ad9eba04c19904f9a0fcd47628b41//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-02 20:41 [binutils-gdb] gdb: Convert language la_get_compile_instance field to a method gdb-buildbot
@ 2020-06-02 20:58 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-02 20:58 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/2994

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        8e25bafe932b090850854321b816685b2462c17e

Subject of commit:
        gdb: Convert language la_get_compile_instance field to a method

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/8e/8e25bafe932b090850854321b816685b2462c17e//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/8e/8e25bafe932b090850854321b816685b2462c17e//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-02 19:45 [binutils-gdb] gdb: Convert language la_iterate_over_symbols field to a method gdb-buildbot
@ 2020-06-02 20:03 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-02 20: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/2993

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        4009ee92c4ec3ee63f455c5abd761e26a819ef4a

Subject of commit:
        gdb: Convert language la_iterate_over_symbols field to a method

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

*** 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/40/4009ee92c4ec3ee63f455c5abd761e26a819ef4a//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/40/4009ee92c4ec3ee63f455c5abd761e26a819ef4a//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-02 19:07 [binutils-gdb] gdb: Convert language la_lookup_transparent_type field to a method gdb-buildbot
@ 2020-06-02 19:07 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-02 19:07 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/2992

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        54f4ca4610893424746e56997115b71bc31ffd8a

Subject of commit:
        gdb: Convert language la_lookup_transparent_type field to a method

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

*** Diff to previous build ***
==============================================
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=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/Ubuntu-Aarch64-native-gdbserver-m64/54/54f4ca4610893424746e56997115b71bc31ffd8a//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/54/54f4ca4610893424746e56997115b71bc31ffd8a//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-02 17:54 [binutils-gdb] gdb: Convert language la_language_arch_info field to a method gdb-buildbot
@ 2020-06-02 18:12 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-02 18:12 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/2991

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        1fb314aaa3142711e452e66c2dced781a4d1ef87

Subject of commit:
        gdb: Convert language la_language_arch_info field to a method

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/1f/1fb314aaa3142711e452e66c2dced781a4d1ef87//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/1f/1fb314aaa3142711e452e66c2dced781a4d1ef87//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-02 17:17 [binutils-gdb] gdb: Convert language la_pass_by_reference field to a method gdb-buildbot
@ 2020-06-02 17:17 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-02 17:17 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/2990

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        48448202d7e607d7423c6186438099f442732a95

Subject of commit:
        gdb: Convert language la_pass_by_reference field to a method

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/48/48448202d7e607d7423c6186438099f442732a95//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/48/48448202d7e607d7423c6186438099f442732a95//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-02 15:09 [binutils-gdb] gdb: Convert language la_print_array_index field to a method gdb-buildbot
@ 2020-06-02 15:27 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-02 15:27 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/2988

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        5bd40f2a3feb273e92b640544f6e5307c8124d90

Subject of commit:
        gdb: Convert language la_print_array_index field to a method

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/5b/5bd40f2a3feb273e92b640544f6e5307c8124d90//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/5b/5bd40f2a3feb273e92b640544f6e5307c8124d90//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-02 13:34 [binutils-gdb] [gdb/testsuite] Fix scrolling in gdb.dwarf2/multidictionary.exp gdb-buildbot
@ 2020-06-02 13:34 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-02 13:34 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/2986

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        621eacdfb42f9deba559ea0bada70f6ca2367f5f

Subject of commit:
        [gdb/testsuite] Fix scrolling in gdb.dwarf2/multidictionary.exp

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/62/621eacdfb42f9deba559ea0bada70f6ca2367f5f//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/62/621eacdfb42f9deba559ea0bada70f6ca2367f5f//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-06-01 15:41 [binutils-gdb] alpha-vms: ETIR checks gdb-buildbot
@ 2020-06-01 15:59 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-06-01 15:59 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/2984

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        2fdb65f247379befd548a33ea185172968b9ebb9

Subject of commit:
        alpha-vms: ETIR checks

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/2f/2fdb65f247379befd548a33ea185172968b9ebb9//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/2f/2fdb65f247379befd548a33ea185172968b9ebb9//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-31 10:59 [binutils-gdb] gnu-nat: Move local functions inside gnu_nat_target class gdb-buildbot
@ 2020-05-31 11:17 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-31 11:17 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/2980

Author:
        Samuel Thibault <samuel.thibault@ens-lyon.org>

Commit tested:
        14a8ad62e6a7885296d234c3765bfab08df3dc6f

Subject of commit:
        gnu-nat: Move local functions inside gnu_nat_target class

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/14/14a8ad62e6a7885296d234c3765bfab08df3dc6f//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/14/14a8ad62e6a7885296d234c3765bfab08df3dc6f//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-31  0:21 [binutils-gdb] hurd: add gnu_target pointer to fix thread API calls gdb-buildbot
@ 2020-05-31  0:38 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-31  0:38 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/2976

Author:
        Samuel Thibault <samuel.thibault@ens-lyon.org>

Commit tested:
        53dff92cb56fb21dc81c183aa35a5a3ae8c06e32

Subject of commit:
        hurd: add gnu_target pointer to fix thread API calls

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
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/53/53dff92cb56fb21dc81c183aa35a5a3ae8c06e32//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/53/53dff92cb56fb21dc81c183aa35a5a3ae8c06e32//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-30 23:26 [binutils-gdb] hurd: remove unused variables gdb-buildbot
@ 2020-05-30 23:43 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-30 23:43 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/2975

Author:
        Samuel Thibault <samuel.thibault@ens-lyon.org>

Commit tested:
        5a8b86270bbce5f9316ef7bdaa1a20b4832335ca

Subject of commit:
        hurd: remove unused variables

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/5a/5a8b86270bbce5f9316ef7bdaa1a20b4832335ca//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/5a/5a8b86270bbce5f9316ef7bdaa1a20b4832335ca//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-30 21:37 [binutils-gdb] hurd: make function cast stronger gdb-buildbot
@ 2020-05-30 21:55 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-30 21:55 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/2973

Author:
        Samuel Thibault <samuel.thibault@ens-lyon.org>

Commit tested:
        f14871bfa408cf499e1783bc3e2aabb1bd3cf9a7

Subject of commit:
        hurd: make function cast stronger

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/f1/f14871bfa408cf499e1783bc3e2aabb1bd3cf9a7//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/f1/f14871bfa408cf499e1783bc3e2aabb1bd3cf9a7//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-30 20:07 [binutils-gdb] hurd: fix gnu_debug_flag type gdb-buildbot
@ 2020-05-30 20:07 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-30 20:07 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/2971

Author:
        Samuel Thibault <samuel.thibault@ens-lyon.org>

Commit tested:
        6930bffe3373690b3431d6291f9f7c116d6a1ec4

Subject of commit:
        hurd: fix gnu_debug_flag type

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

*** Diff to previous build ***
==============================================
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=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/Ubuntu-Aarch64-native-gdbserver-m64/69/6930bffe3373690b3431d6291f9f7c116d6a1ec4//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/69/6930bffe3373690b3431d6291f9f7c116d6a1ec4//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-30  9:14 [binutils-gdb] gdb: rename dwarf2_per_objfile variables/fields to per_objfile gdb-buildbot
@ 2020-05-30  9:51 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-30  9:51 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/2968

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        976ca31673841e14a7595ed32f8009b61608fe46

Subject of commit:
        gdb: rename dwarf2_per_objfile variables/fields to per_objfile

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
new UNRESOLVED: gdb.opencl/callfuncs.exp: OpenCL support not 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/Ubuntu-Aarch64-native-gdbserver-m64/97/976ca31673841e14a7595ed32f8009b61608fe46//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/97/976ca31673841e14a7595ed32f8009b61608fe46//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-30  7:43 [binutils-gdb] Fix file-not-found error with clang in gdb.arch/i386-{avx, sse}.c gdb-buildbot
@ 2020-05-30  8:01 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-30  8:01 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/2966

Author:
        Gary Benson <gbenson@redhat.com>

Commit tested:
        9fcafd23fa6d919f112e9a7f73e72895c2457de1

Subject of commit:
        Fix file-not-found error with clang in gdb.arch/i386-{avx,sse}.c

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

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.opencl/callfuncs.exp: OpenCL support not 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/Ubuntu-Aarch64-native-gdbserver-m64/9f/9fcafd23fa6d919f112e9a7f73e72895c2457de1//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/9f/9fcafd23fa6d919f112e9a7f73e72895c2457de1//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-30  6:49 [binutils-gdb] Build two gdb.cp testcases with -Wno-unused-comparison gdb-buildbot
@ 2020-05-30  7:06 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-30  7:06 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/2965

Author:
        Gary Benson <gbenson@redhat.com>

Commit tested:
        735d5a07160bcffaa8e66d4fffecd7f333a0e1fe

Subject of commit:
        Build two gdb.cp testcases with -Wno-unused-comparison

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/73/735d5a07160bcffaa8e66d4fffecd7f333a0e1fe//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/73/735d5a07160bcffaa8e66d4fffecd7f333a0e1fe//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-30  4:23 [binutils-gdb] gdb: add comment in dwarf_evaluate_loc_desc::push_dwarf_reg_entry_value gdb-buildbot
@ 2020-05-30  4:23 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-30  4:23 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/2962

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        989ade05525047fc6b94f24ece5fc09e076027b0

Subject of commit:
        gdb: add comment in dwarf_evaluate_loc_desc::push_dwarf_reg_entry_value

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
new UNRESOLVED: gdb.opencl/vec_comps.exp: OpenCL support not 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/Ubuntu-Aarch64-native-gdbserver-m64/98/989ade05525047fc6b94f24ece5fc09e076027b0//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/98/989ade05525047fc6b94f24ece5fc09e076027b0//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-30  3:10 [binutils-gdb] Fix Python3.9 related runtime problems gdb-buildbot
@ 2020-05-30  3:28 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-30  3:28 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/2961

Author:
        Kevin Buettner <kevinb@redhat.com>

Commit tested:
        c47bae859a5af0d95224d90000df0e529f7c5aa0

Subject of commit:
        Fix Python3.9 related runtime problems

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

*** Diff to previous build ***
==============================================
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=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/Ubuntu-Aarch64-native-gdbserver-m64/c4/c47bae859a5af0d95224d90000df0e529f7c5aa0//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/c4/c47bae859a5af0d95224d90000df0e529f7c5aa0//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-30  1:38 [binutils-gdb] Fix "enumeration values not handled in switch" error in testsuite gdb-buildbot
@ 2020-05-30  1:38 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-30  1:38 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/2959

Author:
        Gary Benson <gbenson@redhat.com>

Commit tested:
        4ad2c6a03ecb7faaf2658d3f8fb94f06441f2ba8

Subject of commit:
        Fix "enumeration values not handled in switch" error in testsuite

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
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/Ubuntu-Aarch64-native-gdbserver-m64/4a/4ad2c6a03ecb7faaf2658d3f8fb94f06441f2ba8//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/4a/4ad2c6a03ecb7faaf2658d3f8fb94f06441f2ba8//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-30  0:26 [binutils-gdb] gdb: use caller objfile in dwarf_evaluate_loc_desc::push_dwarf_reg_entry_value gdb-buildbot
@ 2020-05-30  0:44 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-30  0:44 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/2958

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        44486dcf19b62708ad49bbb6094e065a223dea99

Subject of commit:
        gdb: use caller objfile in dwarf_evaluate_loc_desc::push_dwarf_reg_entry_value

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/44/44486dcf19b62708ad49bbb6094e065a223dea99//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/44/44486dcf19b62708ad49bbb6094e065a223dea99//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-29 22:37 [binutils-gdb] [gdb/symtab] Make gold index workaround more precise gdb-buildbot
@ 2020-05-29 22:54 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-29 22:54 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/2956

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        f030440daa989ae3dadc1fa4342cfa16d690db3c

Subject of commit:
        [gdb/symtab] Make gold index workaround more precise

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

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.opencl/vec_comps.exp: OpenCL support not detected
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/Ubuntu-Aarch64-native-gdbserver-m64/f0/f030440daa989ae3dadc1fa4342cfa16d690db3c//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/f0/f030440daa989ae3dadc1fa4342cfa16d690db3c//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-29 21:41 [binutils-gdb] Fix "'operator new' should not return NULL" errors in testsuite gdb-buildbot
@ 2020-05-29 21:59 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-29 21:59 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/2955

Author:
        Gary Benson <gbenson@redhat.com>

Commit tested:
        cee00f171520eb85867230d4cbed34480c64e71e

Subject of commit:
        Fix "'operator new' should not return NULL" errors in testsuite

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

*** 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 -> 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/Ubuntu-Aarch64-native-gdbserver-m64/ce/cee00f171520eb85867230d4cbed34480c64e71e//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/ce/cee00f171520eb85867230d4cbed34480c64e71e//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-29 20:47 [binutils-gdb] ubsan: nios2: undefined shift gdb-buildbot
@ 2020-05-29 21:05 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-29 21:05 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/2954

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        efcf5fb585cdb6b7304a5a61a2d1e7db7d4bec6b

Subject of commit:
        ubsan: nios2: undefined shift

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/ef/efcf5fb585cdb6b7304a5a61a2d1e7db7d4bec6b//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/ef/efcf5fb585cdb6b7304a5a61a2d1e7db7d4bec6b//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-29 17:09 [binutils-gdb] cp-completion-aliases.exp: Use test_gdb_complete_{unique, multiple} gdb-buildbot
@ 2020-05-29 17:27 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-29 17:27 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/2950

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        636edd0018b72d67ee224e868fb277a658e9b984

Subject of commit:
        cp-completion-aliases.exp: Use test_gdb_complete_{unique,multiple}

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/63/636edd0018b72d67ee224e868fb277a658e9b984//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/63/636edd0018b72d67ee224e868fb277a658e9b984//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-29 16:12 [binutils-gdb] Use add_partial_symbol in load_partial_dies gdb-buildbot
@ 2020-05-29 16:31 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-29 16:31 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/2949

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        f0fbb768c223fd65385e2e2380fd04fde7121e5e

Subject of commit:
        Use add_partial_symbol in load_partial_dies

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

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.opencl/callfuncs.exp: OpenCL support not detected
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/Ubuntu-Aarch64-native-gdbserver-m64/f0/f0fbb768c223fd65385e2e2380fd04fde7121e5e//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/f0/f0fbb768c223fd65385e2e2380fd04fde7121e5e//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-29 14:23 [binutils-gdb] Lazily compute partial DIE name gdb-buildbot
@ 2020-05-29 14:41 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-29 14:41 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/2947

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        7d00ffecd2b16608f0bcfbc0402fec2cc228a3e7

Subject of commit:
        Lazily compute partial DIE name

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/7d/7d00ffecd2b16608f0bcfbc0402fec2cc228a3e7//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/7d/7d00ffecd2b16608f0bcfbc0402fec2cc228a3e7//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-29 13:46 [binutils-gdb] Attribute method inlining gdb-buildbot
@ 2020-05-29 13:46 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-29 13:46 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/2946

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        697bba18273d3a03f9093a94cf3e1d75012905f3

Subject of commit:
        Attribute method inlining

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/69/697bba18273d3a03f9093a94cf3e1d75012905f3//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/69/697bba18273d3a03f9093a94cf3e1d75012905f3//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-29 10:41 [binutils-gdb] Don't close process handle provided by WaitForDebugEvent gdb-buildbot
@ 2020-05-29 10:58 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-29 10:58 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/2943

Author:
        Hannes Domani <ssbssa@yahoo.de>

Commit tested:
        6479bf854a468c0270bb0fcdc9d0271cca3eb5b5

Subject of commit:
        Don't close process handle provided by WaitForDebugEvent

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.multi/multi-re-run.exp: re_run_inf=1: iter=2: continue until exit
PASS -> FAIL: gdb.multi/multi-re-run.exp: re_run_inf=1: iter=2: print re_run_var_1
new UNRESOLVED: gdb.opencl/vec_comps.exp: OpenCL support not 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/Ubuntu-Aarch64-native-gdbserver-m64/64/6479bf854a468c0270bb0fcdc9d0271cca3eb5b5//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/64/6479bf854a468c0270bb0fcdc9d0271cca3eb5b5//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-29  9:27 [binutils-gdb] Don't close thread handles provided by WaitForDebugEvent gdb-buildbot
@ 2020-05-29 10:04 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-29 10:04 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/2942

Author:
        Hannes Domani <ssbssa@yahoo.de>

Commit tested:
        ac637ec30dd9a3b19a02d1967a80e4ddf739706e

Subject of commit:
        Don't close thread handles provided by WaitForDebugEvent

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/ac/ac637ec30dd9a3b19a02d1967a80e4ddf739706e//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/ac/ac637ec30dd9a3b19a02d1967a80e4ddf739706e//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-29  7:21 [binutils-gdb] Make mapped_debug_names independent of objfile gdb-buildbot
@ 2020-05-29  7:21 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-29  7:21 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/2939

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        fcf23d5b654b0fc05e99c445ebd471221a290cf4

Subject of commit:
        Make mapped_debug_names independent of objfile

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
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/Ubuntu-Aarch64-native-gdbserver-m64/fc/fcf23d5b654b0fc05e99c445ebd471221a290cf4//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/fc/fcf23d5b654b0fc05e99c445ebd471221a290cf4//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-29  6:26 [binutils-gdb] Replace dwarf2_per_cu_data::cu backlink with per-objfile map gdb-buildbot
@ 2020-05-29  6:26 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-29  6:26 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/2938

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        7188ed02d2a7e3fce00a0214e70457c5ef56df6b

Subject of commit:
        Replace dwarf2_per_cu_data::cu backlink with per-objfile map

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/71/7188ed02d2a7e3fce00a0214e70457c5ef56df6b//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/71/7188ed02d2a7e3fce00a0214e70457c5ef56df6b//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-29  5:31 [binutils-gdb] Pass existing_cu object to cutu_reader gdb-buildbot
@ 2020-05-29  5:31 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-29  5:31 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/2937

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        2e6711003b8c69abe25100a7b2630409a4aafb8d

Subject of commit:
        Pass existing_cu object to cutu_reader

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
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/Ubuntu-Aarch64-native-gdbserver-m64/2e/2e6711003b8c69abe25100a7b2630409a4aafb8d//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/2e/2e6711003b8c69abe25100a7b2630409a4aafb8d//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-29  4:36 [binutils-gdb] Add comp_unit_head to dwarf2_per_cu_data gdb-buildbot
@ 2020-05-29  4:36 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-29  4:36 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/2936

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        2e6a9f7959dca5af9a7e6e5cea8c5dccd2e510f0

Subject of commit:
        Add comp_unit_head to dwarf2_per_cu_data

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/2e/2e6a9f7959dca5af9a7e6e5cea8c5dccd2e510f0//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/2e/2e6a9f7959dca5af9a7e6e5cea8c5dccd2e510f0//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-29  3:22 [binutils-gdb] Make load_cu return the loaded dwarf2_cu gdb-buildbot
@ 2020-05-29  3:40 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-29  3:40 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/2935

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        1b555f17476d99f97f33fb4c648d94f7767bcbd7

Subject of commit:
        Make load_cu return the loaded dwarf2_cu

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

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.opencl/callfuncs.exp: OpenCL support not 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/Ubuntu-Aarch64-native-gdbserver-m64/1b/1b555f17476d99f97f33fb4c648d94f7767bcbd7//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/1b/1b555f17476d99f97f33fb4c648d94f7767bcbd7//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-29  0:35 [binutils-gdb] Move signatured_type::type to unshareable object gdb-buildbot
@ 2020-05-29  0:53 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-29  0:53 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/2932

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        e286671bf99ab870d67431068e863c1c57631b1f

Subject of commit:
        Move signatured_type::type to unshareable object

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

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.opencl/vec_comps.exp: OpenCL support not 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/Ubuntu-Aarch64-native-gdbserver-m64/e2/e286671bf99ab870d67431068e863c1c57631b1f//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/e2/e286671bf99ab870d67431068e863c1c57631b1f//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-28 23:57 [binutils-gdb] Split type_unit_group gdb-buildbot
@ 2020-05-28 23:57 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-28 23:57 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/2931

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        8adb84872b7b039c70f5448f6cf5fe7dfc79d367

Subject of commit:
        Split type_unit_group

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/8a/8adb84872b7b039c70f5448f6cf5fe7dfc79d367//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/8a/8adb84872b7b039c70f5448f6cf5fe7dfc79d367//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-28 22:44 [binutils-gdb] Remove dwarf2_per_cu_data::dwarf2_per_objfile gdb-buildbot
@ 2020-05-28 23:02 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-28 23:02 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/2930

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        127bbf4b50c31b75b9d4c0ecc6b014dbd7ec38f9

Subject of commit:
        Remove dwarf2_per_cu_data::dwarf2_per_objfile

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/12/127bbf4b50c31b75b9d4c0ecc6b014dbd7ec38f9//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/12/127bbf4b50c31b75b9d4c0ecc6b014dbd7ec38f9//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-28 17:56 [binutils-gdb] Add dwarf2_per_objfile parameters to dwarf2_fetch_* functions gdb-buildbot
@ 2020-05-28 18:14 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-28 18:14 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/2925

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        14095eb32673d88b8495769e95e1db8393ed2a3a

Subject of commit:
        Add dwarf2_per_objfile parameters to dwarf2_fetch_* functions

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/14/14095eb32673d88b8495769e95e1db8393ed2a3a//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/14/14095eb32673d88b8495769e95e1db8393ed2a3a//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-28 16:37 [binutils-gdb] Add dwarf2_per_objfile parameter to allocate_piece_closure gdb-buildbot
@ 2020-05-28 17:18 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-28 17:18 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/2924

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        3c3cd3d4d7c7e05aa48b87c4ab11bac12a2caf7c

Subject of commit:
        Add dwarf2_per_objfile parameter to allocate_piece_closure

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

*** 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
==============================================

*** 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/3c/3c3cd3d4d7c7e05aa48b87c4ab11bac12a2caf7c//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/3c/3c3cd3d4d7c7e05aa48b87c4ab11bac12a2caf7c//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-28 16:19 [binutils-gdb] Add dwarf2_per_objfile parameter to dwarf2_read_addr_index gdb-buildbot
@ 2020-05-28 16:19 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-28 16:19 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/2923

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        82ca3f5189e9f8199dc21baeabe2a31a342db163

Subject of commit:
        Add dwarf2_per_objfile parameter to dwarf2_read_addr_index

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/82/82ca3f5189e9f8199dc21baeabe2a31a342db163//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/82/82ca3f5189e9f8199dc21baeabe2a31a342db163//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-28 13:28 [binutils-gdb] Move int type methods out of dwarf2_per_cu_data gdb-buildbot
@ 2020-05-28 13:28 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-28 13:28 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/2920

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        293e7e51145506f5f547a777242d7963f946c6ec

Subject of commit:
        Move int type methods out of dwarf2_per_cu_data

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/29/293e7e51145506f5f547a777242d7963f946c6ec//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/29/293e7e51145506f5f547a777242d7963f946c6ec//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-28 12:13 [binutils-gdb] Remove reference to dwarf2_per_cu_data::dwarf2_per_objfile in queue_and_load_all_dwo_tus gdb-buildbot
@ 2020-05-28 12:32 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-28 12:32 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/2919

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        64874a40306f556c290c8829f42526443db0f9e9

Subject of commit:
        Remove reference to dwarf2_per_cu_data::dwarf2_per_objfile in queue_and_load_all_dwo_tus

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
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/Ubuntu-Aarch64-native-gdbserver-m64/64/64874a40306f556c290c8829f42526443db0f9e9//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/64/64874a40306f556c290c8829f42526443db0f9e9//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-28  9:25 [binutils-gdb] Add dwarf2_per_objfile parameter to recursively_compute_inclusions gdb-buildbot
@ 2020-05-28  9:43 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-28  9:43 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/2916

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        43182c09c6f90ebd46c3980e788c751efda8b1a9

Subject of commit:
        Add dwarf2_per_objfile parameter to recursively_compute_inclusions

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/43/43182c09c6f90ebd46c3980e788c751efda8b1a9//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/43/43182c09c6f90ebd46c3980e788c751efda8b1a9//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-28  8:28 [binutils-gdb] Add dwarf2_per_objfile parameter to create_partial_symtab gdb-buildbot
@ 2020-05-28  8:47 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-28  8: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/2915

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        7aa104c423d935656d81ba6612586e98ee9babb5

Subject of commit:
        Add dwarf2_per_objfile parameter to create_partial_symtab

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

*** 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 -> 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/Ubuntu-Aarch64-native-gdbserver-m64/7a/7aa104c423d935656d81ba6612586e98ee9babb5//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/7a/7aa104c423d935656d81ba6612586e98ee9babb5//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-28  5:41 [binutils-gdb] Add dwarf2_per_objfile parameter to cutu_reader's constructors gdb-buildbot
@ 2020-05-28  5:59 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-28  5:59 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/2912

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        ab4324907782afa676f6d8f7fe7589c99458f64b

Subject of commit:
        Add dwarf2_per_objfile parameter to cutu_reader's constructors

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

*** 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 -> FAIL: gdb.trace/ftrace.exp: advance through tracing
==============================================

*** 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/ab/ab4324907782afa676f6d8f7fe7589c99458f64b//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/ab/ab4324907782afa676f6d8f7fe7589c99458f64b//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-28  5:03 [binutils-gdb] Use bfd_get_filename instead of objfile_name in lookup_dwo_unit gdb-buildbot
@ 2020-05-28  5:03 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-28  5: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/2911

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        313bad1bc60b24722cd44c196acf3482b5b63efd

Subject of commit:
        Use bfd_get_filename instead of objfile_name in lookup_dwo_unit

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/31/313bad1bc60b24722cd44c196acf3482b5b63efd//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/31/313bad1bc60b24722cd44c196acf3482b5b63efd//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-28  1:57 [binutils-gdb] Remove dwarf2_cu->per_cu->dwarf2_per_objfile references gdb-buildbot
@ 2020-05-28  2:16 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-28  2:16 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/2908

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        5e22e966a02123478a3c5e067f911a3d180060af

Subject of commit:
        Remove dwarf2_cu->per_cu->dwarf2_per_objfile references

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

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: 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/Ubuntu-Aarch64-native-gdbserver-m64/5e/5e22e966a02123478a3c5e067f911a3d180060af//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/5e/5e22e966a02123478a3c5e067f911a3d180060af//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-28  1:20 [binutils-gdb] Remove reference to dwarf2_per_cu_data::dwarf2_per_objfile in dw2_do_instantiate_symtab gdb-buildbot
@ 2020-05-28  1:20 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-28  1:20 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/2907

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        97a1449a95e34910e74ea24914f765314c2d8d1b

Subject of commit:
        Remove reference to dwarf2_per_cu_data::dwarf2_per_objfile in dw2_do_instantiate_symtab

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/97/97a1449a95e34910e74ea24914f765314c2d8d1b//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/97/97a1449a95e34910e74ea24914f765314c2d8d1b//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-27 22:31 [binutils-gdb] Remove symtab links from dwarf2_psymtab and dwarf2_per_cu_quick_data gdb-buildbot
@ 2020-05-27 22:31 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-27 22:31 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/2904

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        af758d117e1454daebc6135cb70529b9843c3437

Subject of commit:
        Remove symtab links from dwarf2_psymtab and dwarf2_per_cu_quick_data

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/af/af758d117e1454daebc6135cb70529b9843c3437//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/af/af758d117e1454daebc6135cb70529b9843c3437//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-27 21:16 [binutils-gdb] Split dwarf2_per_objfile into dwarf2_per_objfile and dwarf2_per_bfd gdb-buildbot
@ 2020-05-27 21:34 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-27 21:34 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/2903

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        5989a64ed5ee7a7f9c0fc284f66ef4bd414ad6c2

Subject of commit:
        Split dwarf2_per_objfile into dwarf2_per_objfile and dwarf2_per_bfd

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/59/5989a64ed5ee7a7f9c0fc284f66ef4bd414ad6c2//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/59/5989a64ed5ee7a7f9c0fc284f66ef4bd414ad6c2//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-27 20:19 [binutils-gdb] Add dwarf2_per_objfile member to DWARF batons gdb-buildbot
@ 2020-05-27 20:37 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-27 20:37 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/2902

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        a50264baf57716993e701096fa6e466fb63e0301

Subject of commit:
        Add dwarf2_per_objfile member to DWARF batons

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/a5/a50264baf57716993e701096fa6e466fb63e0301//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/a5/a50264baf57716993e701096fa6e466fb63e0301//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-27 18:26 [binutils-gdb] Add "objfile" parameter to two partial_symtab methods gdb-buildbot
@ 2020-05-27 18:44 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-27 18:44 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/2900

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        5717c425a62c8e15a5936acdfa2bac2732aeb9b4

Subject of commit:
        Add "objfile" parameter to two partial_symtab methods

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b -function test_ops::operator~
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b -function test_ops::operator~
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/Ubuntu-Aarch64-native-gdbserver-m64/57/5717c425a62c8e15a5936acdfa2bac2732aeb9b4//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/57/5717c425a62c8e15a5936acdfa2bac2732aeb9b4//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-26 23:10 [binutils-gdb] Ensure class_tui is listed in the output of "help" giving the list of classes gdb-buildbot
@ 2020-05-26 23:10 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-26 23:10 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/2894

Author:
        Philippe Waroquiers <philippe.waroquiers@skynet.be>

Commit tested:
        e98d2e6da4512157ab749734dc872aa41830d7c8

Subject of commit:
        Ensure class_tui is listed in the output of "help" giving the list of classes.

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

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.opencl/vec_comps.exp: OpenCL support not detected
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/Ubuntu-Aarch64-native-gdbserver-m64/e9/e98d2e6da4512157ab749734dc872aa41830d7c8//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/e9/e98d2e6da4512157ab749734dc872aa41830d7c8//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-26 14:32 [binutils-gdb] Extend the error message displayed when a plugin fails to load gdb-buildbot
@ 2020-05-26 14:50 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-26 14:50 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/2889

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        9e7cb4c359e6a86550bca296db617fb4c8068c1a

Subject of commit:
        Extend the error message displayed when a plugin fails to load.

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/9e/9e7cb4c359e6a86550bca296db617fb4c8068c1a//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/9e/9e7cb4c359e6a86550bca296db617fb4c8068c1a//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-26 12:47 [binutils-gdb] [gdb/testsuite] Add test-case gold-gdb-index.exp gdb-buildbot
@ 2020-05-26 12:47 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-26 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/2888

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        40d22035a7fc239ac1e944b75a2e3ee9029d1b76

Subject of commit:
        [gdb/testsuite] Add test-case gold-gdb-index.exp

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/40/40d22035a7fc239ac1e944b75a2e3ee9029d1b76//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/40/40d22035a7fc239ac1e944b75a2e3ee9029d1b76//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-26 10:40 [binutils-gdb] [gdb/testsuite] Add target board gold-gdb-index gdb-buildbot
@ 2020-05-26 10:58 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-26 10:58 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/2886

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        043e2e02c0f4af920edca74247ff8e743126d723

Subject of commit:
        [gdb/testsuite] Add target board gold-gdb-index

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

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.opencl/vec_comps.exp: OpenCL support not 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/Ubuntu-Aarch64-native-gdbserver-m64/04/043e2e02c0f4af920edca74247ff8e743126d723//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/04/043e2e02c0f4af920edca74247ff8e743126d723//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-26 10:03 [binutils-gdb] gdb: make avr_integer_to_address generate code or data address based on type gdb-buildbot
@ 2020-05-26 10:03 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-26 10: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/2885

Author:
        Cristiano De Alti <cristiano_dealti@hotmail.com>

Commit tested:
        1218a4bf49919878d41ad37cbe906f412d6fbdad

Subject of commit:
        gdb: make avr_integer_to_address generate code or data address based on type

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: server exits
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/Ubuntu-Aarch64-native-gdbserver-m64/12/1218a4bf49919878d41ad37cbe906f412d6fbdad//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/12/1218a4bf49919878d41ad37cbe906f412d6fbdad//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-26  7:00 [binutils-gdb] gdb/testsuite: support passing inferior arguments with native-gdbserver board gdb-buildbot
@ 2020-05-26  7:18 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-26  7:18 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/2882

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        75d04512401cbc9cd2d9835e77b90ac3ad1de7d8

Subject of commit:
        gdb/testsuite: support passing inferior arguments with native-gdbserver board

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/75/75d04512401cbc9cd2d9835e77b90ac3ad1de7d8//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/75/75d04512401cbc9cd2d9835e77b90ac3ad1de7d8//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-26  3:55 [binutils-gdb] nto_process_target::create_inferior: Pass args as char ** gdb-buildbot
@ 2020-05-26  4:33 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-26  4:33 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/2879

Author:
        Michael Weghorn <m.weghorn@posteo.de>

Commit tested:
        ace6b9195e34cafa68964fb898d887ed15003fca

Subject of commit:
        nto_process_target::create_inferior: Pass args as char **

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

*** 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/ac/ace6b9195e34cafa68964fb898d887ed15003fca//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/ac/ace6b9195e34cafa68964fb898d887ed15003fca//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-25 22:19 [binutils-gdb] [gdb/testsuite] Fix var use in compile_and_download_n_jit_so gdb-buildbot
@ 2020-05-25 22:56 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-25 22:56 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/2873

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        8f7d38efadee2a4f75fb2085e02dab658aa37f38

Subject of commit:
        [gdb/testsuite] Fix var use in compile_and_download_n_jit_so

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/8f/8f7d38efadee2a4f75fb2085e02dab658aa37f38//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/8f/8f7d38efadee2a4f75fb2085e02dab658aa37f38//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-25 19:52 [binutils-gdb] Revert "Add completion styling" gdb-buildbot
@ 2020-05-25 20:10 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-25 20:10 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/2870

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        0a4f5f8cae7ced715aca791bf4b212f43165119c

Subject of commit:
        Revert "Add completion styling"

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/0a/0a4f5f8cae7ced715aca791bf4b212f43165119c//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/0a/0a4f5f8cae7ced715aca791bf4b212f43165119c//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-25 12:58 [binutils-gdb] Don't remove C++ aliases from completions if symbol doesn't match gdb-buildbot
@ 2020-05-25 12:58 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-25 12:58 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/2868

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        e08bd6c5081f4957ddb60117ac94775dcd618db7

Subject of commit:
        Don't remove C++ aliases from completions if symbol doesn't match

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

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.opencl/vec_comps.exp: OpenCL support not 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/Ubuntu-Aarch64-native-gdbserver-m64/e0/e08bd6c5081f4957ddb60117ac94775dcd618db7//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/e0/e08bd6c5081f4957ddb60117ac94775dcd618db7//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-24  7:26 [binutils-gdb] gdb: remove TYPE_FIELD macro gdb-buildbot
@ 2020-05-24  9:31 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-24  9:31 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/2866

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        ceacbf6edf2c72aaa16280205a9bfc8513e9ed27

Subject of commit:
        gdb: remove TYPE_FIELD macro

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/ce/ceacbf6edf2c72aaa16280205a9bfc8513e9ed27//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/ce/ceacbf6edf2c72aaa16280205a9bfc8513e9ed27//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-23 23:04 [binutils-gdb] Add completion styling gdb-buildbot
@ 2020-05-24  3:15 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-24  3:15 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/2865

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        eca1f90cf47a2edc1a1cd22e12c6c0f3b900654e

Subject of commit:
        Add completion styling

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/completion.exp: complete 'handle keyword'
PASS -> FAIL: gdb.base/completion.exp: complete 'handle signal'
PASS -> FAIL: gdb.base/completion.exp: complete 'info func marke'
PASS -> FAIL: gdb.base/completion.exp: complete 'p &values[0] -> a'
PASS -> FAIL: gdb.base/completion.exp: complete 'p no_var_named_this-arg'
PASS -> FAIL: gdb.base/completion.exp: complete 'p values[0] . a'
PASS -> FAIL: gdb.base/completion.exp: complete 'p values[0].a'
PASS -> FAIL: gdb.base/completion.exp: complete 'set follow-fork-mode'
PASS -> FAIL: gdb.base/completion.exp: complete
PASS -> FAIL: gdb.base/completion.exp: complete break break
PASS -> FAIL: gdb.base/completion.exp: complete help aliases
PASS -> FAIL: gdb.base/completion.exp: completion of field in anonymous union
PASS -> FAIL: gdb.base/completion.exp: set breakpoint pending off
PASS -> FAIL: gdb.base/completion.exp: tab complete break break
PASS -> FAIL: gdb.base/filesym.exp: completion list for "filesym"
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-boolean: tab complete "maint test-options require-delimiter -bool "
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-boolean: tab complete "maint test-options require-delimiter -bool -"
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-boolean: tab complete "maint test-options require-delimiter -bool o"
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-enum: tab complete "maint test-options require-delimiter -enum "
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-flag: tab complete "maint test-options require-delimiter  -flag -"
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-misc: tab complete "maint test-options require-delimiter -"
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-string: str="STR 'CCC' DDD": tab complete "maint test-options require-delimiter -string "STR 'CCC' DDD" -"
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-string: str="STR AAA": tab complete "maint test-options require-delimiter -string "STR AAA" -"
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-string: str="STR \"GGG\" HHH": tab complete "maint test-options require-delimiter -string "STR \"GGG\" HHH" -"
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-string: str="STR": tab complete "maint test-options require-delimiter -string "STR" -"
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-string: str='STR "EEE" FFF': tab complete "maint test-options require-delimiter -string 'STR "EEE" FFF' -"
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-string: str='STR BBB': tab complete "maint test-options require-delimiter -string 'STR BBB' -"
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-string: str='STR \'III\' JJJ': tab complete "maint test-options require-delimiter -string 'STR \'III\' JJJ' -"
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-string: str='STR': tab complete "maint test-options require-delimiter -string 'STR' -"
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-string: str=STR: tab complete "maint test-options require-delimiter -string STR -"
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-string: str=\"STR: tab complete "maint test-options require-delimiter -string \"STR -"
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-string: str=\'STR: tab complete "maint test-options require-delimiter -string \'STR -"
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-uinteger: tab complete "maint test-options require-delimiter -uinteger "
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-uinteger: tab complete "maint test-options require-delimiter -uinteger 1 "
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-uinteger: tab complete "maint test-options require-delimiter -zuinteger-unlimited "
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-uinteger: tab complete "maint test-options require-delimiter -zuinteger-unlimited -1 "
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-uinteger: tab complete "maint test-options require-delimiter -zuinteger-unlimited 1 "
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-error: test-boolean: tab complete "maint test-options unknown-is-error -bool -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-error: test-boolean: tab complete "maint test-options unknown-is-error -bool o"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-error: test-enum: tab complete "maint test-options unknown-is-error -enum "
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-error: test-flag: tab complete "maint test-options unknown-is-error  -flag -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-error: test-misc: tab complete "maint test-options unknown-is-error -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-error: test-string: str="STR 'CCC' DDD": tab complete "maint test-options unknown-is-error -string "STR 'CCC' DDD" -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-error: test-string: str="STR AAA": tab complete "maint test-options unknown-is-error -string "STR AAA" -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-error: test-string: str="STR \"GGG\" HHH": tab complete "maint test-options unknown-is-error -string "STR \"GGG\" HHH" -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-error: test-string: str="STR": tab complete "maint test-options unknown-is-error -string "STR" -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-error: test-string: str='STR "EEE" FFF': tab complete "maint test-options unknown-is-error -string 'STR "EEE" FFF' -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-error: test-string: str='STR BBB': tab complete "maint test-options unknown-is-error -string 'STR BBB' -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-error: test-string: str='STR \'III\' JJJ': tab complete "maint test-options unknown-is-error -string 'STR \'III\' JJJ' -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-error: test-string: str='STR': tab complete "maint test-options unknown-is-error -string 'STR' -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-error: test-string: str=STR: tab complete "maint test-options unknown-is-error -string STR -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-error: test-string: str=\"STR: tab complete "maint test-options unknown-is-error -string \"STR -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-error: test-string: str=\'STR: tab complete "maint test-options unknown-is-error -string \'STR -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-error: test-uinteger: tab complete "maint test-options unknown-is-error -uinteger "
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-error: test-uinteger: tab complete "maint test-options unknown-is-error -zuinteger-unlimited "
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-operand: test-boolean: tab complete "maint test-options unknown-is-operand -bool -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-operand: test-boolean: tab complete "maint test-options unknown-is-operand -bool o"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-operand: test-enum: tab complete "maint test-options unknown-is-operand -enum "
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-operand: test-flag: tab complete "maint test-options unknown-is-operand  -flag -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-operand: test-misc: tab complete "maint test-options unknown-is-operand -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-operand: test-string: str="STR 'CCC' DDD": tab complete "maint test-options unknown-is-operand -string "STR 'CCC' DDD" -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-operand: test-string: str="STR AAA": tab complete "maint test-options unknown-is-operand -string "STR AAA" -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-operand: test-string: str="STR \"GGG\" HHH": tab complete "maint test-options unknown-is-operand -string "STR \"GGG\" HHH" -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-operand: test-string: str="STR": tab complete "maint test-options unknown-is-operand -string "STR" -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-operand: test-string: str='STR "EEE" FFF': tab complete "maint test-options unknown-is-operand -string 'STR "EEE" FFF' -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-operand: test-string: str='STR BBB': tab complete "maint test-options unknown-is-operand -string 'STR BBB' -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-operand: test-string: str='STR \'III\' JJJ': tab complete "maint test-options unknown-is-operand -string 'STR \'III\' JJJ' -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-operand: test-string: str='STR': tab complete "maint test-options unknown-is-operand -string 'STR' -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-operand: test-string: str=STR: tab complete "maint test-options unknown-is-operand -string STR -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-operand: test-string: str=\"STR: tab complete "maint test-options unknown-is-operand -string \"STR -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-operand: test-string: str=\'STR: tab complete "maint test-options unknown-is-operand -string \'STR -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-operand: test-uinteger: tab complete "maint test-options unknown-is-operand -uinteger "
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-operand: test-uinteger: tab complete "maint test-options unknown-is-operand -zuinteger-unlimited "
PASS -> FAIL: gdb.base/options.exp: test-backtrace: tab complete "backtrace -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: tab complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: tab complete "faas -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: tab complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: tab complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: tab complete "frame apply 1 -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: tab complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: tab complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: tab complete "frame apply all -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: tab complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: tab complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: tab complete "frame apply level 0 -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: tab complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: tab complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: tab complete "tfaas -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: tab complete "tfaas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: tab complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: tab complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: tab complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: tab complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: tab complete "tfaas -- "
PASS -> FAIL: gdb.base/options.exp: test-info-threads: tab complete "info threads "
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "frame apply 1 print -"
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "frame apply all print -"
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "frame apply level 0 print -"
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "print -"
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "thread apply 1 frame apply 1 print -"
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "thread apply 1 print -"
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "thread apply all print -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: tab complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: tab complete "taas -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: tab complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: tab complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: tab complete "thread apply 1 -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: tab complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: tab complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: tab complete "thread apply all -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: tab complete "thread apply all -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: tab complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: tab complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: tab complete "thread apply all -- "
PASS -> FAIL: gdb.base/settings.exp: test-auto-boolean: tab complete "maint set test-settings auto-boolean "
PASS -> FAIL: gdb.base/settings.exp: test-boolean: tab complete "maint set test-settings boolean "
PASS -> FAIL: gdb.base/settings.exp: test-enum: tab complete "maint set test-settings enum "
PASS -> FAIL: gdb.base/settings.exp: test-integer zuinteger: tab complete "maint set test-settings zuinteger"
PASS -> FAIL: gdb.base/settings.exp: test-integer zuinteger: tab complete "maintenance show test-settings zuinteger"
PASS -> FAIL: gdb.base/settings.exp: test-string string: tab complete "maint show test-settings string"
PASS -> FAIL: gdb.base/shell.exp: tab complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: tab complete "| "
PASS -> FAIL: gdb.base/shell.exp: tab complete "|"
PASS -> FAIL: gdb.base/skip.exp: skip delete completion: tab complete "skip delete "
PASS -> FAIL: gdb.base/skip.exp: skip delete completion: tab complete "skip delete 1"
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/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: tab complete "p Test_NS"
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: tab complete "p Test_NS:"
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: tab complete "p Test_NS::"
PASS -> FAIL: gdb.linespec/cp-completion-aliases.exp: tab complete "break get_som"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: ambiguous-prefix: tab complete "b -function ambiguous_pre"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: ambiguous-prefix: tab complete "b ambiguous_pre"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: anon-ns: tab complete "b
PASS -> FAIL: gdb.linespec/cpcompletion.exp: anon-ns: tab complete "b -function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: const-overload: tab complete "b -function const_overload_fn
PASS -> FAIL: gdb.linespec/cpcompletion.exp: const-overload: tab complete "b -function const_overload_fn"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: const-overload: tab complete "b const_overload_fn
PASS -> FAIL: gdb.linespec/cpcompletion.exp: const-overload: tab complete "b const_overload_fn"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: tab complete "b -qualified -function ns_overload2_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: tab complete "b -qualified -source cpls.cc -function ns_overload2_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: tab complete "b -qualified cpls.cc:ns_overload2_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: tab complete "b -qualified ns_overload2_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: tab complete "b -source cpls.cc -qualified -function ns_overload2_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b "cpls.cc": "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b "cpls.cc": 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b "cpls.cc": function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b "cpls.cc":"function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b "cpls.cc":'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b "cpls.cc":function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b 'cpls.cc': "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b 'cpls.cc': 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b 'cpls.cc': function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b 'cpls.cc':"function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b 'cpls.cc':'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b 'cpls.cc':function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b -source "cpls.cc" -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b -source "cpls.cc" -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b -source "cpls.cc" -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b -source 'cpls.cc' -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b -source 'cpls.cc' -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b -source 'cpls.cc' -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b -source cpls.cc -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b -source cpls.cc -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b -source cpls.cc -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b cpls.cc: "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b cpls.cc: 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b cpls.cc: function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b cpls.cc:"function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b cpls.cc:'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b cpls.cc:function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b "cpls2.cc": "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b "cpls2.cc": ""
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b "cpls2.cc": '"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b "cpls2.cc":"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b "cpls2.cc":""
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b "cpls2.cc":'"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b 'cpls2.cc': "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b 'cpls2.cc': ""
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b 'cpls2.cc': '"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b 'cpls2.cc':"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b 'cpls2.cc':""
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b 'cpls2.cc':'"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b -source "cpls2.cc" -function "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b -source "cpls2.cc" -function ""
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b -source "cpls2.cc" -function '"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b -source 'cpls2.cc' -function "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b -source 'cpls2.cc' -function ""
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b -source 'cpls2.cc' -function '"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b -source cpls2.cc -function "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b -source cpls2.cc -function ""
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b -source cpls2.cc -function '"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b cpls2.cc: "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b cpls2.cc: ""
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b cpls2.cc: '"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b cpls2.cc:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b cpls2.cc:""
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b cpls2.cc:'"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unconstrained: tab complete "b file_constrained_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "cpls.cc": "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "cpls.cc": "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "cpls.cc": 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "cpls.cc": 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "cpls.cc": function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "cpls.cc": unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "cpls.cc":"function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "cpls.cc":"unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "cpls.cc":'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "cpls.cc":'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "cpls.cc":function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "cpls.cc":unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "unknown_file.cc": "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "unknown_file.cc": "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "unknown_file.cc": 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "unknown_file.cc": 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "unknown_file.cc": function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "unknown_file.cc": unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "unknown_file.cc":"function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "unknown_file.cc":"unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "unknown_file.cc":'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "unknown_file.cc":'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "unknown_file.cc":function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "unknown_file.cc":unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'cpls.cc': "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'cpls.cc': "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'cpls.cc': 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'cpls.cc': 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'cpls.cc': function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'cpls.cc': unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'cpls.cc':"function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'cpls.cc':"unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'cpls.cc':'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'cpls.cc':'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'cpls.cc':function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'cpls.cc':unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'unknown_file.cc': "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'unknown_file.cc': "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'unknown_file.cc': 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'unknown_file.cc': 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'unknown_file.cc': function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'unknown_file.cc': unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'unknown_file.cc':"function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'unknown_file.cc':"unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'unknown_file.cc':'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'unknown_file.cc':'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'unknown_file.cc':function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'unknown_file.cc':unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -function "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -function 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -function unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source "cpls.cc" -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source "cpls.cc" -function "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source "cpls.cc" -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source "cpls.cc" -function 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source "cpls.cc" -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source "cpls.cc" -function unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source "unknown_file.cc" -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source "unknown_file.cc" -function "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source "unknown_file.cc" -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source "unknown_file.cc" -function 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source "unknown_file.cc" -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source "unknown_file.cc" -function unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source 'cpls.cc' -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source 'cpls.cc' -function "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source 'cpls.cc' -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source 'cpls.cc' -function 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source 'cpls.cc' -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source 'cpls.cc' -function unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source 'unknown_file.cc' -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source 'unknown_file.cc' -function "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source 'unknown_file.cc' -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source 'unknown_file.cc' -function 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source 'unknown_file.cc' -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source 'unknown_file.cc' -function unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source cpls.cc -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source cpls.cc -function "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source cpls.cc -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source cpls.cc -function 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source cpls.cc -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source cpls.cc -function unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source unknown_file.cc -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source unknown_file.cc -function "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source unknown_file.cc -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source unknown_file.cc -function 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source unknown_file.cc -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source unknown_file.cc -function unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b cpls.cc: "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b cpls.cc: "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b cpls.cc: 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b cpls.cc: 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b cpls.cc: function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b cpls.cc: unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b cpls.cc:"function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b cpls.cc:"unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b cpls.cc:'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b cpls.cc:'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b cpls.cc:function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b cpls.cc:unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b unknown_file.cc: "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b unknown_file.cc: "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b unknown_file.cc: 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b unknown_file.cc: 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b unknown_file.cc: function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b unknown_file.cc: unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b unknown_file.cc:"function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b unknown_file.cc:"unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b unknown_file.cc:'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b unknown_file.cc:'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b unknown_file.cc:function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b unknown_file.cc:unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b "cpls.cc": "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b "cpls.cc": "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b "cpls.cc": 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b "cpls.cc": 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b "cpls.cc": function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b "cpls.cc": unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b "cpls.cc":"function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b "cpls.cc":"unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b "cpls.cc":'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b "cpls.cc":'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b "cpls.cc":function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b "cpls.cc":unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b 'cpls.cc': "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b 'cpls.cc': "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b 'cpls.cc': 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b 'cpls.cc': 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b 'cpls.cc': function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b 'cpls.cc': unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b 'cpls.cc':"function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b 'cpls.cc':"unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b 'cpls.cc':'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b 'cpls.cc':'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b 'cpls.cc':function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b 'cpls.cc':unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -function "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -function 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -function unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -source "cpls.cc" -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -source "cpls.cc" -function "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -source "cpls.cc" -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -source "cpls.cc" -function 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -source "cpls.cc" -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -source "cpls.cc" -function unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -source 'cpls.cc' -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -source 'cpls.cc' -function "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -source 'cpls.cc' -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -source 'cpls.cc' -function 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -source 'cpls.cc' -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -source 'cpls.cc' -function unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -source cpls.cc -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -source cpls.cc -function "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -source cpls.cc -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -source cpls.cc -function 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -source cpls.cc -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -source cpls.cc -function unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b cpls.cc: "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b cpls.cc: "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b cpls.cc: 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b cpls.cc: 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b cpls.cc: function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b cpls.cc: unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b cpls.cc:"function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b cpls.cc:"unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b cpls.cc:'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b cpls.cc:'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b cpls.cc:function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b cpls.cc:unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-unknown-file: tab complete "b "unknown_file.cc": "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-unknown-file: tab complete "b 'unknown_file.cc': "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-unknown-file: tab complete "b unknown_file.cc: "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: all: tab complete "b -function overload2_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: all: tab complete "b overload2_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: restrict scope 2: tab complete "b
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: restrict scope 2: tab complete "b -function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: restrict scope: tab complete "b -function ns_overload2_test::overload2_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: restrict scope: tab complete "b ns_overload2_test::overload2_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-3: all overloads: tab complete "b -function overload3_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-3: all overloads: tab complete "b overload3_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-3: restrict scope: tab complete "b -function struct_overload3_test::overload3_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-3: restrict scope: tab complete "b struct_overload3_test::overload3_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload: tab complete "b -function overload_ambiguous_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload: tab complete "b overload_ambiguous_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: tab complete "b "nonexistingfilename.cc" "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: tab complete "b 'nonexistingfilename.cc' "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: tab complete "b nonexistingfilename.cc "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-overload: tab complete "b -function template_overload_fn"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-overload: tab complete "b template_overload_fn"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: abi tag in parameters: tab complete "b -function test_abi_tag_in_para"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: abi tag in parameters: tab complete "b -function test_abi_tag_in_params
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: abi tag in parameters: tab complete "b test_abi_tag_in_para"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: abi tag in parameters: tab complete "b test_abi_tag_in_params
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions different abi: tab complete "b -function test_abi_tag_ovld2_f"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions different abi: tab complete "b -function test_abi_tag_ovld2_function["
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions different abi: tab complete "b -function test_abi_tag_ovld2_function[abi:tag2"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions different abi: tab complete "b test_abi_tag_ovld2_f"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions different abi: tab complete "b test_abi_tag_ovld2_function["
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions different abi: tab complete "b test_abi_tag_ovld2_function[abi:tag2"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions: tab complete "b -function test_abi_tag_ovld_f"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions: tab complete "b -function test_abi_tag_ovld_function["
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions: tab complete "b test_abi_tag_ovld_f"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions: tab complete "b test_abi_tag_ovld_function["
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of struct prefixes with tags: tab complete "b -function test_abi_tag_struc"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of struct prefixes with tags: tab complete "b -function test_abi_tag_struct["
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of struct prefixes with tags: tab complete "b test_abi_tag_struc"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of struct prefixes with tags: tab complete "b test_abi_tag_struct["
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: tab complete "b -function test_op_array::operator[]"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: tab complete "b test_op_array::operator[]"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b -function test_ops::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b test_ops::operator"
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -function -qualified: tab complete "b -function argument -qualified "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -function: tab complete "b -function argument "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -label -qualified: tab complete "b -label argument -qualified "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -label: tab complete "b -label argument "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -line -qualified: tab complete "b -line +10 -qualified "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -line -qualified: tab complete "b -line -10 -qualified "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -line -qualified: tab complete "b -line 10 -qualified "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -line: tab complete "b -line +10 "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -line: tab complete "b -line -10 "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -line: tab complete "b -line 10 "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -qualified -function -qualified: tab complete "b -qualified -function argument -qualified "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -qualified -function: tab complete "b -qualified -function argument "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -qualified -label -qualified: tab complete "b -qualified -label argument -qualified "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -qualified -label: tab complete "b -qualified -label argument "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -qualified -line -qualified: tab complete "b -qualified -line +10 -qualified "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -qualified -line -qualified: tab complete "b -qualified -line -10 -qualified "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -qualified -line -qualified: tab complete "b -qualified -line 10 -qualified "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -qualified -line: tab complete "b -qualified -line +10 "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -qualified -line: tab complete "b -qualified -line -10 "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -qualified -line: tab complete "b -qualified -line 10 "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -qualified -source -qualified: tab complete "b -qualified -source argument -qualified "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -qualified -source: tab complete "b -qualified -source argument "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -source -qualified: tab complete "b -source argument -qualified "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -source: tab complete "b -source argument "
PASS -> FAIL: gdb.linespec/explicit.exp: complete filename and non-unique function name
PASS -> FAIL: gdb.linespec/explicit.exp: complete non-unique file name
PASS -> FAIL: gdb.linespec/explicit.exp: complete non-unique function name
PASS -> FAIL: gdb.linespec/explicit.exp: complete non-unique label name: tab complete "b -function myfunction -label "
PASS -> FAIL: gdb.linespec/explicit.exp: complete unique label name reversed: tab complete "b -label top -function myfunction"
PASS -> FAIL: gdb.linespec/explicit.exp: complete with no arguments and no symbols: tab complete "b "
PASS -> FAIL: gdb.linespec/explicit.exp: complete with no arguments and no symbols: tab complete "b -"
PASS -> FAIL: gdb.linespec/linespec.exp: complete non-unique function name in two source files
PASS -> FAIL: gdb.linespec/linespec.exp: complete unique function name in disambiguated source file
PASS -> FAIL: gdb.linespec/linespec.exp: set break in function in non-existing absolute path
new UNRESOLVED: gdb.opencl/vec_comps.exp: OpenCL support not detected
PASS -> FAIL: gdb.tui/completion.exp: completion of focus command: tab completion
PASS -> FAIL: gdb.tui/completion.exp: completion of layout names: tab completion
==============================================

*** 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/ec/eca1f90cf47a2edc1a1cd22e12c6c0f3b900654e//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/ec/eca1f90cf47a2edc1a1cd22e12c6c0f3b900654e//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-23 12:50 [binutils-gdb] Use safe-ctype.h (ISSPACE etc.) in symbol parsing & comparison gdb-buildbot
@ 2020-05-23 12:50 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-23 12:50 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/2864

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        51e2cfa2dc2dd600727c91701c747c28fa67a5df

Subject of commit:
        Use safe-ctype.h (ISSPACE etc.) in symbol parsing & comparison

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

*** Diff to previous build ***
==============================================
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=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/Ubuntu-Aarch64-native-gdbserver-m64/51/51e2cfa2dc2dd600727c91701c747c28fa67a5df//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/51/51e2cfa2dc2dd600727c91701c747c28fa67a5df//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-23  0:24 [binutils-gdb] gdb: remove TYPE_FIELDS macro gdb-buildbot
@ 2020-05-23  0:42 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-23  0:42 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/2862

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        80fc5e77f07557830aaac90723dc599e6d047922

Subject of commit:
        gdb: remove TYPE_FIELDS macro

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/80/80fc5e77f07557830aaac90723dc599e6d047922//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/80/80fc5e77f07557830aaac90723dc599e6d047922//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-22 23:30 [binutils-gdb] gdb: add type::fields / type::set_fields gdb-buildbot
@ 2020-05-22 23:47 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-22 23: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/2861

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        3cabb6b0694b65c7b5ed800822ca08bd899fc1d1

Subject of commit:
        gdb: add type::fields / type::set_fields

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.multi/multi-re-run.exp: re_run_inf=2: iter=2: continue until exit
PASS -> FAIL: gdb.multi/multi-re-run.exp: re_run_inf=2: iter=2: print re_run_var_2
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/Ubuntu-Aarch64-native-gdbserver-m64/3c/3cabb6b0694b65c7b5ed800822ca08bd899fc1d1//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/3c/3cabb6b0694b65c7b5ed800822ca08bd899fc1d1//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-22 21:40 [binutils-gdb] gdb: add type::num_fields / type::set_num_fields gdb-buildbot
@ 2020-05-22 21:58 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-22 21:58 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/2859

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        5e33d5f4e1a5f2c3556ee31715ddc030d039b597

Subject of commit:
        gdb: add type::num_fields / type::set_num_fields

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/5e/5e33d5f4e1a5f2c3556ee31715ddc030d039b597//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/5e/5e33d5f4e1a5f2c3556ee31715ddc030d039b597//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-22  5:06 [binutils-gdb] PowerPC: downgrade FP mismatch error for shared libraries to a warning gdb-buildbot
@ 2020-05-22  5:06 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-22  5:06 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/2856

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        6f3fe02b0b8f6865820d8889a8420190063f3235

Subject of commit:
        PowerPC: downgrade FP mismatch error for shared libraries to a warning

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/6f/6f3fe02b0b8f6865820d8889a8420190063f3235//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/6f/6f3fe02b0b8f6865820d8889a8420190063f3235//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-21 19:09 [binutils-gdb] gdb: fix -Wtautological-overlap-compare error in lm32-tdep.c gdb-buildbot
@ 2020-05-21 19:09 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-21 19:09 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/2855

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        aa370940e202a165ddc0be2fdc4383a82101a678

Subject of commit:
        gdb: fix -Wtautological-overlap-compare error in lm32-tdep.c

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: server exits
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/Ubuntu-Aarch64-native-gdbserver-m64/aa/aa370940e202a165ddc0be2fdc4383a82101a678//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/aa/aa370940e202a165ddc0be2fdc4383a82101a678//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-21 15:12 [binutils-gdb] Re: PR25993, read of freed memory gdb-buildbot
@ 2020-05-21 15:12 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-21 15:12 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/2853

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        0490dd41ae89e66efd8b3cee122c189a481269de

Subject of commit:
        Re: PR25993, read of freed memory

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/04/0490dd41ae89e66efd8b3cee122c189a481269de//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/04/0490dd41ae89e66efd8b3cee122c189a481269de//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-21  3:04 [binutils-gdb] Replace "if (x) free (x)" with "free (x)", opcodes gdb-buildbot
@ 2020-05-21  3:23 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-21  3:23 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/2852

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        d96bf37ba8360320db4d531008634b3f61af06f5

Subject of commit:
        Replace "if (x) free (x)" with "free (x)", opcodes

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/d9/d96bf37ba8360320db4d531008634b3f61af06f5//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/d9/d96bf37ba8360320db4d531008634b3f61af06f5//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-20 20:45 [binutils-gdb] gdb: reset/recompute objfile section offsets in reread_symbols gdb-buildbot
@ 2020-05-20 20:45 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-20 20:45 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/2850

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        9d428aae67a67087959822b0ffd81f7df96218c7

Subject of commit:
        gdb: reset/recompute objfile section offsets in reread_symbols

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: server exits
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/Ubuntu-Aarch64-native-gdbserver-m64/9d/9d428aae67a67087959822b0ffd81f7df96218c7//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/9d/9d428aae67a67087959822b0ffd81f7df96218c7//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-20 16:10 [binutils-gdb] gdb/testsuite: check mmap ret val against MAP_FAILED gdb-buildbot
@ 2020-05-20 16:10 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-20 16:10 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/2848

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        41977d16e4ee5b9ad01abf2cfce6edbfb6d79541

Subject of commit:
        gdb/testsuite: check mmap ret val against MAP_FAILED

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 4
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
==============================================

*** 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/41/41977d16e4ee5b9ad01abf2cfce6edbfb6d79541//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/41/41977d16e4ee5b9ad01abf2cfce6edbfb6d79541//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-20 14:57 [binutils-gdb] Fix array_char_idx.exp gdb-buildbot
@ 2020-05-20 15:15 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-20 15:15 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/2847

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        b4757f2e45f292c9f0e48e8dbdc003e5dbfca5ed

Subject of commit:
        Fix array_char_idx.exp

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
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.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/Ubuntu-Aarch64-native-gdbserver-m64/b4/b4757f2e45f292c9f0e48e8dbdc003e5dbfca5ed//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/b4/b4757f2e45f292c9f0e48e8dbdc003e5dbfca5ed//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-20 10:29 [binutils-gdb] [gdb/symtab] Handle .gdb_index in ada language mode gdb-buildbot
@ 2020-05-20 10:47 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-20 10: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/2845

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        9a0bacfb08eb87938919023915ecc0ca2ba21223

Subject of commit:
        [gdb/symtab] Handle .gdb_index in ada language mode

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: server exits
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/Ubuntu-Aarch64-native-gdbserver-m64/9a/9a0bacfb08eb87938919023915ecc0ca2ba21223//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/9a/9a0bacfb08eb87938919023915ecc0ca2ba21223//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-20  6:01 [binutils-gdb] Power10 dcbf, sync, and wait extensions gdb-buildbot
@ 2020-05-20  6:19 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-20  6:19 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/2843

Author:
        Peter Bergner <bergner@linux.ibm.com>

Commit tested:
        3d205eb4481c3add674166f716fc052b6fdcbf2e

Subject of commit:
        Power10 dcbf, sync, and wait extensions.

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/3d/3d205eb4481c3add674166f716fc052b6fdcbf2e//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/3d/3d205eb4481c3add674166f716fc052b6fdcbf2e//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-20  5:06 [binutils-gdb] PR26011, excessive memory allocation with fuzzed reloc sections gdb-buildbot
@ 2020-05-20  5:24 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-20  5:24 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/2842

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        3c568b8afab512d12eb5adcf304e505b1bce644d

Subject of commit:
        PR26011, excessive memory allocation with fuzzed reloc sections

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 3
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/Ubuntu-Aarch64-native-gdbserver-m64/3c/3c568b8afab512d12eb5adcf304e505b1bce644d//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/3c/3c568b8afab512d12eb5adcf304e505b1bce644d//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-19 18:54 [binutils-gdb] [gdb/testsuite] Fix typo in gdb.base/gdb-caching-proc.exp gdb-buildbot
@ 2020-05-20  2:40 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-20  2:40 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/2839

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        4cd9f3d510840bb951cd9498cdf390dd9e59adc9

Subject of commit:
        [gdb/testsuite] Fix typo in gdb.base/gdb-caching-proc.exp

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 3
==============================================

*** 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/4c/4cd9f3d510840bb951cd9498cdf390dd9e59adc9//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/4c/4cd9f3d510840bb951cd9498cdf390dd9e59adc9//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-19 18:43 [binutils-gdb] Fix duplicate tests in gdb.rust gdb-buildbot
@ 2020-05-20  1:43 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-20  1:43 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/2838

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        7d874253bfe9846e8d78790bbc32a152a94aa366

Subject of commit:
        Fix duplicate tests in gdb.rust

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/7d/7d874253bfe9846e8d78790bbc32a152a94aa366//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/7d/7d874253bfe9846e8d78790bbc32a152a94aa366//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-19 18:41 [binutils-gdb] Update call to target_fileio_open gdb-buildbot
@ 2020-05-20  0:47 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-20  0: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/2837

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        563c591bedf2e84ef812a89d573ece8546bd3c99

Subject of commit:
        Update call to target_fileio_open

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

*** Diff to previous build ***
==============================================
new KFAIL: gdb.base/argv0-symlink.exp: kept directory symbolic link name
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 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/Ubuntu-Aarch64-native-gdbserver-m64/56/563c591bedf2e84ef812a89d573ece8546bd3c99//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/56/563c591bedf2e84ef812a89d573ece8546bd3c99//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-19 17:49 [binutils-gdb] Default gdb_bfd_open's fd parameter to -1 gdb-buildbot
@ 2020-05-19 23:25 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-19 23:25 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/2833

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        ad80db5b9f7c95105c78d3ab439678184d1b7177

Subject of commit:
        Default gdb_bfd_open's fd parameter to -1

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
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/Ubuntu-Aarch64-native-gdbserver-m64/ad/ad80db5b9f7c95105c78d3ab439678184d1b7177//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/ad/ad80db5b9f7c95105c78d3ab439678184d1b7177//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-19 17:42 [binutils-gdb] Fix thinko in recent update to bfd_section_from_shdr gdb-buildbot
@ 2020-05-19 21:12 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-19 21:12 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/2831

Author:
        Gunther Nikl <gnikl@justmail.de>

Commit tested:
        6fd1d259e98354236fafd14ec05f3d6a377ede9f

Subject of commit:
        Fix thinko in recent update to bfd_section_from_shdr.

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 3
==============================================

*** 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/6f/6fd1d259e98354236fafd14ec05f3d6a377ede9f//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/6f/6fd1d259e98354236fafd14ec05f3d6a377ede9f//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-19 17:41 [binutils-gdb] gdb: make symfile_segment_data::segment_info an std::vector gdb-buildbot
@ 2020-05-19 20:05 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-19 20:05 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/2830

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        9005fbbb0023f212fcd797227b839f21cb8bf0a1

Subject of commit:
        gdb: make symfile_segment_data::segment_info an std::vector

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

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.opencl/vec_comps.exp: OpenCL support not 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/Ubuntu-Aarch64-native-gdbserver-m64/90/9005fbbb0023f212fcd797227b839f21cb8bf0a1//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/90/9005fbbb0023f212fcd797227b839f21cb8bf0a1//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-19 17:40 [binutils-gdb] gdb: use std::vector to store segments in symfile_segment_data gdb-buildbot
@ 2020-05-19 18:58 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-19 18:58 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/2829

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        68b888fff3164b5e8e347d9c1ca351c366f0aac4

Subject of commit:
        gdb: use std::vector to store segments in symfile_segment_data

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/68/68b888fff3164b5e8e347d9c1ca351c366f0aac4//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/68/68b888fff3164b5e8e347d9c1ca351c366f0aac4//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-19 14:02 [binutils-gdb] Fix the ARM assembler to generate a Realtime profile for armv8-r gdb-buildbot
@ 2020-05-19 14:02 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-19 14:02 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/2826

Author:
        Alexander Fedotov <alfedotov@gmail.com>

Commit tested:
        164446e04c89c7f5d8fd3efd7874a1af01035d72

Subject of commit:
        Fix the ARM assembler to generate a Realtime profile for armv8-r.

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/16/164446e04c89c7f5d8fd3efd7874a1af01035d72//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/16/164446e04c89c7f5d8fd3efd7874a1af01035d72//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-19 12:53 [binutils-gdb] or1k: Regenerate opcodes after removing 32-bit support gdb-buildbot
@ 2020-05-19 12:53 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-19 12:53 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/2825

Author:
        Stafford Horne <shorne@gmail.com>

Commit tested:
        a501eb446f5149c1133dbc99f86743b8dd614fa4

Subject of commit:
        or1k: Regenerate opcodes after removing 32-bit support

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/a5/a501eb446f5149c1133dbc99f86743b8dd614fa4//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/a5/a501eb446f5149c1133dbc99f86743b8dd614fa4//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-19 11:21 [binutils-gdb] [PATCH v3] aarch64: Emit jump slot for conditional branch to undefined symbols gdb-buildbot
@ 2020-05-19 11:21 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-19 11:21 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/2824

Author:
        Siddhesh Poyarekar <siddesh.poyarekar@arm.com>

Commit tested:
        7e05773767820b441b23a16628b55c98cb1aef46

Subject of commit:
        [PATCH v3] aarch64: Emit jump slot for conditional branch to undefined symbols

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/7e/7e05773767820b441b23a16628b55c98cb1aef46//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/7e/7e05773767820b441b23a16628b55c98cb1aef46//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-19  1:45 [binutils-gdb] win32 typo fix gdb-buildbot
@ 2020-05-19  2:35 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-19  2:35 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/2822

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        39a1432c09fd0242a0c832b0db04b6a71adea254

Subject of commit:
        win32 typo fix

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

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/gdb-caching-proc.exp: gdb_has_argv0: 0: argv[0] should be available on this target
new FAIL: gdb.base/gdb-caching-proc.exp: gdb_has_argv0: 0: run to main
new FAIL: gdb.base/gdb-caching-proc.exp: gdb_has_argv0: 1: argv[0] should be available on this target
new FAIL: gdb.base/gdb-caching-proc.exp: gdb_has_argv0: 1: run to main
new FAIL: gdb.base/gdb-caching-proc.exp: gdb_has_argv0: 2: argv[0] should be available on this target
new FAIL: gdb.base/gdb-caching-proc.exp: gdb_has_argv0: 2: run to main
new FAIL: gdb.base/gdb-caching-proc.exp: gdb_has_argv0: 3: argv[0] should be available on this target
new FAIL: gdb.base/gdb-caching-proc.exp: gdb_has_argv0: 3: run to main
new FAIL: gdb.base/gdb-caching-proc.exp: gdb_has_argv0: 4: argv[0] should be available on this target
new FAIL: gdb.base/gdb-caching-proc.exp: gdb_has_argv0: 4: run to main
new FAIL: gdb.base/gdb-caching-proc.exp: gdb_has_argv0: 5: argv[0] should be available on this target
new FAIL: gdb.base/gdb-caching-proc.exp: gdb_has_argv0: 5: run to main
new FAIL: gdb.base/gdb-caching-proc.exp: gdb_has_argv0: 6: argv[0] should be available on this target
new FAIL: gdb.base/gdb-caching-proc.exp: gdb_has_argv0: 6: run to main
new FAIL: gdb.base/gdb-caching-proc.exp: gdb_has_argv0: 7: argv[0] should be available on this target
new FAIL: gdb.base/gdb-caching-proc.exp: gdb_has_argv0: 7: run to main
new FAIL: gdb.base/gdb-caching-proc.exp: gdb_has_argv0: 8: argv[0] should be available on this target
new FAIL: gdb.base/gdb-caching-proc.exp: gdb_has_argv0: 8: run to main
new FAIL: gdb.base/gdb-caching-proc.exp: gdb_has_argv0: 9: argv[0] should be available on this target
new FAIL: gdb.base/gdb-caching-proc.exp: gdb_has_argv0: 9: run to main
new FAIL: gdb.base/gdb-caching-proc.exp: gdb_has_argv0: intial: argv[0] should be available on this target
new FAIL: gdb.base/gdb-caching-proc.exp: gdb_has_argv0: intial: run to main
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 3
==============================================

*** 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/39/39a1432c09fd0242a0c832b0db04b6a71adea254//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/39/39a1432c09fd0242a0c832b0db04b6a71adea254//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-13 12:51 [binutils-gdb] Fix the disassmbly of SH instructions which have an unsigned 8-bit immediate operand gdb-buildbot
@ 2020-05-18 18:43 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-18 18:43 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/2821

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        5c936ef50f02fe21a6e1306e30849b4487c65b2c

Subject of commit:
        Fix the disassmbly of SH instructions which have an unsigned 8-bit immediate operand.

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/5c/5c936ef50f02fe21a6e1306e30849b4487c65b2c//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/5c/5c936ef50f02fe21a6e1306e30849b4487c65b2c//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-11 23:30 [binutils-gdb] Fix array pretty formatter gdb-buildbot
@ 2020-05-18 13:55 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-18 13:55 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/2819

Author:
        Hannes Domani <ssbssa@yahoo.de>

Commit tested:
        d642b6920b1a697da2e8fa2326cb773612a87f3f

Subject of commit:
        Fix array pretty formatter

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option array_indexes=True, pretty_arrays=True
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array on: an_array with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array on: an_array: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array on: an_array: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array on: an_array_with_repetition with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array on: an_array_with_repetition: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array on: an_array_with_repetition: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option array_indexes=True, pretty_arrays=True
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array on: an_array with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array on: an_array: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array on: an_array: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array on: an_array_with_repetition with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array on: an_array_with_repetition: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array on: an_array_with_repetition: str
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/Ubuntu-Aarch64-native-gdbserver-m64/d6/d642b6920b1a697da2e8fa2326cb773612a87f3f//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/d6/d642b6920b1a697da2e8fa2326cb773612a87f3f//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-11 19:35 [binutils-gdb] Add definitions of system calls to catch in native NetBSD targets gdb-buildbot
@ 2020-05-18  9:09 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-18  9:09 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/2817

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        4498ef4f8b61f396472a12aea3aa84985714b7b3

Subject of commit:
        Add definitions of system calls to catch in native NetBSD targets

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 3
==============================================

*** 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/44/4498ef4f8b61f396472a12aea3aa84985714b7b3//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/44/4498ef4f8b61f396472a12aea3aa84985714b7b3//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-11 13:36 [binutils-gdb] gdb: Fix toplevel types with -fdebug-types-section gdb-buildbot
@ 2020-05-18  1:47 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-18  1: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/2814

Author:
        Mark Williams <mark@myosotissp.com>

Commit tested:
        770479f223ecd1920dd3cc683b05b24af25c4613

Subject of commit:
        gdb: Fix toplevel types with -fdebug-types-section

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

*** Diff to previous build ***
==============================================
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=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/Ubuntu-Aarch64-native-gdbserver-m64/77/770479f223ecd1920dd3cc683b05b24af25c4613//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/77/770479f223ecd1920dd3cc683b05b24af25c4613//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-11  5:55 [binutils-gdb] [gdb/testsuite] Add PR number to KFAIL in gdb.opt/inline-cmds.exp gdb-buildbot
@ 2020-05-17 16:13 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-17 16:13 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/2810

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        56a4f5a10b1e90d60527455b8542ba98fd0f6349

Subject of commit:
        [gdb/testsuite] Add PR number to KFAIL in gdb.opt/inline-cmds.exp

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/56/56a4f5a10b1e90d60527455b8542ba98fd0f6349//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/56/56a4f5a10b1e90d60527455b8542ba98fd0f6349//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-11  0:22 [binutils-gdb] [gdb/symtab] Handle struct decl with DW_AT_signature gdb-buildbot
@ 2020-05-17  9:03 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-17  9: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/2807

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        15cd93d05e8e84644acc8bbeaa3d5f4280cc5159

Subject of commit:
        [gdb/symtab] Handle struct decl with DW_AT_signature

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 3
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/Ubuntu-Aarch64-native-gdbserver-m64/15/15cd93d05e8e84644acc8bbeaa3d5f4280cc5159//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/15/15cd93d05e8e84644acc8bbeaa3d5f4280cc5159//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-10 18:12 [binutils-gdb] gdb, gdbserver: remove configure check for fs_base/gs_base in user_regs_struct gdb-buildbot
@ 2020-05-17  1:53 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-17  1:53 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/2804

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        1eb399142793d31d1b7a358baad5fded996e02eb

Subject of commit:
        gdb, gdbserver: remove configure check for fs_base/gs_base in user_regs_struct

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

*** 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/1e/1eb399142793d31d1b7a358baad5fded996e02eb//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/1e/1eb399142793d31d1b7a358baad5fded996e02eb//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-10 14:20 [binutils-gdb] Fix remaining inline/tailcall unwinding breakage for x86_64 gdb-buildbot
@ 2020-05-16 21:06 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-16 21:06 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/2802

Author:
        Luis Machado <luis.machado@linaro.org>

Commit tested:
        991a3e2e9944a4b3a27bd989ac03c18285bd545d

Subject of commit:
        Fix remaining inline/tailcall unwinding breakage for x86_64

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/99/991a3e2e9944a4b3a27bd989ac03c18285bd545d//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/99/991a3e2e9944a4b3a27bd989ac03c18285bd545d//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-09 16:53 [binutils-gdb] gdb/testsuite: Remove build paths from test names gdb-buildbot
@ 2020-05-16  3:39 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-16  3:39 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/2795

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        8d840e05dc21b67290440bfd449b9bf272346d47

Subject of commit:
        gdb/testsuite: Remove build paths from test names

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/8d/8d840e05dc21b67290440bfd449b9bf272346d47//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/8d/8d840e05dc21b67290440bfd449b9bf272346d47//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-09 14:26 [binutils-gdb] Fix Rust test cases gdb-buildbot
@ 2020-05-15 23:08 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-15 23:08 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/2793

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        906bb4c58faa8e2c1c62e295f8054e75e910e5e8

Subject of commit:
        Fix Rust test cases

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 4
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: server exits
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/Ubuntu-Aarch64-native-gdbserver-m64/90/906bb4c58faa8e2c1c62e295f8054e75e910e5e8//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/90/906bb4c58faa8e2c1c62e295f8054e75e910e5e8//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-09  8:18 [binutils-gdb] Use the new add_psymbol_to_list overload gdb-buildbot
@ 2020-05-15 15:28 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-15 15:28 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/2790

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        76e288d1d2f1a6b1a19fb9856dc3256a3a5443fa

Subject of commit:
        Use the new add_psymbol_to_list overload

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/76/76e288d1d2f1a6b1a19fb9856dc3256a3a5443fa//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/76/76e288d1d2f1a6b1a19fb9856dc3256a3a5443fa//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-09  4:47 [binutils-gdb] Add attribute::value_as_string method gdb-buildbot
@ 2020-05-15 10:41 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-15 10:41 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/2788

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        e61108c92d4bc4021ab89671612308c01b18e15d

Subject of commit:
        Add attribute::value_as_string method

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 3
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/e6/e61108c92d4bc4021ab89671612308c01b18e15d//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/e6/e61108c92d4bc4021ab89671612308c01b18e15d//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-09  2:38 [binutils-gdb] Fix two latent Rust bugs gdb-buildbot
@ 2020-05-15  8:17 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-15  8:17 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/2787

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        8c87a4527f5102b124ad0128894b1195d80eef73

Subject of commit:
        Fix two latent Rust bugs

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
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/Ubuntu-Aarch64-native-gdbserver-m64/8c/8c87a4527f5102b124ad0128894b1195d80eef73//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/8c/8c87a4527f5102b124ad0128894b1195d80eef73//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-09  0:25 [binutils-gdb] Move the rust "{" hack gdb-buildbot
@ 2020-05-15  5:54 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-15  5:54 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/2786

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        787de330ee1471389cad1975eae65e566ad00448

Subject of commit:
        Move the rust "{" hack

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/78/787de330ee1471389cad1975eae65e566ad00448//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/78/787de330ee1471389cad1975eae65e566ad00448//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-08 17:35 [binutils-gdb] Update test cases that work with minimal encodings gdb-buildbot
@ 2020-05-14 22:43 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-14 22:43 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/2783

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        dac2fef7cfaf007123b521a70864d4dde3d09410

Subject of commit:
        Update test cases that work with minimal encodings

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

*** Diff to previous build ***
==============================================
new KFAIL: gdb.ada/funcall_ref.exp: scenario=minimal: ptype get
FAIL -> KFAIL: gdb.ada/packed_tagged.exp: scenario=minimal: print x
FAIL -> KFAIL: gdb.ada/packed_tagged.exp: scenario=minimal: ptype x
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/Ubuntu-Aarch64-native-gdbserver-m64/da/dac2fef7cfaf007123b521a70864d4dde3d09410//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/da/dac2fef7cfaf007123b521a70864d4dde3d09410//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-08 13:32 [binutils-gdb] Add tests for Ada changes gdb-buildbot
@ 2020-05-14 17:56 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-14 17:56 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/2781

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        adfb981595c1ea12736b6d3c4686973040f171ff

Subject of commit:
        Add tests for Ada changes

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

*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/packed_tagged.exp: scenario=minimal: print x
new FAIL: gdb.ada/packed_tagged.exp: scenario=minimal: ptype x
==============================================

*** 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/ad/adfb981595c1ea12736b6d3c4686973040f171ff//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/ad/adfb981595c1ea12736b6d3c4686973040f171ff//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-08 11:53 [binutils-gdb] Update Ada ptype support for dynamic types gdb-buildbot
@ 2020-05-14 15:32 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-14 15:32 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/2780

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        d656f129ebc7b96db96244d0206fc7fb9af85a65

Subject of commit:
        Update Ada ptype support for dynamic types

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/d6/d656f129ebc7b96db96244d0206fc7fb9af85a65//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/d6/d656f129ebc7b96db96244d0206fc7fb9af85a65//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-08  7:45 [binutils-gdb] Add support for dynamic type lengths gdb-buildbot
@ 2020-05-14 10:45 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-14 10:45 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/2778

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        f8e89861cfb6acbfa097814f5864afd5563a3011

Subject of commit:
        Add support for dynamic type lengths

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/f8/f8e89861cfb6acbfa097814f5864afd5563a3011//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/f8/f8e89861cfb6acbfa097814f5864afd5563a3011//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-08  0:23 [binutils-gdb] Add new variant part code gdb-buildbot
@ 2020-05-14  1:12 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-14  1:12 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/2774

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        ef83a141a291474f1364d6c64ee7a207b96b8e19

Subject of commit:
        Add new variant part code

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: save a corefile
==============================================

*** 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/ef/ef83a141a291474f1364d6c64ee7a207b96b8e19//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/ef/ef83a141a291474f1364d6c64ee7a207b96b8e19//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-07 19:36 [binutils-gdb] Add WOW64 exception numbers to $_siginfo.ExceptionCode enum gdb-buildbot
@ 2020-05-13 20:24 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-13 20:24 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/2772

Author:
        Hannes Domani <ssbssa@yahoo.de>

Commit tested:
        9852ceef7f07b60a757870bafcf044e7d93e08ed

Subject of commit:
        Add WOW64 exception numbers to $_siginfo.ExceptionCode enum

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/98/9852ceef7f07b60a757870bafcf044e7d93e08ed//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/98/9852ceef7f07b60a757870bafcf044e7d93e08ed//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-07 15:18 [binutils-gdb] [gdb/testsuite] Reset errcnt in clean_restart gdb-buildbot
@ 2020-05-13 15:37 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-13 15:37 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/2770

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        86e887ae1183ded1c4bfba8617e4e19c8dfc8271

Subject of commit:
        [gdb/testsuite] Reset errcnt in clean_restart

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/86/86e887ae1183ded1c4bfba8617e4e19c8dfc8271//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/86/86e887ae1183ded1c4bfba8617e4e19c8dfc8271//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-07  5:17 [binutils-gdb] [gdb/testsuite] Reduce errors after gdb exit in default_gdb_start gdb-buildbot
@ 2020-05-13  6:04 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-13  6:04 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/2766

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        2016d3e60f871ea77fb089b5bc7bcfacffab1eab

Subject of commit:
        [gdb/testsuite] Reduce errors after gdb exit in default_gdb_start

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/20/2016d3e60f871ea77fb089b5bc7bcfacffab1eab//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/20/2016d3e60f871ea77fb089b5bc7bcfacffab1eab//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-06 21:01 [binutils-gdb] Fix inline frame unwinding breakage gdb-buildbot
@ 2020-05-12 22:54 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-12 22:54 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/2763

Author:
        Luis Machado <luis.machado@linaro.org>

Commit tested:
        5939967b355ba6a940887d19847b7893a4506067

Subject of commit:
        Fix inline frame unwinding breakage

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/59/5939967b355ba6a940887d19847b7893a4506067//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/59/5939967b355ba6a940887d19847b7893a4506067//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-06 18:20 [binutils-gdb] [gdb/symtab] Prefer def over decl (inter-CU case, with context) gdb-buildbot
@ 2020-05-12 20:30 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-12 20:30 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/2762

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        70bc38f51381698804566504e25d197e8e731d2d

Subject of commit:
        [gdb/symtab] Prefer def over decl (inter-CU case, with context)

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/70/70bc38f51381698804566504e25d197e8e731d2d//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/70/70bc38f51381698804566504e25d197e8e731d2d//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-06  7:33 [binutils-gdb] arc: Add support for ARC HS extra registers in core files gdb-buildbot
@ 2020-05-12 11:17 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-12 11:17 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/2758

Author:
        Anton Kolesov <Anton.Kolesov@synopsys.com>

Commit tested:
        2745674244d6aecddcf636475034bdb9c0a6b4a0

Subject of commit:
        arc: Add support for ARC HS extra registers in core files

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/27/2745674244d6aecddcf636475034bdb9c0a6b4a0//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/27/2745674244d6aecddcf636475034bdb9c0a6b4a0//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-06  4:23 [binutils-gdb] [gdb/testsuite] Skip gdb.base/readnever.exp with target board readnow gdb-buildbot
@ 2020-05-12  8:59 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-12  8:59 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/2757

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        96038148d0e9f7dc89284310d065e27a3fa375f2

Subject of commit:
        [gdb/testsuite] Skip gdb.base/readnever.exp with target board readnow

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/96/96038148d0e9f7dc89284310d065e27a3fa375f2//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/96/96038148d0e9f7dc89284310d065e27a3fa375f2//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-06  1:50 [binutils-gdb] [gdb/symtab] Fix disassembly of non-contiguous functions gdb-buildbot
@ 2020-05-12  6:41 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-12  6:41 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/2756

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        ae3ab1f067b5ca9af33043d772f9f97d92fdd44c

Subject of commit:
        [gdb/symtab] Fix disassembly of non-contiguous functions

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/ae/ae3ab1f067b5ca9af33043d772f9f97d92fdd44c//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/ae/ae3ab1f067b5ca9af33043d772f9f97d92fdd44c//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-05 22:49 [binutils-gdb] xtensa: fix PR ld/25861 gdb-buildbot
@ 2020-05-12  4:23 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-12  4:23 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/2755

Author:
        Max Filippov <jcmvbkbc@gmail.com>

Commit tested:
        30ce8e47fad9b057b6d7af9e1d43061126d34d20

Subject of commit:
        xtensa: fix PR ld/25861

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/30/30ce8e47fad9b057b6d7af9e1d43061126d34d20//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/30/30ce8e47fad9b057b6d7af9e1d43061126d34d20//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-05 14:55 [binutils-gdb] [gdb/symtab] Store external var decls in psymtab gdb-buildbot
@ 2020-05-11 19:01 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-11 19:01 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/2751

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        317d2668d01c7ddc9545029bf56d2b8c4d2bbfeb

Subject of commit:
        [gdb/symtab] Store external var decls in psymtab

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

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
FAIL -> KFAIL: gdb.threads/tls.exp: print a_thread_local
==============================================

*** 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/31/317d2668d01c7ddc9545029bf56d2b8c4d2bbfeb//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/31/317d2668d01c7ddc9545029bf56d2b8c4d2bbfeb//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-05  6:50 [binutils-gdb] gdb/infrun: switch the context before 'displaced_step_restore' gdb-buildbot
@ 2020-05-11  9:36 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-11  9:36 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/2747

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        d43b7a2d5718f303a9e284f0d14219f05fbcfa17

Subject of commit:
        gdb/infrun: switch the context before 'displaced_step_restore'

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/d4/d43b7a2d5718f303a9e284f0d14219f05fbcfa17//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/d4/d43b7a2d5718f303a9e284f0d14219f05fbcfa17//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-05  5:03 [binutils-gdb] Disallow PC relative for CMPI on MC68000/10 gdb-buildbot
@ 2020-05-11  7:19 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-11  7:19 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/2746

Author:
        Andreas Schwab <schwab@linux-m68k.org>

Commit tested:
        bb2a1453479dfa2589f3b62853d4e1cf60825e98

Subject of commit:
        Disallow PC relative for CMPI on MC68000/10

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/bb/bb2a1453479dfa2589f3b62853d4e1cf60825e98//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/bb/bb2a1453479dfa2589f3b62853d4e1cf60825e98//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-05  2:33 [binutils-gdb] BFD: Exclude sections with no content from compress check gdb-buildbot
@ 2020-05-11  5:01 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-11  5:01 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/2745

Author:
        Tamar Christina <tamar.christina@arm.com>

Commit tested:
        c36876fe5b5bac1c404ab2ca82bfbfb2ed9a2717

Subject of commit:
        BFD: Exclude sections with no content from compress check.

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/c3/c36876fe5b5bac1c404ab2ca82bfbfb2ed9a2717//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/c36876fe5b5bac1c404ab2ca82bfbfb2ed9a2717//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-04 22:50 [binutils-gdb] gdb, btrace: diagnose double and failed enable gdb-buildbot
@ 2020-05-11  0:24 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-11  0:24 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/2743

Author:
        Markus Metzger <markus.t.metzger@intel.com>

Commit tested:
        5897fd4994effd21cbe951e6d2c417097adea162

Subject of commit:
        gdb, btrace: diagnose double and failed enable

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/58/5897fd4994effd21cbe951e6d2c417097adea162//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/58/5897fd4994effd21cbe951e6d2c417097adea162//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-04 17:56 [binutils-gdb] [gdb] Fix hang after ext sigkill gdb-buildbot
@ 2020-05-10 19:53 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-10 19:53 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/2741

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        4778a5f87d253399083565b4919816f541ebe414

Subject of commit:
        [gdb] Fix hang after ext sigkill

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

*** Diff to previous build ***
==============================================
new FAIL: gdb.threads/killed-outside.exp: prompt after first continue
==============================================

*** 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/47/4778a5f87d253399083565b4919816f541ebe414//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/47/4778a5f87d253399083565b4919816f541ebe414//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-04 16:01 [binutils-gdb] [gdb/testsuite] share jit-protocol.h by all jit tests gdb-buildbot
@ 2020-05-10 17:35 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-10 17:35 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/2740

Author:
        Mihails Strasuns <mihails.strasuns@intel.com>

Commit tested:
        946422b6a113063b9bbd72832ed13d4694134597

Subject of commit:
        [gdb/testsuite] share jit-protocol.h by all jit tests

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: save a corefile
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/Ubuntu-Aarch64-native-gdbserver-m64/94/946422b6a113063b9bbd72832ed13d4694134597//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/94/946422b6a113063b9bbd72832ed13d4694134597//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-04 12:09 [binutils-gdb] [gdb/testsuite] allow more registers in gdb.base/jit-reader.exp gdb-buildbot
@ 2020-05-10 12:59 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-10 12:59 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/2738

Author:
        Mihails Strasuns <mihails.strasuns@intel.com>

Commit tested:
        f49c464f933172bae5685c2fb51b9e220902146c

Subject of commit:
        [gdb/testsuite] allow more registers in gdb.base/jit-reader.exp

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/f4/f49c464f933172bae5685c2fb51b9e220902146c//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/f4/f49c464f933172bae5685c2fb51b9e220902146c//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-04 10:04 [binutils-gdb] elf: Strip zero-sized dynamic sections gdb-buildbot
@ 2020-05-10 10:41 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-10 10:41 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/2737

Author:
        H.J. Lu <hjl.tools@gmail.com>

Commit tested:
        6f6fd151cbf226bbaa66e44977f57b7c6dc33d89

Subject of commit:
        elf: Strip zero-sized dynamic sections

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/6f/6f6fd151cbf226bbaa66e44977f57b7c6dc33d89//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/6f/6f6fd151cbf226bbaa66e44977f57b7c6dc33d89//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-04  2:41 [binutils-gdb] Remove SH-5 remnants gdb-buildbot
@ 2020-05-09 22:04 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-09 22:04 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/2731

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        fad3d2c1b268735fe6bfa280a8e4e260fb0196a7

Subject of commit:
        Remove SH-5 remnants

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

*** 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/fa/fad3d2c1b268735fe6bfa280a8e4e260fb0196a7//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/fa/fad3d2c1b268735fe6bfa280a8e4e260fb0196a7//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-03 20:34 [binutils-gdb] Disable nested function tests for clang gdb-buildbot
@ 2020-05-09 13:58 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-09 13:58 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/2727

Author:
        Gary Benson <gbenson@redhat.com>

Commit tested:
        b5d1d6f7b70a0086a915c0d04c28a4db91161057

Subject of commit:
        Disable nested function tests for clang

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/b5/b5d1d6f7b70a0086a915c0d04c28a4db91161057//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/b5/b5d1d6f7b70a0086a915c0d04c28a4db91161057//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-03 18:02 [binutils-gdb] Add myself to gdb/MAINTAINERS gdb-buildbot
@ 2020-05-09 11:15 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-09 11:15 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/2725

Author:
        Mihails Strasuns <mihails.strasuns@intel.com>

Commit tested:
        ad23bda0db2b2bee506147701424b2ebfef8f55a

Subject of commit:
        Add myself to gdb/MAINTAINERS

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/ad/ad23bda0db2b2bee506147701424b2ebfef8f55a//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/ad/ad23bda0db2b2bee506147701424b2ebfef8f55a//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-03  6:38 [binutils-gdb] [AArch64, Binutils] Make hint space instructions valid for Armv8-a gdb-buildbot
@ 2020-05-08 21:30 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-08 21:30 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/2719

Author:
        Sudakshina Das <sudi.das@arm.com>

Commit tested:
        8a6e1d1d7f2fb09245fe42f7b8dc6d53f61df1d1

Subject of commit:
        [AArch64, Binutils] Make hint space instructions valid for Armv8-a

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/8a/8a6e1d1d7f2fb09245fe42f7b8dc6d53f61df1d1//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/8a/8a6e1d1d7f2fb09245fe42f7b8dc6d53f61df1d1//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-02  9:50 [binutils-gdb] Replace most calls to help_list and cmd_show_list gdb-buildbot
@ 2020-05-07 17:16 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-07 17:16 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/2710

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        0743fc83c03da263953dfc393a66744a08770365

Subject of commit:
        Replace most calls to help_list and cmd_show_list

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/access_tagged_param.exp: continue
PASS -> FAIL: gdb.ada/ref_param.exp: frame argument value printed
PASS -> FAIL: gdb.ada/set_pckd_arr_elt.exp: continue to update_small
PASS -> FAIL: gdb.base/break-probes.exp: ensure using probes
PASS -> FAIL: gdb.base/compare-sections.exp: after reload: compare-sections -r
PASS -> FAIL: gdb.base/compare-sections.exp: compare-sections .text
new FAIL: gdb.base/compare-sections.exp: read-only: compare-sections -r
PASS -> FAIL: gdb.base/default.exp: cd
new FAIL: gdb.base/gdb-caching-proc.exp: argv[0] should be available on this target
new FAIL: gdb.base/gdb-caching-proc.exp: run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tc-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tc-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tc-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ti: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tl: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tll: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ts: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tdc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-ti: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tl: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tll: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-ts: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tfc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ti: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tl-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tl-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tl-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tl: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-ti: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tl: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tll: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-ts: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tldc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tll-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tll-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tll-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tll: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ts-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ts-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ts-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ts: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tc-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tc-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tc-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-tc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-ti: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-tl: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-tll: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-ts: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tdc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-ti: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tl: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tll: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-ts: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tfc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ti-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ti: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tl-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tl-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tl-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tl: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-ti: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tl: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tll: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-ts: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tldc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tll-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tll-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tll-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tll: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ts-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ts-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ts-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ts: can't run to main
new FAIL: gdb.base/info-types.exp: l=c++: can't run to main
new FAIL: gdb.base/info-types.exp: l=c: can't run to main
new FAIL: gdb.base/max-depth.exp: l=c++: can't run to main
new FAIL: gdb.base/max-depth.exp: l=c: can't run to main
PASS -> UNRESOLVED: gdb.base/readline-ask.exp: bell for more message
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : shell sleep 1
PASS -> FAIL: gdb.base/setshow.exp: set language asm
PASS -> FAIL: gdb.base/step-over-no-symbols.exp: displaced=auto: advanced
PASS -> FAIL: gdb.base/step-over-no-symbols.exp: displaced=off: advanced
PASS -> FAIL: gdb.base/step-over-no-symbols.exp: displaced=on: advanced
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : vfork: pc after stepi matches insn addr after syscall
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : vfork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=on: pc after stepi matches insn addr after syscall
PASS -> UNRESOLVED: gdb.base/symbol-without-target_section.exp: list main
PASS -> UNRESOLVED: gdb.base/symbol-without-target_section.exp: print symbol_without_target_section
new FAIL: gdb.cp/infcall-nodebug.exp: l=c++: s=debug: can't run to main
new FAIL: gdb.cp/infcall-nodebug.exp: l=c++: s=nodebug: can't run to main
new FAIL: gdb.cp/infcall-nodebug.exp: l=c: s=debug: can't run to main
new FAIL: gdb.cp/infcall-nodebug.exp: l=c: s=nodebug: can't run to main
PASS -> UNRESOLVED: gdb.dwarf2/dw2-icc-opaque.exp: ptype p_struct
FAIL -> UNRESOLVED: gdb.gdb/unittest.exp: maintenance check xml-descriptions ${srcdir}/../features
PASS -> FAIL: gdb.multi/multi-re-run.exp: re_run_inf=1: iter=1: running to all_started in runto
PASS -> FAIL: gdb.multi/multi-re-run.exp: re_run_inf=2: running to all_started in runto
PASS -> FAIL: gdb.opt/inline-break.exp: cmd=break: bt stopped in inline_func1
PASS -> FAIL: gdb.opt/inline-break.exp: cmd=break: continue to breakpoint: inline_func1
new UNRESOLVED: gdb.opt/inline-break.exp: cmd=tbreak: could not run to main
new UNRESOLVED: gdb.opt/inline-break.exp: cmd=tbreak: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.opt/inline-cmds.exp: backtrace at inlined_fn from noinline
PASS -> FAIL: gdb.opt/inline-cmds.exp: inlined_fn from noinline inlined
PASS -> FAIL: gdb.opt/inline-cmds.exp: main not inlined
PASS -> FAIL: gdb.opt/inline-cmds.exp: noinline from outer_inline1 not inlined
PASS -> FAIL: gdb.opt/inline-cmds.exp: outer_inline1 inlined
PASS -> FAIL: gdb.opt/inline-cmds.exp: outer_inline2 inlined
PASS -> FAIL: gdb.opt/inline-cmds.exp: up from outer_inline2
PASS -> FAIL: gdb.opt/inline-cmds.exp: up to noinline
PASS -> FAIL: gdb.opt/inline-cmds.exp: up to outer_inline1
PASS -> FAIL: gdb.opt/inline-cmds.exp: up to outer_inline2
new FAIL: gdb.opt/inline-small-func.exp: info breakpoints
PASS -> FAIL: gdb.python/py-frame-inline.exp: info frame
PASS -> FAIL: gdb.python/py-frame-inline.exp: python print
PASS -> FAIL: gdb.python/py-frame-inline.exp: up
new FAIL: gdb.reverse/insn-reverse.exp: move: capture_command_output for info all-registers
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 0:mov	x0, sp
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 10:adrp	x0, 0xaaaaaaabb000
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 11:add	x0, x0, #0x10
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 12:ldr	w0, [x0]
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 13:ldr	w1, [x29, #28]
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 14:cmp	w1, w0
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 15:b.lt	0xaaaaaaaaa8a8 <main+24>  // b.tstop
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 16:adrp	x0, 0xaaaaaaabb000
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 17:add	x0, x0, #0x18
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 18:ldrsw	x1, [x29, #28]
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 19:ldr	x0, [x0, x1, lsl #3]
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 1:ld1	{v1.8b}, [x0]
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 20:blr	x0
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 21:sub	sp, sp, #0x30
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 22:mov	w0, #0x42f60000            	// #1123418112
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 23:fmov	s0, w0
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 24:str	s0, [sp, #4]
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 2:ld1	{v2.8b, v3.8b}, [x0]
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 3:ld1	{v3.8b-v5.8b}, [x0]
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 4:nop
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 5:add	sp, sp, #0x20
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 6:ret
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 7:ldr	w0, [x29, #28]
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 8:add	w0, w0, #0x1
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 9:str	w0, [x29, #28]
new FAIL: gdb.reverse/insn-reverse.exp: move: reverse-stepi
new FAIL: gdb.reverse/insn-reverse.exp: move: si
new FAIL: gdb.reverse/insn-reverse.exp: move: x/i $pc
PASS -> FAIL: gdb.server/ext-run.exp: get process list
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 4
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
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=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/actions.exp: ctf: tracepoint on gdb_asm_test
PASS -> FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_c_test
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_recursion_test 0
PASS -> FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_asm_test
PASS -> FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_c_test
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_recursion_test 0
PASS -> FAIL: gdb.trace/change-loc.exp: 1 trace: continue to marker 2
PASS -> FAIL: gdb.trace/change-loc.exp: 1 trace: continue to marker 3
PASS -> FAIL: gdb.trace/change-loc.exp: 1 trace: tfind frame 0
PASS -> FAIL: gdb.trace/change-loc.exp: 1 trace: tracepoint with two locations - installed
PASS -> FAIL: gdb.trace/change-loc.exp: 1 trace: tracepoint with two locations - pending
PASS -> FAIL: gdb.trace/change-loc.exp: 2 trace: continue to marker 2
PASS -> FAIL: gdb.trace/change-loc.exp: 2 trace: continue to marker 3
PASS -> FAIL: gdb.trace/change-loc.exp: 2 trace: tfind frame 2
PASS -> FAIL: gdb.trace/change-loc.exp: 2 trace: tracepoint with two locations - installed
PASS -> FAIL: gdb.trace/change-loc.exp: 2 trace: tracepoint with two locations - pending
PASS -> FAIL: gdb.trace/pending.exp: ftrace installed_in_trace: continue to marker 2
new FAIL: gdb.trace/pending.exp: ftrace installed_in_trace: tfind test frame 0
PASS -> FAIL: gdb.trace/pending.exp: trace installed_in_trace: continue to marker 2
PASS -> FAIL: gdb.trace/pending.exp: trace installed_in_trace: tfind test frame 0
PASS -> FAIL: gdb.trace/signal.exp: tracepoint 4 hit 3 times
PASS -> FAIL: gdb.trace/signal.exp: tracepoint 5 hit 3 times
PASS -> FAIL: gdb.trace/unavailable.exp: unavailable arguments: ctf: info args
PASS -> FAIL: gdb.trace/unavailable.exp: unavailable arguments: info args
PASS -> FAIL: gdb.trace/unavailable.exp: unavailable arguments: tfile: info args
new FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
new FAIL: gdb.tui/resize.exp: source box after resize
new FAIL: gdb.tui/tui-layout-asm.exp: scroll to end of assembler
new FAIL: gdb.tui/tui-missing-src.exp: Back in main
new FAIL: gdb.tui/tui-missing-src.exp: checking if inside f2
new FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: 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-gdbserver-m64/07/0743fc83c03da263953dfc393a66744a08770365//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/07/0743fc83c03da263953dfc393a66744a08770365//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-02  6:00 [binutils-gdb] Remove obsolete and unused inf_ptrace_target::auxv_parse gdb-buildbot
@ 2020-05-07 11:22 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-07 11:22 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/2707

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        3557f442a1881271652581b4a66c206d5b348c5d

Subject of commit:
        Remove obsolete and unused inf_ptrace_target::auxv_parse

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/35/3557f442a1881271652581b4a66c206d5b348c5d//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/35/3557f442a1881271652581b4a66c206d5b348c5d//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-02  4:40 [binutils-gdb] PR25842, Null pointer dereference in nm-new gdb-buildbot
@ 2020-05-07  9:03 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-07  9: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/2706

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        8d55d10ac0d112c586eaceb92e75bd9b80aadcc4

Subject of commit:
        PR25842, Null pointer dereference in nm-new

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/8d/8d55d10ac0d112c586eaceb92e75bd9b80aadcc4//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/8d/8d55d10ac0d112c586eaceb92e75bd9b80aadcc4//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-01 17:21 [binutils-gdb] Fix Cygwin gdb build gdb-buildbot
@ 2020-05-06 20:39 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-06 20:39 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/2700

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        a010605fef0eba73c564c3dd22e0a6ecbc26b10e

Subject of commit:
        Fix Cygwin gdb build

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/a0/a010605fef0eba73c564c3dd22e0a6ecbc26b10e//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/a0/a010605fef0eba73c564c3dd22e0a6ecbc26b10e//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-01 15:23 [binutils-gdb] [gdb/symtab] Handle PU without import in "save gdb-index" gdb-buildbot
@ 2020-05-06 18:21 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-06 18:21 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/2699

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        efba5c2319d6c25393e5cce9a2d30bbc0cb53123

Subject of commit:
        [gdb/symtab] Handle PU without import in "save gdb-index"

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/ef/efba5c2319d6c25393e5cce9a2d30bbc0cb53123//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/ef/efba5c2319d6c25393e5cce9a2d30bbc0cb53123//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-01 12:46 [binutils-gdb] Fix compilation of python/python.c for Python 3.9 gdb-buildbot
@ 2020-05-06 15:57 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-06 15:57 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/2698

Author:
        Kevin Buettner <kevinb@redhat.com>

Commit tested:
        97ed802d1531632efba69f34accd811217579d0b

Subject of commit:
        Fix compilation of python/python.c for Python 3.9

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: save a corefile
==============================================

*** 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/97/97ed802d1531632efba69f34accd811217579d0b//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/97/97ed802d1531632efba69f34accd811217579d0b//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-01 10:59 [binutils-gdb] PR25827, Null pointer dereferencing in scan_unit_for_symbols gdb-buildbot
@ 2020-05-06 13:36 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-06 13:36 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/2697

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        aec72fda3b320c36eb99fc1c4cf95b10fc026729

Subject of commit:
        PR25827, Null pointer dereferencing in scan_unit_for_symbols

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/ae/aec72fda3b320c36eb99fc1c4cf95b10fc026729//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/ae/aec72fda3b320c36eb99fc1c4cf95b10fc026729//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-01  9:03 [binutils-gdb] cpu, gas, opcodes: support for eBPF JMP32 instruction class gdb-buildbot
@ 2020-05-06 11:14 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-06 11:14 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/2696

Author:
        David Faust <david.faust@oracle.com>

Commit tested:
        c54a9b56696e584c2b8c7146caac337c063f5516

Subject of commit:
        cpu,gas,opcodes: support for eBPF JMP32 instruction class

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/c5/c54a9b56696e584c2b8c7146caac337c063f5516//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/c5/c54a9b56696e584c2b8c7146caac337c063f5516//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-01  5:17 [binutils-gdb] PowerPC64 GOT reloc reserving PLT entry for ifunc gdb-buildbot
@ 2020-05-06  5:33 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-06  5:33 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/2693

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        2165dc8d90ef9618a1db9bc596f433b02b7cc54a

Subject of commit:
        PowerPC64 GOT reloc reserving PLT entry for ifunc

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/21/2165dc8d90ef9618a1db9bc596f433b02b7cc54a//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/21/2165dc8d90ef9618a1db9bc596f433b02b7cc54a//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-05-01  3:29 [binutils-gdb] PowerPC64 GOT reloc optimisation gdb-buildbot
@ 2020-05-06  3:15 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-06  3:15 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/2692

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        06507dab6172582d3924a3d7dc92a9e7d4ab60ff

Subject of commit:
        PowerPC64 GOT reloc optimisation

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/06/06507dab6172582d3924a3d7dc92a9e7d4ab60ff//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/06/06507dab6172582d3924a3d7dc92a9e7d4ab60ff//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-30 21:26 [binutils-gdb] Use debug_printf in windows-nat.c gdb-buildbot
@ 2020-05-05 20:07 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-05 20:07 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/2689

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        ce127a96c912965e0fe24906d6083e5e9c79a92f

Subject of commit:
        Use debug_printf in windows-nat.c

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/ce/ce127a96c912965e0fe24906d6083e5e9c79a92f//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/ce/ce127a96c912965e0fe24906d6083e5e9c79a92f//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-30 15:03 [binutils-gdb] Unify the behaviour of ld.bfd and ld.gold with respect to warning about unresolved symbol references. (PR 24613) gdb-buildbot
@ 2020-05-05 13:12 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-05 13:12 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/2686

Author:
        Fangrui Song <maskray@google.com>

Commit tested:
        95a515681272fa3a79624279c1579cce14ad61c0

Subject of commit:
        Unify the behaviour of ld.bfd and ld.gold with respect to warning about unresolved symbol references.  (PR 24613)

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/95/95a515681272fa3a79624279c1579cce14ad61c0//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/95/95a515681272fa3a79624279c1579cce14ad61c0//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-30  2:14 [binutils-gdb] [gdb] Fix missing symtab includes gdb-buildbot
@ 2020-05-04 23:21 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-04 23:21 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/2680

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        194d088fb1fa6c3c341994ca247d172c3f08c2da

Subject of commit:
        [gdb] Fix missing symtab includes

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

*** Diff to previous build ***
==============================================
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=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/Ubuntu-Aarch64-native-gdbserver-m64/19/194d088fb1fa6c3c341994ca247d172c3f08c2da//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/19/194d088fb1fa6c3c341994ca247d172c3f08c2da//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-29 20:57 [binutils-gdb] Remove gdb_fildes_t gdb-buildbot
@ 2020-05-04 15:37 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-04 15:37 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/2676

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        73944e9f6317fa826044d79a6c15ea4448270ee8

Subject of commit:
        Remove gdb_fildes_t

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/73/73944e9f6317fa826044d79a6c15ea4448270ee8//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/73/73944e9f6317fa826044d79a6c15ea4448270ee8//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-29 17:15 [binutils-gdb] Switch gdbserver to gdbsupport event loop gdb-buildbot
@ 2020-05-04 10:59 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-04 10:59 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/2674

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        55d7aec85e81c4597e94ebcc8b85f20a1d439bd0

Subject of commit:
        Switch gdbserver to gdbsupport event loop

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/55/55d7aec85e81c4597e94ebcc8b85f20a1d439bd0//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/55/55d7aec85e81c4597e94ebcc8b85f20a1d439bd0//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-28 14:48 [binutils-gdb] Implement IP_MINIMAL and IP_ALL on NetBSD gdb-buildbot
@ 2020-05-03  7:45 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-03  7:45 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/2660

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        1085dfd4e1242fab231b26093882f4e2526d14d0

Subject of commit:
        Implement IP_MINIMAL and IP_ALL on NetBSD

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/10/1085dfd4e1242fab231b26093882f4e2526d14d0//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/10/1085dfd4e1242fab231b26093882f4e2526d14d0//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-28  8:55 [binutils-gdb] Implement "info proc exe" for NetBSD gdb-buildbot
@ 2020-05-03  0:50 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-03  0:50 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/2657

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        51c133d547e21421c678276b0cb53383f5706781

Subject of commit:
        Implement "info proc exe" for NetBSD

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 4
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
==============================================

*** 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/51/51c133d547e21421c678276b0cb53383f5706781//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/51/51c133d547e21421c678276b0cb53383f5706781//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-28  4:05 [binutils-gdb] Implement "info proc mappings" for NetBSD gdb-buildbot
@ 2020-05-02 22:33 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-02 22:33 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/2656

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        54b8cbd0e4063846349634aefa8ed1a3c0ac62ca

Subject of commit:
        Implement "info proc mappings" for NetBSD

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=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/Ubuntu-Aarch64-native-gdbserver-m64/54/54b8cbd0e4063846349634aefa8ed1a3c0ac62ca//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/54/54b8cbd0e4063846349634aefa8ed1a3c0ac62ca//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-27 19:18 [binutils-gdb] gdb: fix undefined behavior reported in copy_bitwise gdb-buildbot
@ 2020-05-02  9:28 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-02  9:28 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/2654

Author:
        Artur Shepilko <nomadbyte@gmail.com>

Commit tested:
        cf83625da29d1239e97f1eb4d145f347cb741889

Subject of commit:
        gdb: fix undefined behavior reported in copy_bitwise

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/cf/cf83625da29d1239e97f1eb4d145f347cb741889//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/cf/cf83625da29d1239e97f1eb4d145f347cb741889//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-27 10:51 [binutils-gdb] [gdb/testsuite] Fix -readnow FAIL in gdb.base/style.exp gdb-buildbot
@ 2020-05-01 23:46 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-01 23:46 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/2650

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        71ea2b6be8228759230cef7d5a7ab0b45b77c26c

Subject of commit:
        [gdb/testsuite] Fix -readnow FAIL in gdb.base/style.exp

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/71/71ea2b6be8228759230cef7d5a7ab0b45b77c26c//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/71/71ea2b6be8228759230cef7d5a7ab0b45b77c26c//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-27  7:10 [binutils-gdb] gdb: move Tom de Vries to Global Maintainers gdb-buildbot
@ 2020-05-01 19:10 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-01 19:10 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/2648

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        f4460aec690046a531ec6f7826eae8b2938f523c

Subject of commit:
        gdb: move Tom de Vries to Global Maintainers

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 3
==============================================

*** 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/f4/f4460aec690046a531ec6f7826eae8b2938f523c//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/f4/f4460aec690046a531ec6f7826eae8b2938f523c//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-27  1:48 [binutils-gdb] Add pending stop support to gdbserver's Windows port gdb-buildbot
@ 2020-05-01 12:14 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-05-01 12:14 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/2645

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        360ad8b3505faea96190283270854bf9b397f334

Subject of commit:
        Add pending stop support to gdbserver's Windows port

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/36/360ad8b3505faea96190283270854bf9b397f334//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/36/360ad8b3505faea96190283270854bf9b397f334//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-26 10:15 [binutils-gdb] Share handle_exception gdb-buildbot
@ 2020-04-30 17:49 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-30 17:49 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/2637

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        8d30e395779603a8d36fa8bdfddba88a312552f4

Subject of commit:
        Share handle_exception

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 4
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
==============================================

*** 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/8d/8d30e395779603a8d36fa8bdfddba88a312552f4//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/8d/8d30e395779603a8d36fa8bdfddba88a312552f4//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-26  8:36 [binutils-gdb] Remove some globals from windows-nat.c gdb-buildbot
@ 2020-04-30 15:30 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-30 15:30 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/2636

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        29de418deeac717886df20ef0419240aa0dfc32a

Subject of commit:
        Remove some globals from windows-nat.c

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================

*** 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/29/29de418deeac717886df20ef0419240aa0dfc32a//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/29/29de418deeac717886df20ef0419240aa0dfc32a//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-26  4:37 [binutils-gdb] Fix up complaints.h for namespace use gdb-buildbot
@ 2020-04-30 10:51 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-30 10:51 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/2634

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        a00caa12790706017c9331ad984b4f6b102db1b6

Subject of commit:
        Fix up complaints.h for namespace use

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/a0/a00caa12790706017c9331ad984b4f6b102db1b6//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/a0/a00caa12790706017c9331ad984b4f6b102db1b6//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-25 17:49 [binutils-gdb] Share thread_rec between gdb and gdbserver gdb-buildbot
@ 2020-04-30  1:30 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-30  1:30 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/2630

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        28688adf8f883fdd8b642a446ec5578236e84b1e

Subject of commit:
        Share thread_rec between gdb and gdbserver

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
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/Ubuntu-Aarch64-native-gdbserver-m64/28/28688adf8f883fdd8b642a446ec5578236e84b1e//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/28/28688adf8f883fdd8b642a446ec5578236e84b1e//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-25  7:06 [binutils-gdb] Change type of argument to windows-nat.c:thread_rec gdb-buildbot
@ 2020-04-29 16:09 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-29 16:09 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/2626

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        8e61ebec34674445bd5ea8df627f5ba2afb57d79

Subject of commit:
        Change type of argument to windows-nat.c:thread_rec

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
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/Ubuntu-Aarch64-native-gdbserver-m64/8e/8e61ebec34674445bd5ea8df627f5ba2afb57d79//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/8e/8e61ebec34674445bd5ea8df627f5ba2afb57d79//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-25  4:16 [binutils-gdb] Share Windows thread-suspend and -resume code gdb-buildbot
@ 2020-04-29 13:52 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-29 13:52 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/2625

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        98a032873232f9685dc7a5d632481c1488b9f1c5

Subject of commit:
        Share Windows thread-suspend and -resume code

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: save a corefile
==============================================

*** 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/98/98a032873232f9685dc7a5d632481c1488b9f1c5//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/98/98a032873232f9685dc7a5d632481c1488b9f1c5//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-25  1:35 [binutils-gdb] Use lwp, not tid, for Windows thread id gdb-buildbot
@ 2020-04-29 11:33 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-29 11:33 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/2624

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        7c7411bcabdbe88c6a2f1b9a6090eea0dc50686f

Subject of commit:
        Use lwp, not tid, for Windows thread id

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/7c/7c7411bcabdbe88c6a2f1b9a6090eea0dc50686f//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/7c/7c7411bcabdbe88c6a2f1b9a6090eea0dc50686f//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-24 19:34 [binutils-gdb] Change two windows_thread_info members to "bool" gdb-buildbot
@ 2020-04-29  6:24 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-29  6:24 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/2622

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        62fe396b1cba6b0c3d06b758d9f8254c6d538ad8

Subject of commit:
        Change two windows_thread_info members to "bool"

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/62/62fe396b1cba6b0c3d06b758d9f8254c6d538ad8//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/62/62fe396b1cba6b0c3d06b758d9f8254c6d538ad8//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-24  8:35 [binutils-gdb] Rename win32_thread_info to windows_thread_info gdb-buildbot
@ 2020-04-28 18:11 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-28 18:11 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/2616

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        e56f8ccb07890fc2c0413c530d27d105c74f622c

Subject of commit:
        Rename win32_thread_info to windows_thread_info

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

*** Diff to previous build ***
==============================================
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=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/Ubuntu-Aarch64-native-gdbserver-m64/e5/e56f8ccb07890fc2c0413c530d27d105c74f622c//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/e5/e56f8ccb07890fc2c0413c530d27d105c74f622c//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-24  5:56 [binutils-gdb] Remove the "next" field from windows_thread_info gdb-buildbot
@ 2020-04-28 15:53 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-28 15:53 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/2615

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        93366324f5232374bc19d94d94b5ed6159326240

Subject of commit:
        Remove the "next" field from windows_thread_info

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: pc after stepi matches insn addr after syscall
==============================================

*** 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/93/93366324f5232374bc19d94d94b5ed6159326240//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/93/93366324f5232374bc19d94d94b5ed6159326240//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-24  3:04 [binutils-gdb] gdb: stop using host-dependent signal numbers in windows-tdep.c gdb-buildbot
@ 2020-04-28 13:35 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-28 13:35 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/2614

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        0f2265e2461babf685ff14f4ec9a9c60898453fe

Subject of commit:
        gdb: stop using host-dependent signal numbers in windows-tdep.c

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: save a corefile
==============================================

*** 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/0f/0f2265e2461babf685ff14f4ec9a9c60898453fe//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/0f/0f2265e2461babf685ff14f4ec9a9c60898453fe//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-24  0:15 [binutils-gdb] Remove objfile parameter from read_gdb_index_from_buffer gdb-buildbot
@ 2020-04-28 11:17 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-28 11:17 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/2613

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        3810f182ee3b14d36b37938e897ea871f1175b46

Subject of commit:
        Remove objfile parameter from read_gdb_index_from_buffer

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/38/3810f182ee3b14d36b37938e897ea871f1175b46//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/38/3810f182ee3b14d36b37938e897ea871f1175b46//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-23 15:59 [binutils-gdb] Define NetBSD specific skip_solib_resolver gdb-buildbot
@ 2020-04-28  1:59 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-28  1:59 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/2609

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        063f8e80b0858f3dfc27f7f5bbc3ffb1967095bc

Subject of commit:
        Define NetBSD specific skip_solib_resolver

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: pc after stepi matches insn addr after syscall
==============================================

*** 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/06/063f8e80b0858f3dfc27f7f5bbc3ffb1967095bc//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/06/063f8e80b0858f3dfc27f7f5bbc3ffb1967095bc//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-23 13:05 [binutils-gdb] DWARFv5: Info address command error in gdb with DWARFfv5 gdb-buildbot
@ 2020-04-27 23:40 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-27 23:40 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/2608

Author:
        nitachra <Nitika.Achra@amd.com>

Commit tested:
        85a9510ccbe8d897471cdd4f25a475329ae24498

Subject of commit:
        DWARFv5: Info address command error in gdb with DWARFfv5.

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/85/85a9510ccbe8d897471cdd4f25a475329ae24498//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/85/85a9510ccbe8d897471cdd4f25a475329ae24498//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-23 10:20 [binutils-gdb] DWARFv5: Handle location list for split dwarf gdb-buildbot
@ 2020-04-27 21:22 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-27 21:22 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/2607

Author:
        nitachra <Nitika.Achra@amd.com>

Commit tested:
        9fc3eaae69b2a60c5688d6bfe334829a3964b17f

Subject of commit:
        DWARFv5: Handle location list for split dwarf.

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/9f/9fc3eaae69b2a60c5688d6bfe334829a3964b17f//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/9f/9fc3eaae69b2a60c5688d6bfe334829a3964b17f//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-21 10:09 [binutils-gdb] gdb: replace some calls to internal_error with gdb_assert gdb-buildbot
@ 2020-04-26  2:19 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-26  2:19 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/2590

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        e2ff18a0a54f98c38f8d9b80c36faa7aacacf6d6

Subject of commit:
        gdb: replace some calls to internal_error with gdb_assert

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/e2/e2ff18a0a54f98c38f8d9b80c36faa7aacacf6d6//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/e2/e2ff18a0a54f98c38f8d9b80c36faa7aacacf6d6//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-21  7:32 [binutils-gdb] Avoid assertion failure due to complex type change gdb-buildbot
@ 2020-04-25 23:25 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-25 23:25 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/2589

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        0830d301901d225403eaf6629c20a6c09f3ec8f6

Subject of commit:
        Avoid assertion failure due to complex type change

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/08/0830d301901d225403eaf6629c20a6c09f3ec8f6//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/08/0830d301901d225403eaf6629c20a6c09f3ec8f6//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-21  4:59 [binutils-gdb] Micro-optimize partial_die_info::read gdb-buildbot
@ 2020-04-25 16:44 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-25 16:44 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/2585

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        e7da7f8f71572e3ef71a22ad3fae2388a53bd84c

Subject of commit:
        Micro-optimize partial_die_info::read

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/e7/e7da7f8f71572e3ef71a22ad3fae2388a53bd84c//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/e7/e7da7f8f71572e3ef71a22ad3fae2388a53bd84c//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-21  2:02 [binutils-gdb] gdb: Don't remove duplicate entries from the line table gdb-buildbot
@ 2020-04-25 14:21 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-25 14:21 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/2584

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        c90d28ac8903c5781b1a82e487072081383fd7b9

Subject of commit:
        gdb: Don't remove duplicate entries from the line table

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/access_tagged_param.exp: continue
PASS -> FAIL: gdb.ada/ref_param.exp: frame argument value printed
PASS -> FAIL: gdb.ada/set_pckd_arr_elt.exp: continue to update_small
new FAIL: gdb.opt/inline-small-func.exp: info breakpoints
==============================================

*** 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/c9/c90d28ac8903c5781b1a82e487072081383fd7b9//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/c9/c90d28ac8903c5781b1a82e487072081383fd7b9//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-20 13:48 [binutils-gdb] coff-go32-exe: support variable-length stubs gdb-buildbot
@ 2020-04-25  5:03 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-25  5: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/2580

Author:
        Jan W. Jagersma <jwjagersma@gmail.com>

Commit tested:
        4d095f5b5e57584133f85df42da2123e20834aec

Subject of commit:
        coff-go32-exe: support variable-length stubs

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/4d/4d095f5b5e57584133f85df42da2123e20834aec//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/4d/4d095f5b5e57584133f85df42da2123e20834aec//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-20 12:37 [binutils-gdb] gdbserver/linux-low: delete 'linux_target_ops' and 'the_low_target' gdb-buildbot
@ 2020-04-25  2:43 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-25  2:43 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/2579

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        0dd7b52ede3de7c5e43cc7c0a52a4e2f2b4297b7

Subject of commit:
        gdbserver/linux-low: delete 'linux_target_ops' and 'the_low_target'

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: pc after stepi matches insn addr after syscall
==============================================

*** 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/0d/0dd7b52ede3de7c5e43cc7c0a52a4e2f2b4297b7//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/0d/0dd7b52ede3de7c5e43cc7c0a52a4e2f2b4297b7//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-20  9:59 [binutils-gdb] gdbserver/linux-low: turn 'get_ipa_tdesc_idx' into a method gdb-buildbot
@ 2020-04-25  0:23 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-25  0:23 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/2578

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        fc5ecdb630406b68ce98c112e1fe618b5839c188

Subject of commit:
        gdbserver/linux-low: turn 'get_ipa_tdesc_idx' into a method

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/fc/fc5ecdb630406b68ce98c112e1fe618b5839c188//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/fc/fc5ecdb630406b68ce98c112e1fe618b5839c188//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-20  7:19 [binutils-gdb] gdbserver/linux-low: turn 'get_syscall_trapinfo' into a method gdb-buildbot
@ 2020-04-24 22:03 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-24 22: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/2577

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        9eedd27d42ceeb6f3765c24972a5c97ce20727cd

Subject of commit:
        gdbserver/linux-low: turn 'get_syscall_trapinfo' into a method

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/9e/9eedd27d42ceeb6f3765c24972a5c97ce20727cd//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/9e/9eedd27d42ceeb6f3765c24972a5c97ce20727cd//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-19 21:43 [binutils-gdb] gdbserver/linux-low: turn fast tracepoint ops into methods gdb-buildbot
@ 2020-04-24 12:48 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-24 12:48 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/2573

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        809a0c354b97bbbcacbd99808f0e328b39614a8f

Subject of commit:
        gdbserver/linux-low: turn fast tracepoint ops into methods

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/80/809a0c354b97bbbcacbd99808f0e328b39614a8f//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/80/809a0c354b97bbbcacbd99808f0e328b39614a8f//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-19 19:18 [binutils-gdb] gdbserver/linux-low: turn 'get_thread_area' into a method gdb-buildbot
@ 2020-04-24 10:28 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-24 10:28 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/2572

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        13e567af27e45f7e2f7adc9562d4cfe5a81227f9

Subject of commit:
        gdbserver/linux-low: turn 'get_thread_area' into a method

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/13/13e567af27e45f7e2f7adc9562d4cfe5a81227f9//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/13/13e567af27e45f7e2f7adc9562d4cfe5a81227f9//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-18 19:39 [binutils-gdb] gdbserver/linux-low: turn 'supports_z_point_type' into a method gdb-buildbot
@ 2020-04-23 13:41 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-23 13:41 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/2563

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        007c9b975dcb9ad50b45d52d2d7a955537beefb7

Subject of commit:
        gdbserver/linux-low: turn 'supports_z_point_type' into a method

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/00/007c9b975dcb9ad50b45d52d2d7a955537beefb7//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/00/007c9b975dcb9ad50b45d52d2d7a955537beefb7//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-18 11:35 [binutils-gdb] gdbserver/linux-low: turn 'supports_software_single_step' and 'get_next_pcs' into methods gdb-buildbot
@ 2020-04-23  6:40 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-23  6:40 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/2560

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        7582c77c1d2cab3f53b70697529c1644ceeb94a2

Subject of commit:
        gdbserver/linux-low: turn 'supports_software_single_step' and 'get_next_pcs' into methods

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/75/7582c77c1d2cab3f53b70697529c1644ceeb94a2//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/75/7582c77c1d2cab3f53b70697529c1644ceeb94a2//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-18  8:42 [binutils-gdb] gdbserver/linux-low: turn 'sw_breakpoint_from_kind' into a method gdb-buildbot
@ 2020-04-23  4:20 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-23  4:20 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/2559

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        3ca4edb6617353defacd3bf3a4ee3d458238419e

Subject of commit:
        gdbserver/linux-low: turn 'sw_breakpoint_from_kind' into a method

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 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/Ubuntu-Aarch64-native-gdbserver-m64/3c/3ca4edb6617353defacd3bf3a4ee3d458238419e//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/3c/3ca4edb6617353defacd3bf3a4ee3d458238419e//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-17 21:26 [binutils-gdb] gdbserver/linux-low: turn 'fetch_register' into a method gdb-buildbot
@ 2020-04-22 19:01 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-22 19:01 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/2555

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        bd70b1f240b24d8c9b08868ca777f5a81d13c0c2

Subject of commit:
        gdbserver/linux-low: turn 'fetch_register' into a method

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/bd/bd70b1f240b24d8c9b08868ca777f5a81d13c0c2//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/bd/bd70b1f240b24d8c9b08868ca777f5a81d13c0c2//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-17  9:43 [binutils-gdb] gdbserver/linux-low: start turning linux target ops into methods gdb-buildbot
@ 2020-04-22  9:44 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-22  9:44 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/2551

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        ef0478f6112ede4da9b70e07aa3124f0d2faf108

Subject of commit:
        gdbserver/linux-low: start turning linux target ops into methods

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: pc after stepi matches insn addr after syscall
==============================================

*** 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/ef/ef0478f6112ede4da9b70e07aa3124f0d2faf108//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/ef/ef0478f6112ede4da9b70e07aa3124f0d2faf108//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-17  7:13 [binutils-gdb] gdbserver/linux-low: turn some static functions into private methods gdb-buildbot
@ 2020-04-22  7:24 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-22  7:24 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/2550

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        d16f3f6c70dfc71bc239cac4f49be34c94c366ad

Subject of commit:
        gdbserver/linux-low: turn some static functions into private methods

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/d1/d16f3f6c70dfc71bc239cac4f49be34c94c366ad//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/d1/d16f3f6c70dfc71bc239cac4f49be34c94c366ad//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-16 11:49 [binutils-gdb] gdb: fix style issues in is_linked_with_cygwin_dll gdb-buildbot
@ 2020-04-21 15:09 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-21 15:09 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/2543

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        2836752f8ff55ea1fc7f6b1e7f8ff778775646f8

Subject of commit:
        gdb: fix style issues in is_linked_with_cygwin_dll

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/28/2836752f8ff55ea1fc7f6b1e7f8ff778775646f8//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/28/2836752f8ff55ea1fc7f6b1e7f8ff778775646f8//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-16  8:49 [binutils-gdb] Fix an undefined behavior in record_line gdb-buildbot
@ 2020-04-21 12:49 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-21 12:49 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/2542

Author:
        Bernd Edlinger <bernd.edlinger@hotmail.de>

Commit tested:
        64dc2d4bd24ff7119c913fff91184414f09b8042

Subject of commit:
        Fix an undefined behavior in record_line

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.dwarf2/dw2-ranges-func.exp: hi-cold: step-test-3: step into bar from foo
PASS -> FAIL: gdb.dwarf2/dw2-ranges-func.exp: hi-cold: step-test-3: step into baz from foo_cold
PASS -> FAIL: gdb.dwarf2/dw2-ranges-func.exp: hi-cold: step-test-3: step into foo from main
PASS -> FAIL: gdb.dwarf2/dw2-ranges-func.exp: hi-cold: step-test-3: step into foo_cold from foo
PASS -> FAIL: gdb.dwarf2/dw2-ranges-func.exp: hi-cold: step-test-3: step out of bar to foo
PASS -> FAIL: gdb.dwarf2/dw2-ranges-func.exp: hi-cold: step-test-3: step out of baz to foo_cold
PASS -> FAIL: gdb.dwarf2/dw2-ranges-func.exp: hi-cold: step-test-3: step out of foo to main
PASS -> FAIL: gdb.dwarf2/dw2-ranges-func.exp: hi-cold: step-test-3: step out of foo_cold to foo
PASS -> FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: step-test-3: step into bar from foo
PASS -> FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: step-test-3: step into baz from foo_cold
PASS -> FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: step-test-3: step into foo from main
PASS -> FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: step-test-3: step into foo_cold from foo
PASS -> FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: step-test-3: step out of bar to foo
PASS -> FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: step-test-3: step out of baz to foo_cold
PASS -> FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: step-test-3: step out of foo to main
PASS -> FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: step-test-3: step out of foo_cold to foo
==============================================

*** 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/64/64dc2d4bd24ff7119c913fff91184414f09b8042//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/64/64dc2d4bd24ff7119c913fff91184414f09b8042//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-16  6:02 [binutils-gdb] Fix the resizing condition of the line table gdb-buildbot
@ 2020-04-21 10:29 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-21 10:29 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/2541

Author:
        Bernd Edlinger <bernd.edlinger@hotmail.de>

Commit tested:
        bbe3dc410bd5c29955ef3409f9fee9e7c73b2c49

Subject of commit:
        Fix the resizing condition of the line table

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/bb/bbe3dc410bd5c29955ef3409f9fee9e7c73b2c49//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/bb/bbe3dc410bd5c29955ef3409f9fee9e7c73b2c49//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-16  0:15 [binutils-gdb] Fix value_literal_complex comment gdb-buildbot
@ 2020-04-21  5:51 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-21  5:51 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/2539

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        6b4a335bf7b7996e904e895b3fdc35443c40cfca

Subject of commit:
        Fix value_literal_complex comment

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 4
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
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/Ubuntu-Aarch64-native-gdbserver-m64/6b/6b4a335bf7b7996e904e895b3fdc35443c40cfca//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/6b/6b4a335bf7b7996e904e895b3fdc35443c40cfca//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-15 21:30 [binutils-gdb] Add _Complex type support to C parser gdb-buildbot
@ 2020-04-21  3:32 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-21  3:32 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/2538

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        3638a098a21ce706ef2b17185f3b165e4f9a5c54

Subject of commit:
        Add _Complex type support to C parser

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
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/Ubuntu-Aarch64-native-gdbserver-m64/36/3638a098a21ce706ef2b17185f3b165e4f9a5c54//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/36/3638a098a21ce706ef2b17185f3b165e4f9a5c54//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-15 18:33 [binutils-gdb] Implement complex arithmetic gdb-buildbot
@ 2020-04-21  1:12 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-21  1:12 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/2537

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        c34e87146628a14cf662dca46aac893d06502f52

Subject of commit:
        Implement complex arithmetic

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/c3/c34e87146628a14cf662dca46aac893d06502f52//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/c34e87146628a14cf662dca46aac893d06502f52//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-15  4:22 [binutils-gdb] Move Rust union tests to new file gdb-buildbot
@ 2020-04-20 13:34 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-20 13:34 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/2532

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        3d1cfd43bec7c22928d12ab235151b8eeeaf4e96

Subject of commit:
        Move Rust union tests to new file

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/3d/3d1cfd43bec7c22928d12ab235151b8eeeaf4e96//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/3d/3d1cfd43bec7c22928d12ab235151b8eeeaf4e96//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-14  3:40 [binutils-gdb] Arm: Fix thumb2 PLT branch offsets gdb-buildbot
@ 2020-04-19 16:53 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-19 16:53 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/2523

Author:
        Tamar Christina <tamar.christina@arm.com>

Commit tested:
        15ccbdd717530f81f545a716f0df1de62aee1157

Subject of commit:
        Arm: Fix thumb2 PLT branch offsets.

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: pc after stepi matches insn addr after syscall
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 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/Ubuntu-Aarch64-native-gdbserver-m64/15/15ccbdd717530f81f545a716f0df1de62aee1157//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/15/15ccbdd717530f81f545a716f0df1de62aee1157//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-14  0:57 [binutils-gdb] include: Sync plugin-api.h with GCC gdb-buildbot
@ 2020-04-19 14:35 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-19 14:35 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/2522

Author:
        Martin Liska <mliska@suse.cz>

Commit tested:
        40bd13ced9c03c74af9d55a98d6e06ddcf11429c

Subject of commit:
        include: Sync plugin-api.h with GCC

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/40/40bd13ced9c03c74af9d55a98d6e06ddcf11429c//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/40/40bd13ced9c03c74af9d55a98d6e06ddcf11429c//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-13  6:31 [binutils-gdb] tekhex: Uninitialised read gdb-buildbot
@ 2020-04-18 21:47 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-18 21: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/2515

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        b3b360dec78845e30e7994cd633905da5668a96c

Subject of commit:
        tekhex: Uninitialised read

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

*** 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
==============================================

*** 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/b3/b3b360dec78845e30e7994cd633905da5668a96c//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/b3/b3b360dec78845e30e7994cd633905da5668a96c//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-12 22:23 [binutils-gdb] Fix objcopy's --preserve-dates command line option so that it will work with PE format files gdb-buildbot
@ 2020-04-18 13:03 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-18 13: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/2511

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        00386881a3d0f7ac89fcc5cc912da8cd69c04324

Subject of commit:
        Fix objcopy's --preserve-dates command line option so that it will work with PE format files.

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

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/gdb-caching-proc.exp: show print elements
==============================================

*** 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/00/00386881a3d0f7ac89fcc5cc912da8cd69c04324//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/00/00386881a3d0f7ac89fcc5cc912da8cd69c04324//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-12 14:39 [binutils-gdb] Add low_new_clone method to linux_nat_target gdb-buildbot
@ 2020-04-18  6:13 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-18  6:13 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/2508

Author:
        Pedro Franco de Carvalho <pedromfc@linux.ibm.com>

Commit tested:
        1310c1b066d4a7b0ce48ad55103a8d559a37ace1

Subject of commit:
        Add low_new_clone method to linux_nat_target.

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/13/1310c1b066d4a7b0ce48ad55103a8d559a37ace1//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/13/1310c1b066d4a7b0ce48ad55103a8d559a37ace1//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-12 11:59 [binutils-gdb] [gdb/testsuite] Fix c-linkage-name.exp with {cc-with-gdb-index, readnow}.exp gdb-buildbot
@ 2020-04-18  3:56 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-18  3:56 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/2507

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        c0502da6886e27f344375e471d6a7610a008c404

Subject of commit:
        [gdb/testsuite] Fix c-linkage-name.exp with {cc-with-gdb-index,readnow}.exp

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: pc after stepi matches insn addr after syscall
==============================================

*** 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/c0/c0502da6886e27f344375e471d6a7610a008c404//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/c0/c0502da6886e27f344375e471d6a7610a008c404//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-12  9:56 [binutils-gdb] PR25745, powerpc64-ld overflows string buffer in --stats mode gdb-buildbot
@ 2020-04-18  1:38 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-18  1:38 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/2506

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        988b7300bc990abafd982bdcd217c58bc1e0679a

Subject of commit:
        PR25745, powerpc64-ld overflows string buffer in --stats mode

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/98/988b7300bc990abafd982bdcd217c58bc1e0679a//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/98/988b7300bc990abafd982bdcd217c58bc1e0679a//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-11 14:29 [binutils-gdb] Fix comment in dwarf2/attribute.h gdb-buildbot
@ 2020-04-17  6:10 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-17  6:10 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/2501

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        4d1b9ab645d9ce72aad15011264dd9b2e52a57e8

Subject of commit:
        Fix comment in dwarf2/attribute.h

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: pc after stepi matches insn addr after syscall
==============================================

*** 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/4d/4d1b9ab645d9ce72aad15011264dd9b2e52a57e8//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/4d/4d1b9ab645d9ce72aad15011264dd9b2e52a57e8//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-11 12:24 [binutils-gdb] Fix formatting of read_attribute_reprocess gdb-buildbot
@ 2020-04-17  3:52 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-17  3:52 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/2500

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        f1749218ff325e2074583fa7d7caf9ee09a1feb8

Subject of commit:
        Fix formatting of read_attribute_reprocess

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/f1/f1749218ff325e2074583fa7d7caf9ee09a1feb8//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/f1/f1749218ff325e2074583fa7d7caf9ee09a1feb8//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-11 10:01 [binutils-gdb] Always fix system DLL paths for 32bit programs gdb-buildbot
@ 2020-04-17  1:35 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-17  1:35 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/2499

Author:
        Hannes Domani <ssbssa@yahoo.de>

Commit tested:
        ebea76263935aba585f8f8b1d27b13737e231eec

Subject of commit:
        Always fix system DLL paths for 32bit programs

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/eb/ebea76263935aba585f8f8b1d27b13737e231eec//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/eb/ebea76263935aba585f8f8b1d27b13737e231eec//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-11  5:22 [binutils-gdb] Support AT_BSDFLAGS on FreeBSD gdb-buildbot
@ 2020-04-16 20:59 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-16 20:59 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/2497

Author:
        John Baldwin <jhb@FreeBSD.org>

Commit tested:
        a879b4d5a683f8dbebae8cf98297ee4a2db2e9e1

Subject of commit:
        Support AT_BSDFLAGS on FreeBSD.

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/a8/a879b4d5a683f8dbebae8cf98297ee4a2db2e9e1//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/a8/a879b4d5a683f8dbebae8cf98297ee4a2db2e9e1//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-11  2:49 [binutils-gdb] Change two functions to be methods on struct attribute gdb-buildbot
@ 2020-04-16 18:41 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-16 18:41 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/2496

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        0826b30a9fa085ccee574465523d0560a4a01198

Subject of commit:
        Change two functions to be methods on struct attribute

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/08/0826b30a9fa085ccee574465523d0560a4a01198//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/08/0826b30a9fa085ccee574465523d0560a4a01198//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-11  0:00 [binutils-gdb] Move DWARF-constant stringifying code to new file gdb-buildbot
@ 2020-04-16 16:23 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-16 16:23 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/2495

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        2b2558bfacba3813863da6728c021eb89fa34677

Subject of commit:
        Move DWARF-constant stringifying code to new file

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: pc after stepi matches insn addr after syscall
==============================================

*** 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/2b/2b2558bfacba3813863da6728c021eb89fa34677//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/2b/2b2558bfacba3813863da6728c021eb89fa34677//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-10 21:07 [binutils-gdb] Rewrite new die_info methods gdb-buildbot
@ 2020-04-16 14:00 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-16 14:00 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/2494

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        eeb647814fbfd71dddea45f36cb4847341f5cde7

Subject of commit:
        Rewrite new die_info methods

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/ee/eeb647814fbfd71dddea45f36cb4847341f5cde7//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/ee/eeb647814fbfd71dddea45f36cb4847341f5cde7//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-10 15:27 [binutils-gdb] Remove sibling_die gdb-buildbot
@ 2020-04-16  9:24 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-16  9:24 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/2492

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        436c571c6afc8c5affe36327ab363b98ec9adb2d

Subject of commit:
        Remove sibling_die

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
==============================================

*** 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/43/436c571c6afc8c5affe36327ab363b98ec9adb2d//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/43/436c571c6afc8c5affe36327ab363b98ec9adb2d//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-10 12:55 [binutils-gdb] Change dwarf2_attr_no_follow to be a method gdb-buildbot
@ 2020-04-16  7:06 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-16  7:06 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/2491

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        052c8bb83a515768cd6af2f3707b6e05854cac54

Subject of commit:
        Change dwarf2_attr_no_follow to be a method

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: pc after stepi matches insn addr after syscall
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/Ubuntu-Aarch64-native-gdbserver-m64/05/052c8bb83a515768cd6af2f3707b6e05854cac54//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/05/052c8bb83a515768cd6af2f3707b6e05854cac54//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-10 11:01 [binutils-gdb] Remove dwarf2_cu::base_known gdb-buildbot
@ 2020-04-16  4:47 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-16  4: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/2490

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        2b24b6e4a6d03efc3e76ce6912394e4a86cc387b

Subject of commit:
        Remove dwarf2_cu::base_known

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/2b/2b24b6e4a6d03efc3e76ce6912394e4a86cc387b//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/2b/2b24b6e4a6d03efc3e76ce6912394e4a86cc387b//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-10  0:04 [binutils-gdb] Trivial fix in dwarf_decode_macro_bytes gdb-buildbot
@ 2020-04-15 19:37 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-15 19:37 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/2486

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        2ef46c2fbbd18c3f411ef294c2c6694a1308a5a5

Subject of commit:
        Trivial fix in dwarf_decode_macro_bytes

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/2e/2ef46c2fbbd18c3f411ef294c2c6694a1308a5a5//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/2e/2ef46c2fbbd18c3f411ef294c2c6694a1308a5a5//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-09 22:15 [binutils-gdb] Use a const dwarf2_section_info in macro reader gdb-buildbot
@ 2020-04-15 17:19 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-15 17:19 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/2485

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        4f9c1eda9ffc161015b6d9cc6dc958b67de680e6

Subject of commit:
        Use a const dwarf2_section_info in macro reader

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/4f/4f9c1eda9ffc161015b6d9cc6dc958b67de680e6//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/4f/4f9c1eda9ffc161015b6d9cc6dc958b67de680e6//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-09 11:35 [binutils-gdb] Convert dwarf2_section_buffer_overflow_complaint to a method gdb-buildbot
@ 2020-04-15  5:53 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-15  5:53 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/2480

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        a0194fa8f23c64bef0f4b4bb4a76e9c64f003169

Subject of commit:
        Convert dwarf2_section_buffer_overflow_complaint to a method

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/a0/a0194fa8f23c64bef0f4b4bb4a76e9c64f003169//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/a0/a0194fa8f23c64bef0f4b4bb4a76e9c64f003169//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-09  9:47 [binutils-gdb] Move dwarf2_section_buffer_overflow_complaint to dwarf2/section.c gdb-buildbot
@ 2020-04-15  3:35 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-15  3:35 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/2479

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        3d27bbdb4bc02968ffd86c6b5c331d0e04bc3ed9

Subject of commit:
        Move dwarf2_section_buffer_overflow_complaint to dwarf2/section.c

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
==============================================

*** 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/3d/3d27bbdb4bc02968ffd86c6b5c331d0e04bc3ed9//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/3d/3d27bbdb4bc02968ffd86c6b5c331d0e04bc3ed9//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-09  5:29 [binutils-gdb] Change dwarf_decode_macro_bytes calling convention gdb-buildbot
@ 2020-04-14 23:00 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-14 23:00 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/2477

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        bf80d710525ba743d0046bf1f9cab6a019d7c616

Subject of commit:
        Change dwarf_decode_macro_bytes calling convention

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 3
==============================================

*** 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/bf/bf80d710525ba743d0046bf1f9cab6a019d7c616//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/bf/bf80d710525ba743d0046bf1f9cab6a019d7c616//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-09  1:52 [binutils-gdb] Introduce dwarf2/dwz.h gdb-buildbot
@ 2020-04-14 18:24 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-14 18:24 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/2475

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        9fda78b61127cbcf718104b7e5a78cf137c07836

Subject of commit:
        Introduce dwarf2/dwz.h

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
==============================================

*** 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/9f/9fda78b61127cbcf718104b7e5a78cf137c07836//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/9f/9fda78b61127cbcf718104b7e5a78cf137c07836//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-08 23:51 [binutils-gdb] Revert earlier delta adding bfd_coff_get_internal_extra_pe_aouthdr() function gdb-buildbot
@ 2020-04-14 16:05 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-14 16:05 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/2474

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        aa49fc22c13a685452a2073e252d8b34ecbcc012

Subject of commit:
        Revert earlier delta adding bfd_coff_get_internal_extra_pe_aouthdr() function.

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/aa/aa49fc22c13a685452a2073e252d8b34ecbcc012//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/aa/aa49fc22c13a685452a2073e252d8b34ecbcc012//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-08 18:50 [binutils-gdb] Re: i386msdos uninitialised read gdb-buildbot
@ 2020-04-14 11:28 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-14 11:28 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/2472

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        ff7685105468702de87b75599b1ea88cc309541c

Subject of commit:
        Re: i386msdos uninitialised read

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
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/Ubuntu-Aarch64-native-gdbserver-m64/ff/ff7685105468702de87b75599b1ea88cc309541c//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/ff/ff7685105468702de87b75599b1ea88cc309541c//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-08 17:03 [binutils-gdb] Re: ARC: Use of uninitialised value gdb-buildbot
@ 2020-04-14  9:10 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-14  9:10 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/2471

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        4c4addbe57711f1cdbb72305b8cbd03a68ae2e34

Subject of commit:
        Re: ARC: Use of uninitialised value

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
==============================================

*** 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/4c/4c4addbe57711f1cdbb72305b8cbd03a68ae2e34//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/4c/4c4addbe57711f1cdbb72305b8cbd03a68ae2e34//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-08 10:50 [binutils-gdb] Fix WOW64 process system DLL paths gdb-buildbot
@ 2020-04-14  2:17 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-14  2:17 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/2468

Author:
        Hannes Domani <ssbssa@yahoo.de>

Commit tested:
        d503b685c6b7384b389767d5153235039e2b8fc4

Subject of commit:
        Fix WOW64 process system DLL paths

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/d5/d503b685c6b7384b389767d5153235039e2b8fc4//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/d5/d503b685c6b7384b389767d5153235039e2b8fc4//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-08  9:01 [binutils-gdb] Add a new function to the BFD library to allow users access to the COFF internal_extra_pe_outhdr structure gdb-buildbot
@ 2020-04-13 23:59 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-13 23:59 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/2467

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        aac88046e6cccf13fc408fc4e515aaf2548fe898

Subject of commit:
        Add a new function to the BFD library to allow users access to the COFF internal_extra_pe_outhdr structure.

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/aa/aac88046e6cccf13fc408fc4e515aaf2548fe898//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/aa/aac88046e6cccf13fc408fc4e515aaf2548fe898//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-08  6:42 [binutils-gdb] [gdb] Print user/includes fields for maint commands gdb-buildbot
@ 2020-04-13 21:41 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-13 21:41 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/2466

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        7b1eff95bed765cb20dd3168cb99896a91fcdca7

Subject of commit:
        [gdb] Print user/includes fields for maint commands

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
==============================================

*** 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/7b/7b1eff95bed765cb20dd3168cb99896a91fcdca7//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/7b/7b1eff95bed765cb20dd3168cb99896a91fcdca7//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-07 14:06 [binutils-gdb] Fix assertion failure in the BFD library when linking with --emit-relocs enabled gdb-buildbot
@ 2020-04-13  3:15 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-13  3:15 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/2458

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        ec2e748ad396c868839c977aa27d0333eb085970

Subject of commit:
        Fix assertion failure in the BFD library when linking with --emit-relocs enabled.

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 4
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
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/Ubuntu-Aarch64-native-gdbserver-m64/ec/ec2e748ad396c868839c977aa27d0333eb085970//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/ec/ec2e748ad396c868839c977aa27d0333eb085970//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-07 12:06 [binutils-gdb] bfd: Change num_group to unsigned int gdb-buildbot
@ 2020-04-13  0:57 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-13  0:57 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/2457

Author:
        H.J. Lu <hjl.tools@gmail.com>

Commit tested:
        cda7e5603f6efd7c3716e45cc6ea11b70dd8daae

Subject of commit:
        bfd: Change num_group to unsigned int

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================

*** 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/cd/cda7e5603f6efd7c3716e45cc6ea11b70dd8daae//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/cd/cda7e5603f6efd7c3716e45cc6ea11b70dd8daae//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-07  8:07 [binutils-gdb] bfd: Display symbol version for nm -D gdb-buildbot
@ 2020-04-12 20:21 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-12 20:21 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/2455

Author:
        H.J. Lu <hjl.tools@gmail.com>

Commit tested:
        7e6e972f74aeac0ebdbd95a7f905d871cd2581de

Subject of commit:
        bfd: Display symbol version for nm -D

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
==============================================

*** 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/7e/7e6e972f74aeac0ebdbd95a7f905d871cd2581de//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/7e/7e6e972f74aeac0ebdbd95a7f905d871cd2581de//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-06 20:12 [binutils-gdb] gdb/testsuite: Remove hard coded addresses from expected results gdb-buildbot
@ 2020-04-12  6:31 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-12  6:31 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/2449

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        5935fd15306c26ead8274cbeab3287770f2ac92a

Subject of commit:
        gdb/testsuite: Remove hard coded addresses from expected results

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/59/5935fd15306c26ead8274cbeab3287770f2ac92a//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/59/5935fd15306c26ead8274cbeab3287770f2ac92a//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-06 13:12 [binutils-gdb] ARC: Use of uninitialised value gdb-buildbot
@ 2020-04-11 23:38 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-11 23:38 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/2446

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        beea5cc1bc2249389dc77ea0c86ab82dafd05bb5

Subject of commit:
        ARC: Use of uninitialised value

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/be/beea5cc1bc2249389dc77ea0c86ab82dafd05bb5//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/be/beea5cc1bc2249389dc77ea0c86ab82dafd05bb5//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-06 11:24 [binutils-gdb] NS32K arg_bufs uninitialised gdb-buildbot
@ 2020-04-11 21:20 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-11 21:20 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/2445

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        03704c7704870a0e6cbb0eae99488d544c4adb30

Subject of commit:
        NS32K arg_bufs uninitialised

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: save a corefile
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 3
==============================================

*** 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/03/03704c7704870a0e6cbb0eae99488d544c4adb30//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/03/03704c7704870a0e6cbb0eae99488d544c4adb30//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-05 21:48 [binutils-gdb] Make dwarf2_evaluate_property parameter const gdb-buildbot
@ 2020-04-11  4:08 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-11  4:08 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/2441

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        fe26d3a34a223a86fddb59ed70a621a13940a088

Subject of commit:
        Make dwarf2_evaluate_property parameter const

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/fe/fe26d3a34a223a86fddb59ed70a621a13940a088//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/fe/fe26d3a34a223a86fddb59ed70a621a13940a088//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-05 14:12 [binutils-gdb] Fix assert in c-exp.y gdb-buildbot
@ 2020-04-10 18:57 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-10 18:57 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/2437

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        f7d4f0b1b9519fa10eb04cb195bdf7b5044d73c7

Subject of commit:
        Fix assert in c-exp.y

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
==============================================

*** 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/f7/f7d4f0b1b9519fa10eb04cb195bdf7b5044d73c7//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/f7/f7d4f0b1b9519fa10eb04cb195bdf7b5044d73c7//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-05 11:56 [binutils-gdb] Avoid stringop-truncation errors gdb-buildbot
@ 2020-04-10 16:39 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-10 16:39 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/2436

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        f67210ff1c4200ea668189d086c6b39145cd876f

Subject of commit:
        Avoid stringop-truncation errors

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
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/Ubuntu-Aarch64-native-gdbserver-m64/f6/f67210ff1c4200ea668189d086c6b39145cd876f//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/f6/f67210ff1c4200ea668189d086c6b39145cd876f//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-05 10:19 [binutils-gdb] Fix column alignment in "maint info line-table" gdb-buildbot
@ 2020-04-10 14:21 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-10 14:21 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/2435

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        1773be9ea2207d42442222e6dc3c8fdbe638e28e

Subject of commit:
        Fix column alignment in "maint info line-table"

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/17/1773be9ea2207d42442222e6dc3c8fdbe638e28e//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/17/1773be9ea2207d42442222e6dc3c8fdbe638e28e//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-04 20:31 [binutils-gdb] plugin: Use LDPT_ADD_SYMBOLS_V2 to get symbol type gdb-buildbot
@ 2020-04-09 22:18 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-09 22:18 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/2428

Author:
        H.J. Lu <hjl.tools@gmail.com>

Commit tested:
        c3a1714ce7806002726a60c0db09371425fe3097

Subject of commit:
        plugin: Use LDPT_ADD_SYMBOLS_V2 to get symbol type

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 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/Ubuntu-Aarch64-native-gdbserver-m64/c3/c3a1714ce7806002726a60c0db09371425fe3097//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/c3a1714ce7806002726a60c0db09371425fe3097//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-04 15:03 [binutils-gdb] NDS32 disassembly of odd sized sections gdb-buildbot
@ 2020-04-09 15:25 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-09 15:25 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/2425

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        fe90ae8a9f54e4fe8b9089fed48b0e1818414f57

Subject of commit:
        NDS32 disassembly of odd sized sections

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
==============================================

*** 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/fe/fe90ae8a9f54e4fe8b9089fed48b0e1818414f57//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/fe/fe90ae8a9f54e4fe8b9089fed48b0e1818414f57//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-04 12:57 [binutils-gdb] PowerPC disassembly of odd sized sections gdb-buildbot
@ 2020-04-09 13:06 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-09 13:06 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/2424

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        833d919c93d52644173d587a6fc8e4dd36edc49e

Subject of commit:
        PowerPC disassembly of odd sized sections

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/83/833d919c93d52644173d587a6fc8e4dd36edc49e//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/83/833d919c93d52644173d587a6fc8e4dd36edc49e//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-04  3:39 [binutils-gdb] [AArch64] When unavailable, fetch VG from ptrace gdb-buildbot
@ 2020-04-09  1:38 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-09  1:38 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/2419

Author:
        Luis Machado <luis.machado@linaro.org>

Commit tested:
        2d07da271eee9a83a1f5c975204d7d6dfd66fe1f

Subject of commit:
        [AArch64] When unavailable, fetch VG from ptrace.

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
==============================================

*** 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/2d/2d07da271eee9a83a1f5c975204d7d6dfd66fe1f//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/2d/2d07da271eee9a83a1f5c975204d7d6dfd66fe1f//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-03 18:52 [binutils-gdb] gdb/testsuite/fortran: Add mixed language stack test gdb-buildbot
@ 2020-04-08 16:07 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-08 16:07 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/2415

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        6b8c53f2f1c0cf5bee46120d892d4c72571375eb

Subject of commit:
        gdb/testsuite/fortran: Add mixed language stack test

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
==============================================

*** 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/6b/6b8c53f2f1c0cf5bee46120d892d4c72571375eb//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/6b/6b8c53f2f1c0cf5bee46120d892d4c72571375eb//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-03 14:34 [binutils-gdb] gdb: Restructure the completion_tracker class gdb-buildbot
@ 2020-04-08 11:32 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-08 11:32 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/2413

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        724fd9ba432a20ef2e3f2c0d6060bff131226816

Subject of commit:
        gdb: Restructure the completion_tracker class

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/completion.exp: complete 'info registers '
==============================================

*** 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/72/724fd9ba432a20ef2e3f2c0d6060bff131226816//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/72/724fd9ba432a20ef2e3f2c0d6060bff131226816//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-03 12:47 [binutils-gdb] [gdb/testsuite] Fix gdb.opt/inline-locals.exp KFAILs gdb-buildbot
@ 2020-04-08  9:14 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-08  9:14 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/2412

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        d8c8b84859d057c58c901c08367ecc9f8a9f09dc

Subject of commit:
        [gdb/testsuite] Fix gdb.opt/inline-locals.exp KFAILs

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
KPASS -> KFAIL: gdb.opt/inline-locals.exp: info locals above bar 2
==============================================

*** 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/d8/d8c8b84859d057c58c901c08367ecc9f8a9f09dc//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/d8/d8c8b84859d057c58c901c08367ecc9f8a9f09dc//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-03 10:27 [binutils-gdb] Additional c99 elfxx-riscv.c fix gdb-buildbot
@ 2020-04-08  6:57 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-08  6:57 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/2411

Author:
        Sebastian Huber <sebastian.huber@embedded-brains.de>

Commit tested:
        effc14f54c3fdcb700f22ce53cef97665c0fdf7f

Subject of commit:
        Additional c99 elfxx-riscv.c fix

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
==============================================

*** 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/ef/effc14f54c3fdcb700f22ce53cef97665c0fdf7f//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/ef/effc14f54c3fdcb700f22ce53cef97665c0fdf7f//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-03  8:41 [binutils-gdb] [gdb/testsuite] Add test-case gdb.dwarf2/break-inline-psymtab.exp gdb-buildbot
@ 2020-04-08  4:39 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-08  4:39 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/2410

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        a9933ccf467ac771747db9dba541afdf1b72a3f8

Subject of commit:
        [gdb/testsuite] Add test-case gdb.dwarf2/break-inline-psymtab.exp

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: pc after stepi matches insn addr after syscall
==============================================

*** 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/a9/a9933ccf467ac771747db9dba541afdf1b72a3f8//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/a9/a9933ccf467ac771747db9dba541afdf1b72a3f8//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-03  5:08 [binutils-gdb] Non-contiguous memory regions support: Avoid calls to abort gdb-buildbot
@ 2020-04-08  0:03 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-08  0: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/2408

Author:
        Christophe Lyon <christophe.lyon@linaro.org>

Commit tested:
        53215f214c61b850085196a8d69774eed026ecd9

Subject of commit:
        Non-contiguous memory regions support: Avoid calls to abort

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/53/53215f214c61b850085196a8d69774eed026ecd9//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/53/53215f214c61b850085196a8d69774eed026ecd9//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-02 11:48 [binutils-gdb] Replace a couple of assertions in the BFD library that can be triggered by attempts to parse corrupt input files gdb-buildbot
@ 2020-04-07  7:53 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-07  7:53 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/2401

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        327ef784ba105f067f5c1d587908259d7aabb971

Subject of commit:
        Replace a couple of assertions in the BFD library that can be triggered by attempts to parse corrupt input files.

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 3
==============================================

*** 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/32/327ef784ba105f067f5c1d587908259d7aabb971//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/32/327ef784ba105f067f5c1d587908259d7aabb971//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-02  5:35 [binutils-gdb] Add support for NetBSD threads in sh-nbsd-nat.c gdb-buildbot
@ 2020-04-07  0:59 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-07  0:59 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/2398

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        a225c9a8692814b4a29360479aee217d73e22d50

Subject of commit:
        Add support for NetBSD threads in sh-nbsd-nat.c

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: pc after stepi matches insn addr after syscall
==============================================

*** 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/a2/a225c9a8692814b4a29360479aee217d73e22d50//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/a2/a225c9a8692814b4a29360479aee217d73e22d50//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-02  3:22 [binutils-gdb] Inherit sh_nbsd_nat_target from nbsd_nat_target gdb-buildbot
@ 2020-04-06 22:41 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-06 22:41 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/2397

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        9809762324491b851332ce600ae9bde8dd34f601

Subject of commit:
        Inherit sh_nbsd_nat_target from nbsd_nat_target

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/98/9809762324491b851332ce600ae9bde8dd34f601//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/98/9809762324491b851332ce600ae9bde8dd34f601//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-02  1:33 [binutils-gdb] Include missing header to get missing declarations gdb-buildbot
@ 2020-04-06 20:24 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-06 20:24 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/2396

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        9e38d619101a7637c9aba3f722690bef127fa6a6

Subject of commit:
        Include missing header to get missing declarations

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
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/Ubuntu-Aarch64-native-gdbserver-m64/9e/9e38d619101a7637c9aba3f722690bef127fa6a6//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/9e/9e38d619101a7637c9aba3f722690bef127fa6a6//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-01 23:29 [binutils-gdb] Rewrite nbsd_nat_target::pid_to_exec_file to sysctl(3) gdb-buildbot
@ 2020-04-06 18:03 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-06 18: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/2395

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        a2ecbe9fb7355698aad97841f9717cdfd7096d95

Subject of commit:
        Rewrite nbsd_nat_target::pid_to_exec_file to sysctl(3)

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
==============================================

*** 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/a2/a2ecbe9fb7355698aad97841f9717cdfd7096d95//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/a2/a2ecbe9fb7355698aad97841f9717cdfd7096d95//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-01 21:17 [binutils-gdb] [gdb] Skip imports of c++ CUs gdb-buildbot
@ 2020-04-06 15:45 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-06 15:45 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/2394

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        589902954da0d1dd140b33e578954746c9bfc374

Subject of commit:
        [gdb] Skip imports of c++ CUs

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/58/589902954da0d1dd140b33e578954746c9bfc374//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/58/589902954da0d1dd140b33e578954746c9bfc374//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-01 19:29 [binutils-gdb] [gdb/testsuite] Give up after consecutive timeouts in completion-support.exp gdb-buildbot
@ 2020-04-06 13:27 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-06 13:27 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/2393

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        7325b16ba4dc33a54356fd2b8fde79311c51b121

Subject of commit:
        [gdb/testsuite] Give up after consecutive timeouts in completion-support.exp

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: pc after stepi matches insn addr after syscall
==============================================

*** 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/73/7325b16ba4dc33a54356fd2b8fde79311c51b121//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/73/7325b16ba4dc33a54356fd2b8fde79311c51b121//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-01 17:21 [binutils-gdb] Initialize base_value in pascal_object_print_value gdb-buildbot
@ 2020-04-06 11:09 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-06 11:09 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/2392

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        771dd3a88b1f0e03a110fc4f2207913df45f8b4b

Subject of commit:
        Initialize base_value in pascal_object_print_value

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/77/771dd3a88b1f0e03a110fc4f2207913df45f8b4b//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/77/771dd3a88b1f0e03a110fc4f2207913df45f8b4b//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-01 15:10 [binutils-gdb] arc: Migrate to new target features gdb-buildbot
@ 2020-04-06  8:51 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-06  8:51 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/2391

Author:
        Anton Kolesov <Anton.Kolesov@synopsys.com>

Commit tested:
        817a7585764366397879cbbedfd7e9c1454b656c

Subject of commit:
        arc: Migrate to new target features

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/81/817a7585764366397879cbbedfd7e9c1454b656c//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/81/817a7585764366397879cbbedfd7e9c1454b656c//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-01  6:45 [binutils-gdb] gdb: rename content of i386-windows-tdep.c, cygwin to windows gdb-buildbot
@ 2020-04-05 23:38 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-05 23:38 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/2387

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        5982a56ab9d161923e75712fcb358824748ea4ba

Subject of commit:
        gdb: rename content of i386-windows-tdep.c, cygwin to windows

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/59/5982a56ab9d161923e75712fcb358824748ea4ba//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/59/5982a56ab9d161923e75712fcb358824748ea4ba//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-04-01  2:03 [binutils-gdb] gdb: add Windows OS ABI gdb-buildbot
@ 2020-04-05 19:03 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-05 19: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/2385

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        053205cc4021026a5a1db05869d04bf7ad9ea1bd

Subject of commit:
        gdb: add Windows OS ABI

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/05/053205cc4021026a5a1db05869d04bf7ad9ea1bd//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/05/053205cc4021026a5a1db05869d04bf7ad9ea1bd//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-31 21:47 [binutils-gdb] gdb: recognize 64 bits Windows executables as Cygwin osabi gdb-buildbot
@ 2020-04-05 14:28 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-05 14:28 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/2383

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        cb9b645d3e6b6164317104ed1a2a41c06da37bf4

Subject of commit:
        gdb: recognize 64 bits Windows executables as Cygwin osabi

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: pc after stepi matches insn addr after syscall
PASS -> FAIL: gdb.trace/ftrace.exp: advance through tracing
==============================================

*** 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/cb/cb9b645d3e6b6164317104ed1a2a41c06da37bf4//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/cb/cb9b645d3e6b6164317104ed1a2a41c06da37bf4//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-31 18:35 [binutils-gdb] [gdb/testsuite] Add cache_verify option for gdb_caching_procs gdb-buildbot
@ 2020-04-05 12:10 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-05 12:10 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/2382

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        2f89101fe8b6a2423116a1ad1891f56bf6fc9510

Subject of commit:
        [gdb/testsuite] Add cache_verify option for gdb_caching_procs

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/2f/2f89101fe8b6a2423116a1ad1891f56bf6fc9510//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/2f/2f89101fe8b6a2423116a1ad1891f56bf6fc9510//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-31 15:09 [binutils-gdb] asan: alpha-vms: null dereference gdb-buildbot
@ 2020-04-05  7:35 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-05  7:35 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/2380

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        7bac4137d757be98de8f6f8d8a649f04cacfdd2f

Subject of commit:
        asan: alpha-vms: null dereference

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/7b/7bac4137d757be98de8f6f8d8a649f04cacfdd2f//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/7b/7bac4137d757be98de8f6f8d8a649f04cacfdd2f//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-31 10:34 [binutils-gdb] [gdb/testsuite] Fix check-read1 FAIL with gdb.base/maint.exp gdb-buildbot
@ 2020-04-05  2:59 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-05  2:59 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/2378

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        eaeaf44cfdc9a4096a0dd52fa0606f29d4bfd48e

Subject of commit:
        [gdb/testsuite] Fix check-read1 FAIL with gdb.base/maint.exp

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/ea/eaeaf44cfdc9a4096a0dd52fa0606f29d4bfd48e//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/ea/eaeaf44cfdc9a4096a0dd52fa0606f29d4bfd48e//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-30 21:33 [binutils-gdb] Add support for NetBSD threads in m68k-bsd-nat.c gdb-buildbot
@ 2020-04-04  9:49 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-04  9:49 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/2374

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        154151a6e303fa4b17e3597e3434a1c5999df8e1

Subject of commit:
        Add support for NetBSD threads in m68k-bsd-nat.c

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/15/154151a6e303fa4b17e3597e3434a1c5999df8e1//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/15/154151a6e303fa4b17e3597e3434a1c5999df8e1//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-30 17:17 [binutils-gdb] Inherit m68k_bsd_nat_target from nbsd_nat_target gdb-buildbot
@ 2020-04-04  5:13 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-04  5:13 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/2372

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        01a801176ea15ddfc988cade2e3d84c3b0abfec3

Subject of commit:
        Inherit m68k_bsd_nat_target from nbsd_nat_target

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 3
==============================================

*** 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/01/01a801176ea15ddfc988cade2e3d84c3b0abfec3//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/01/01a801176ea15ddfc988cade2e3d84c3b0abfec3//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-30 15:05 [binutils-gdb] Define _KERNTYPES in m68k-bsd-nat.c gdb-buildbot
@ 2020-04-04  2:55 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-04  2:55 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/2371

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        f90280caf5b34ebd564809a7f66685efc79bbf6d

Subject of commit:
        Define _KERNTYPES in m68k-bsd-nat.c

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
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/Ubuntu-Aarch64-native-gdbserver-m64/f9/f90280caf5b34ebd564809a7f66685efc79bbf6d//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/f9/f90280caf5b34ebd564809a7f66685efc79bbf6d//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-30 11:04 [binutils-gdb] Remove unused code from alpha-bsd-nat.c gdb-buildbot
@ 2020-04-03 22:19 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-03 22:19 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/2369

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        66eaca97ebd0f1b456ffe158fce73bafcce561bb

Subject of commit:
        Remove unused code from alpha-bsd-nat.c

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 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/Ubuntu-Aarch64-native-gdbserver-m64/66/66eaca97ebd0f1b456ffe158fce73bafcce561bb//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/66/66eaca97ebd0f1b456ffe158fce73bafcce561bb//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-30  3:21 [binutils-gdb] Add support for NetBSD threads in arm-nbsd-nat.c gdb-buildbot
@ 2020-04-03 13:07 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-03 13:07 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/2365

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        75c56d3d1298de72aa67555f2c723a80b4818e04

Subject of commit:
        Add support for NetBSD threads in arm-nbsd-nat.c

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/75/75c56d3d1298de72aa67555f2c723a80b4818e04//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/75/75c56d3d1298de72aa67555f2c723a80b4818e04//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-29 21:03 [binutils-gdb] Add support for threads in vax_bsd_nat_target gdb-buildbot
@ 2020-04-03  6:14 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-03  6:14 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/2362

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        6227b330d563add042066259e5f933c89a85b3b5

Subject of commit:
        Add support for threads in vax_bsd_nat_target

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/62/6227b330d563add042066259e5f933c89a85b3b5//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/62/6227b330d563add042066259e5f933c89a85b3b5//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-29  0:35 [binutils-gdb] Remove val_print gdb-buildbot
@ 2020-04-02  4:38 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-02  4:38 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/2351

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        426a9c18dddcdd5f640b702734dd8f9c108b7372

Subject of commit:
        Remove val_print

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
KFAIL -> KPASS: gdb.opt/inline-locals.exp: info locals above bar 2
KFAIL -> KPASS: gdb.opt/inline-locals.exp: info locals above bar 3
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
PASS -> FAIL: gdb.trace/unavailable.exp: unavailable arguments: ctf: info args
PASS -> FAIL: gdb.trace/unavailable.exp: unavailable arguments: info args
PASS -> FAIL: gdb.trace/unavailable.exp: unavailable arguments: tfile: info args
==============================================

*** 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/42/426a9c18dddcdd5f640b702734dd8f9c108b7372//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/42/426a9c18dddcdd5f640b702734dd8f9c108b7372//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-28 11:56 [binutils-gdb] Convert ada_val_print_ref to value-based API gdb-buildbot
@ 2020-04-01 17:02 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-01 17:02 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/2346

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        2e088f8b6ea61fa9db1b592cbd4a6aa80b4e0ab5

Subject of commit:
        Convert ada_val_print_ref to value-based API

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/2e/2e088f8b6ea61fa9db1b592cbd4a6aa80b4e0ab5//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/2e/2e088f8b6ea61fa9db1b592cbd4a6aa80b4e0ab5//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-28  8:03 [binutils-gdb] Rewrite ada_value_print_1 floating point case gdb-buildbot
@ 2020-04-01 12:27 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-01 12:27 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/2344

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        b9fa6e07980f901f2a3f99b7eed4356d3209a3c4

Subject of commit:
        Rewrite ada_value_print_1 floating point case

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
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/Ubuntu-Aarch64-native-gdbserver-m64/b9/b9fa6e07980f901f2a3f99b7eed4356d3209a3c4//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/b9/b9fa6e07980f901f2a3f99b7eed4356d3209a3c4//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-27 23:31 [binutils-gdb] Introduce cp_print_value gdb-buildbot
@ 2020-04-01  5:34 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-01  5:34 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/2341

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        fbf54e7554e0dcd60e18b1821c5c127fb3eb48ff

Subject of commit:
        Introduce cp_print_value

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
PASS -> FAIL: gdb.python/py-prettyprint.exp: c++: print derived
==============================================

*** 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/fb/fbf54e7554e0dcd60e18b1821c5c127fb3eb48ff//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/fb/fbf54e7554e0dcd60e18b1821c5c127fb3eb48ff//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-27 21:17 [binutils-gdb] Introduce cp_print_value_fields and c_value_print_struct gdb-buildbot
@ 2020-04-01  3:16 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-01  3:16 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/2340

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        64b653ca7058bfd4f91879dea628809d398b488e

Subject of commit:
        Introduce cp_print_value_fields and c_value_print_struct

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

*** 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/64/64b653ca7058bfd4f91879dea628809d398b488e//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/64/64b653ca7058bfd4f91879dea628809d398b488e//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-27 19:29 [binutils-gdb] Introduce c_value_print_array gdb-buildbot
@ 2020-04-01  0:58 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-04-01  0:58 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/2339

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        6999f067c1b30c1a2c3e41a0f68f74e459652560

Subject of commit:
        Introduce c_value_print_array

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

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> FAIL: gdb.trace/unavailable.exp: collect globals: <unavailable> is not the same as 0 in array element repetitions
PASS -> FAIL: gdb.trace/unavailable.exp: collect globals: ctf: <unavailable> is not the same as 0 in array element repetitions
PASS -> FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print *tarray@3
PASS -> FAIL: gdb.trace/unavailable.exp: collect globals: print *tarray@3
PASS -> FAIL: gdb.trace/unavailable.exp: collect globals: tfile: <unavailable> is not the same as 0 in array element repetitions
PASS -> FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print *tarray@3
==============================================

*** 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/69/6999f067c1b30c1a2c3e41a0f68f74e459652560//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/69/6999f067c1b30c1a2c3e41a0f68f74e459652560//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-27 15:14 [binutils-gdb] Introduce c_value_print_int gdb-buildbot
@ 2020-03-31 18:04 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-31 18:04 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/2336

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        2faac269d59e57a49cd9f9209e1d39e03e2744bc

Subject of commit:
        Introduce c_value_print_int

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/2f/2faac269d59e57a49cd9f9209e1d39e03e2744bc//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/2f/2faac269d59e57a49cd9f9209e1d39e03e2744bc//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-27 13:09 [binutils-gdb] Introduce c_value_print_ptr gdb-buildbot
@ 2020-03-31 15:47 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-31 15: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/2335

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        da3e2c2923b5c16c47c962bc53ea96678ca6a0e5

Subject of commit:
        Introduce c_value_print_ptr

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

*** 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/da/da3e2c2923b5c16c47c962bc53ea96678ca6a0e5//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/da/da3e2c2923b5c16c47c962bc53ea96678ca6a0e5//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-27 11:02 [binutils-gdb] Rewrite c_value_print_inner gdb-buildbot
@ 2020-03-31 13:33 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-31 13:33 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/2334

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        5083623134c2ac383a8d8412b6d3c530452fda51

Subject of commit:
        Rewrite c_value_print_inner

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.cp/virtbase.exp: print *
PASS -> FAIL: gdb.cp/virtbase.exp: print *this
==============================================

*** 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/50/5083623134c2ac383a8d8412b6d3c530452fda51//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/50/5083623134c2ac383a8d8412b6d3c530452fda51//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-27  2:43 [binutils-gdb] Introduce generic_value_print_int gdb-buildbot
@ 2020-03-31  4:23 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-31  4:23 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/2330

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        fdddfccba1cc4f70089873441b7e6c38de09ae37

Subject of commit:
        Introduce generic_value_print_int

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_BIT_AND_A::operator&"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_BIT_AND_A::operator&"
==============================================

*** 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/fd/fdddfccba1cc4f70089873441b7e6c38de09ae37//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/fd/fdddfccba1cc4f70089873441b7e6c38de09ae37//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-27  0:56 [binutils-gdb] Introduce generic_value_print_bool gdb-buildbot
@ 2020-03-31  2:06 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-31  2:06 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/2329

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        6dde752183769c712eb22f49a5b74bfadad4a6be

Subject of commit:
        Introduce generic_value_print_bool

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/6d/6dde752183769c712eb22f49a5b74bfadad4a6be//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/6d/6dde752183769c712eb22f49a5b74bfadad4a6be//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-26 18:28 [binutils-gdb] Fix generic_val_print_enum for value-based printing gdb-buildbot
@ 2020-03-30 19:12 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-30 19:12 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/2326

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        40f3ce189e3c16398f2e56442e6d8db5573587ee

Subject of commit:
        Fix generic_val_print_enum for value-based printing

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

*** 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/40/40f3ce189e3c16398f2e56442e6d8db5573587ee//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/40/40f3ce189e3c16398f2e56442e6d8db5573587ee//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-26  2:22 [binutils-gdb] Convert Go printing to value-based API gdb-buildbot
@ 2020-03-30  0:48 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-30  0:48 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/2318

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        23b0f06be43054a9b182e7ea60a763c35302924a

Subject of commit:
        Convert Go printing to value-based API

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/23/23b0f06be43054a9b182e7ea60a763c35302924a//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/23/23b0f06be43054a9b182e7ea60a763c35302924a//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-25 21:06 [binutils-gdb] Introduce ada_value_print_inner gdb-buildbot
@ 2020-03-29 20:13 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-29 20:13 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/2316

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        26792ee0345c09bd1c76f3ee0e16ed15ab7215b9

Subject of commit:
        Introduce ada_value_print_inner

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: server exits
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/Ubuntu-Aarch64-native-gdbserver-m64/26/26792ee0345c09bd1c76f3ee0e16ed15ab7215b9//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/26/26792ee0345c09bd1c76f3ee0e16ed15ab7215b9//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-25 14:14 [binutils-gdb] Introduce m2_value_print_inner gdb-buildbot
@ 2020-03-29 11:03 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-29 11: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/2312

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        62c4663d3c59b53e622b2f83eeae7c8d47c656dd

Subject of commit:
        Introduce m2_value_print_inner

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/62/62c4663d3c59b53e622b2f83eeae7c8d47c656dd//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/62/62c4663d3c59b53e622b2f83eeae7c8d47c656dd//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-25  8:18 [binutils-gdb] Simplify c_val_print_array gdb-buildbot
@ 2020-03-29  4:10 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-29  4:10 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/2309

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        7fe471e9ae8dbc61b898f7572fed31c4224a0b89

Subject of commit:
        Simplify c_val_print_array

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/7f/7fe471e9ae8dbc61b898f7572fed31c4224a0b89//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/7f/7fe471e9ae8dbc61b898f7572fed31c4224a0b89//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-25  4:41 [binutils-gdb] Two simple uses of value_print_scalar_formatted gdb-buildbot
@ 2020-03-28 23:35 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-28 23:35 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/2307

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        4dba70eee1fadcb3c1bb50ba17e0fe3512c84180

Subject of commit:
        Two simple uses of value_print_scalar_formatted

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/4d/4dba70eee1fadcb3c1bb50ba17e0fe3512c84180//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/4d/4dba70eee1fadcb3c1bb50ba17e0fe3512c84180//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-24 20:04 [binutils-gdb] Use common_val_print in c-valprint.c gdb-buildbot
@ 2020-03-28 12:05 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-28 12:05 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/2302

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        a1f6a07c3d1d3a34d36d4e49f0fd3c66554e41b2

Subject of commit:
        Use common_val_print in c-valprint.c

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

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/printcmds.exp: print teststring2
==============================================

*** 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/a1/a1f6a07c3d1d3a34d36d4e49f0fd3c66554e41b2//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/a1/a1f6a07c3d1d3a34d36d4e49f0fd3c66554e41b2//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-24 14:16 [binutils-gdb] Use common_val_print in f-valprint.c gdb-buildbot
@ 2020-03-28  7:30 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-28  7:30 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/2300

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        72a45c938438f33bf8e7de6a5f068ba31c8c1e36

Subject of commit:
        Use common_val_print in f-valprint.c

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: server exits
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/Ubuntu-Aarch64-native-gdbserver-m64/72/72a45c938438f33bf8e7de6a5f068ba31c8c1e36//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/72/72a45c938438f33bf8e7de6a5f068ba31c8c1e36//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-24  8:13 [binutils-gdb] Use common_val_print in infcmd.c gdb-buildbot
@ 2020-03-27 22:19 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-27 22:19 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/2296

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        3444c526a33e61aeff86cbe1184e765458007890

Subject of commit:
        Use common_val_print in infcmd.c

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/34/3444c526a33e61aeff86cbe1184e765458007890//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/34/3444c526a33e61aeff86cbe1184e765458007890//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-23 19:49 [binutils-gdb] Register NT_NETBSDCORE_AUXV (NetBSD-Core) gdb-buildbot
@ 2020-03-27  8:29 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-27  8:29 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/2290

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        9fcbd8a90a92bf303c41be816040789e1ed6cf4e

Subject of commit:
        Register NT_NETBSDCORE_AUXV (NetBSD-Core)

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/9f/9fcbd8a90a92bf303c41be816040789e1ed6cf4e//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/9f/9fcbd8a90a92bf303c41be816040789e1ed6cf4e//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-23 14:06 [binutils-gdb] [gdb/testsuite] Fix buffer full errors in gdb.mi/mi-sym-info.exp gdb-buildbot
@ 2020-03-27  1:39 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-27  1:39 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/2287

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        2d61316c32a9fa3e14786c3312d9ca87c9298db5

Subject of commit:
        [gdb/testsuite] Fix buffer full errors in gdb.mi/mi-sym-info.exp

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
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=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/Ubuntu-Aarch64-native-gdbserver-m64/2d/2d61316c32a9fa3e14786c3312d9ca87c9298db5//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/2d/2d61316c32a9fa3e14786c3312d9ca87c9298db5//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-23  8:01 [binutils-gdb] x86-64: correct mis-named X86_64_0D enumerator gdb-buildbot
@ 2020-03-26 18:46 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-26 18:46 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/2284

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        1673df3278637a911b55983a92e4d1f61816e57c

Subject of commit:
        x86-64: correct mis-named X86_64_0D enumerator

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/16/1673df3278637a911b55983a92e4d1f61816e57c//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/16/1673df3278637a911b55983a92e4d1f61816e57c//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-23  5:54 [binutils-gdb] [gdb/symtab] Fix partial unit psymtabs gdb-buildbot
@ 2020-03-26 16:29 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-26 16:29 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/2283

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        96c7f873945c31bb0f9facd526bfe6dac74d3ccb

Subject of commit:
        [gdb/symtab] Fix partial unit psymtabs

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/96/96c7f873945c31bb0f9facd526bfe6dac74d3ccb//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/96/96c7f873945c31bb0f9facd526bfe6dac74d3ccb//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-23  1:42 [binutils-gdb] Fix several mix up between octets and bytes in ELF program headers gdb-buildbot
@ 2020-03-26 11:53 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-26 11:53 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/2281

Author:
        Christian Eggers <ceggers@gmx.de>

Commit tested:
        502794d4321dc17d5c9fb591bedc8761118b2943

Subject of commit:
        Fix several mix up between octets and bytes in ELF program headers

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

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/50/502794d4321dc17d5c9fb591bedc8761118b2943//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/50/502794d4321dc17d5c9fb591bedc8761118b2943//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-22 23:54 [binutils-gdb] [gdb/testsuite] Fix mi-sym-info.exp matching FAILs gdb-buildbot
@ 2020-03-26  9:35 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-26  9:35 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/2280

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        49ba92c0a6765ee7dc3a773c1a044680d29cee0e

Subject of commit:
        [gdb/testsuite] Fix mi-sym-info.exp matching FAILs

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

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/49/49ba92c0a6765ee7dc3a773c1a044680d29cee0e//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/49/49ba92c0a6765ee7dc3a773c1a044680d29cee0e//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-22 11:51 [binutils-gdb] Cast to bfd_vma in arm-tdep.c gdb-buildbot
@ 2020-03-25 17:32 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-25 17:32 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/2273

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        227031b2bf03e7735601845d6c420995740c8fca

Subject of commit:
        Cast to bfd_vma in arm-tdep.c

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 4
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
==============================================

*** 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/22/227031b2bf03e7735601845d6c420995740c8fca//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/22/227031b2bf03e7735601845d6c420995740c8fca//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-22 10:02 [binutils-gdb] Don't use sprintf_vma for CORE_ADDR gdb-buildbot
@ 2020-03-25 15:14 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-25 15:14 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/2272

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        53807e9f3d83bc0f67b9b9471cc60fb37182e5ab

Subject of commit:
        Don't use sprintf_vma for CORE_ADDR

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================

*** 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/53/53807e9f3d83bc0f67b9b9471cc60fb37182e5ab//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/53/53807e9f3d83bc0f67b9b9471cc60fb37182e5ab//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-22  8:15 [binutils-gdb] Fix CORE_ADDR size assertion in symfile-mem.c gdb-buildbot
@ 2020-03-25 12:57 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-25 12:57 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/2271

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        64f251023bcbd068861d4cb83b4e925083e0ea35

Subject of commit:
        Fix CORE_ADDR size assertion in symfile-mem.c

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/64/64f251023bcbd068861d4cb83b4e925083e0ea35//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/64/64f251023bcbd068861d4cb83b4e925083e0ea35//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-22  6:26 [binutils-gdb] gdb: use foreach_with_prefix in gdb.base/break-interp.exp gdb-buildbot
@ 2020-03-25 10:39 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-25 10:39 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/2270

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        3f512721a829ce7b2d38236917309a32f42faa99

Subject of commit:
        gdb: use foreach_with_prefix in gdb.base/break-interp.exp

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

*** 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/3f/3f512721a829ce7b2d38236917309a32f42faa99//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/3f/3f512721a829ce7b2d38236917309a32f42faa99//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-22  0:36 [binutils-gdb] Don't include selftests objects in build when unit tests are disabled gdb-buildbot
@ 2020-03-25  3:44 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-25  3:44 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/2267

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        74cd3f9d7e2bc82a295011230dc5261cd1129b4f

Subject of commit:
        Don't include selftests objects in build when unit tests are disabled

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: pc after stepi matches insn addr after syscall
==============================================

*** 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/74/74cd3f9d7e2bc82a295011230dc5261cd1129b4f//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/74/74cd3f9d7e2bc82a295011230dc5261cd1129b4f//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-21 22:48 [binutils-gdb] Move sourcing of development.sh to GDB_AC_COMMON gdb-buildbot
@ 2020-03-25  1:26 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-25  1:26 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/2266

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        db6878ac5538661c8d66c916a533bd4268217fcb

Subject of commit:
        Move sourcing of development.sh to GDB_AC_COMMON

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
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/db/db6878ac5538661c8d66c916a533bd4268217fcb//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/db/db6878ac5538661c8d66c916a533bd4268217fcb//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-21 17:14 [binutils-gdb] sim: ppc: netbsd: Sync signal names with NetBSD 9.99.49 gdb-buildbot
@ 2020-03-24 16:13 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-24 16:13 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/2262

Author:
        Kamil Rytarowski <n54@gmx.com>

Commit tested:
        7a20f753ef28251e4d3bca211e9ee338f67aa2a8

Subject of commit:
        sim: ppc: netbsd: Sync signal names with NetBSD 9.99.49

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 3
==============================================

*** 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/7a/7a20f753ef28251e4d3bca211e9ee338f67aa2a8//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/7a/7a20f753ef28251e4d3bca211e9ee338f67aa2a8//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-21  5:30 [binutils-gdb] [gdb/testsuite] Fix gdb.linespec/explicit.exp FAIL with glibc debug info gdb-buildbot
@ 2020-03-24  2:25 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-24  2:25 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/2256

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        9a2de3fc7f7c40da6e8d5553c29e6cb8a2430dc8

Subject of commit:
        [gdb/testsuite] Fix gdb.linespec/explicit.exp FAIL with glibc debug info

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: pc after stepi matches insn addr after syscall
==============================================

*** 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/9a/9a2de3fc7f7c40da6e8d5553c29e6cb8a2430dc8//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/9a/9a2de3fc7f7c40da6e8d5553c29e6cb8a2430dc8//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-21  3:19 [binutils-gdb] [gdb/testsuite] Use string_to_regexp on core filename in gdb_core_cmd gdb-buildbot
@ 2020-03-24  0:07 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-24  0:07 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/2255

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        3217502e1ba7409676e192100a0147a49dd5ae7a

Subject of commit:
        [gdb/testsuite] Use string_to_regexp on core filename in gdb_core_cmd

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/32/3217502e1ba7409676e192100a0147a49dd5ae7a//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/32/3217502e1ba7409676e192100a0147a49dd5ae7a//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-20 14:48 [binutils-gdb] [gdb/testsuite] Fix printf regexp in gdb.server/sysroot.exp gdb-buildbot
@ 2020-03-23 10:17 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-23 10:17 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/2249

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        f870f78fb2dc15cc5a4738d7ee592b39e2001c4e

Subject of commit:
        [gdb/testsuite] Fix printf regexp in gdb.server/sysroot.exp

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/f8/f870f78fb2dc15cc5a4738d7ee592b39e2001c4e//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/f8/f870f78fb2dc15cc5a4738d7ee592b39e2001c4e//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-20  7:30 [binutils-gdb] Mark discriminants as artificial in gdb.dwarf2/variant.exp gdb-buildbot
@ 2020-03-23  3:23 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-23  3:23 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/2246

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        976862ed563047be58effc4b02fe75ed064f77b7

Subject of commit:
        Mark discriminants as artificial in gdb.dwarf2/variant.exp

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/97/976862ed563047be58effc4b02fe75ed064f77b7//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/97/976862ed563047be58effc4b02fe75ed064f77b7//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-19 14:39 [binutils-gdb] [gdb/testsuite] Set EDITOR to true before using edit gdb-buildbot
@ 2020-03-22 13:36 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-22 13:36 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/2240

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        b76f3a42371cb0d83a1128a434852447da76b5e9

Subject of commit:
        [gdb/testsuite] Set EDITOR to true before using edit

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 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/Ubuntu-Aarch64-native-gdbserver-m64/b7/b76f3a42371cb0d83a1128a434852447da76b5e9//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/b7/b76f3a42371cb0d83a1128a434852447da76b5e9//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-18  8:37 [binutils-gdb] asan: wasm: Out-of-memory gdb-buildbot
@ 2020-03-21  3:07 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-21  3:07 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/2225

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        2f57795b8b3cb2c416e91a16bc932480248e30d7

Subject of commit:
        asan: wasm: Out-of-memory

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/2f/2f57795b8b3cb2c416e91a16bc932480248e30d7//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/2f/2f57795b8b3cb2c416e91a16bc932480248e30d7//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-17 21:13 [binutils-gdb] [gdb/testsuite] Fix testing build_executable result gdb-buildbot
@ 2020-03-20 10:31 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-20 10:31 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/2221

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        72fbdf834da070f900ecc078217f9011ee16d99e

Subject of commit:
        [gdb/testsuite] Fix testing build_executable result

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 3
==============================================

*** 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/72/72fbdf834da070f900ecc078217f9011ee16d99e//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/72/72fbdf834da070f900ecc078217f9011ee16d99e//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-17 17:06 [binutils-gdb] Remove some obsolete comments gdb-buildbot
@ 2020-03-20  5:54 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-20  5:54 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/2219

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        e8932576355851be8bac0b0b86a3be4f2005e47f

Subject of commit:
        Remove some obsolete comments

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/e8/e8932576355851be8bac0b0b86a3be4f2005e47f//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/e8/e8932576355851be8bac0b0b86a3be4f2005e47f//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-17  7:08 [binutils-gdb] [gdb] Remove trailing "done" after "Reading symbols from" message gdb-buildbot
@ 2020-03-19 13:44 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-19 13:44 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/2212

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        fd760e798eb8c325f0d7bab7ddcb74f64dc4c113

Subject of commit:
        [gdb] Remove trailing "done" after "Reading symbols from" message

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

*** 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/fd/fd760e798eb8c325f0d7bab7ddcb74f64dc4c113//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/fd/fd760e798eb8c325f0d7bab7ddcb74f64dc4c113//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-17  4:48 [binutils-gdb] gdbserver/gdbsupport: Add .dir-locals.el file gdb-buildbot
@ 2020-03-19 11:26 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-19 11:26 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/2211

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        20ea4a609c44e5795a57c7b409e99442f8a44a0d

Subject of commit:
        gdbserver/gdbsupport: Add .dir-locals.el file

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

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/gdb-caching-proc.exp: show print elements
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/20/20ea4a609c44e5795a57c7b409e99442f8a44a0d//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/20/20ea4a609c44e5795a57c7b409e99442f8a44a0d//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-17  0:36 [binutils-gdb] x86: reduce amount of various VCVT* templates gdb-buildbot
@ 2020-03-19  6:50 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-19  6:50 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/2209

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        bc49bfd849a9291b61bbe314505a35d07e130347

Subject of commit:
        x86: reduce amount of various VCVT* templates

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.trace/ftrace.exp: advance through tracing
==============================================

*** 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/bc/bc49bfd849a9291b61bbe314505a35d07e130347//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/bc/bc49bfd849a9291b61bbe314505a35d07e130347//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-16 20:38 [binutils-gdb] x86: don't accept FI{LD, STP, STTP}LL in Intel syntax mode gdb-buildbot
@ 2020-03-19  2:12 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-19  2:12 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/2207

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        672a349b01af9c566f0000e983ad96b8ba455b9a

Subject of commit:
        x86: don't accept FI{LD,STP,STTP}LL in Intel syntax mode

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 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/Ubuntu-Aarch64-native-gdbserver-m64/67/672a349b01af9c566f0000e983ad96b8ba455b9a//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/67/672a349b01af9c566f0000e983ad96b8ba455b9a//xfail.table.gz>



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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-16 18:49 [binutils-gdb] x86: replace NoRex64 on VEX-encoded insns gdb-buildbot
@ 2020-03-18 23:54 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-18 23:54 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/2206

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        4ed21b58d4b8331806b9e88da18898235942f425

Subject of commit:
        x86: replace NoRex64 on VEX-encoded insns

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

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/gdb-caching-proc.exp: show print elements
==============================================

*** 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/4e/4ed21b58d4b8331806b9e88da18898235942f425//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/4e/4ed21b58d4b8331806b9e88da18898235942f425//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-16  8:32 [binutils-gdb] bfd: xtensa: fix PR ld/25630 gdb-buildbot
@ 2020-03-18 12:23 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-18 12:23 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/2201

Author:
        Max Filippov <jcmvbkbc@gmail.com>

Commit tested:
        e15a8da9c71336b06cb5f2706c3f6b7e6ddd95a3

Subject of commit:
        bfd: xtensa: fix PR ld/25630

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/e1/e15a8da9c71336b06cb5f2706c3f6b7e6ddd95a3/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/gdb-caching-proc.exp: show print elements
==============================================

*** 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/e1/e15a8da9c71336b06cb5f2706c3f6b7e6ddd95a3//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/e1/e15a8da9c71336b06cb5f2706c3f6b7e6ddd95a3//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-15 18:34 [binutils-gdb] Introduce objfile::intern gdb-buildbot
@ 2020-03-17 20:14 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-17 20:14 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/2194

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        be1e3d3eab0af2a140463757a1ba3977167551af

Subject of commit:
        Introduce objfile::intern

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/be/be1e3d3eab0af2a140463757a1ba3977167551af/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/maint.exp: maint print statistics
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/be/be1e3d3eab0af2a140463757a1ba3977167551af//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/be/be1e3d3eab0af2a140463757a1ba3977167551af//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-15 16:46 [binutils-gdb] Make "gnutarget" const gdb-buildbot
@ 2020-03-17 17:56 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-17 17:56 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/2193

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        4e7625fde223fd0c98f09f41fe924e7317a82e1a

Subject of commit:
        Make "gnutarget" const

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/4e/4e7625fde223fd0c98f09f41fe924e7317a82e1a/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/4e/4e7625fde223fd0c98f09f41fe924e7317a82e1a//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/4e/4e7625fde223fd0c98f09f41fe924e7317a82e1a//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-15 10:43 [binutils-gdb] gdb.fortran: Allow Flang kind printing in fortran testing gdb-buildbot
@ 2020-03-17 11:00 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-17 11:00 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/2190

Author:
        Alok Kumar Sharma <AlokKumar.Sharma@amd.com>

Commit tested:
        0a709cba00d36d490482d0e8673e323ac1e897a6

Subject of commit:
        gdb.fortran: Allow Flang kind printing in fortran testing

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/0a/0a709cba00d36d490482d0e8673e323ac1e897a6/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/0a/0a709cba00d36d490482d0e8673e323ac1e897a6//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/0a/0a709cba00d36d490482d0e8673e323ac1e897a6//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-15  7:05 [binutils-gdb] sh_addralign inconsistent with sh_addr gdb-buildbot
@ 2020-03-17  6:25 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-17  6:25 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/2188

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        233bf4f847b136705247e2f7f11bae41c72448a4

Subject of commit:
        sh_addralign inconsistent with sh_addr

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/23/233bf4f847b136705247e2f7f11bae41c72448a4/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.trace/ftrace.exp: advance through tracing
==============================================

*** 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/23/233bf4f847b136705247e2f7f11bae41c72448a4//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/23/233bf4f847b136705247e2f7f11bae41c72448a4//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-15  3:17 [binutils-gdb] Find tailcall frames before inline frames gdb-buildbot
@ 2020-03-17  1:49 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-17  1:49 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/2186

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        1009d92fc621bc4d017029b90a5bfab16e17fde5

Subject of commit:
        Find tailcall frames before inline frames

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/10/1009d92fc621bc4d017029b90a5bfab16e17fde5/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.opt/inline-break.exp: cmd=break: bt stopped in inline_func1
PASS -> FAIL: gdb.opt/inline-break.exp: cmd=break: continue to breakpoint: inline_func1
new UNRESOLVED: gdb.opt/inline-break.exp: cmd=tbreak: could not run to main
new UNRESOLVED: gdb.opt/inline-break.exp: cmd=tbreak: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.opt/inline-cmds.exp: backtrace at inlined_fn from noinline
PASS -> FAIL: gdb.opt/inline-cmds.exp: inlined_fn from noinline inlined
PASS -> FAIL: gdb.opt/inline-cmds.exp: main not inlined
PASS -> FAIL: gdb.opt/inline-cmds.exp: noinline from outer_inline1 not inlined
PASS -> FAIL: gdb.opt/inline-cmds.exp: outer_inline1 inlined
PASS -> FAIL: gdb.opt/inline-cmds.exp: outer_inline2 inlined
PASS -> FAIL: gdb.opt/inline-cmds.exp: up from outer_inline2
PASS -> FAIL: gdb.opt/inline-cmds.exp: up to noinline
PASS -> FAIL: gdb.opt/inline-cmds.exp: up to outer_inline1
PASS -> FAIL: gdb.opt/inline-cmds.exp: up to outer_inline2
PASS -> FAIL: gdb.python/py-frame-inline.exp: info frame
PASS -> FAIL: gdb.python/py-frame-inline.exp: python print
PASS -> FAIL: gdb.python/py-frame-inline.exp: up
new FAIL: gdb.reverse/insn-reverse.exp: move: capture_command_output for info all-registers
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 0:mov	x0, sp
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 10:adrp	x0, 0xaaaaaaabb000
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 11:add	x0, x0, #0x10
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 12:ldr	w0, [x0]
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 13:ldr	w1, [x29, #28]
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 14:cmp	w1, w0
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 15:b.lt	0xaaaaaaaaa8a8 <main+24>  // b.tstop
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 16:adrp	x0, 0xaaaaaaabb000
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 17:add	x0, x0, #0x18
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 18:ldrsw	x1, [x29, #28]
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 19:ldr	x0, [x0, x1, lsl #3]
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 1:ld1	{v1.8b}, [x0]
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 20:blr	x0
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 21:sub	sp, sp, #0x30
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 22:mov	w0, #0x42f60000            	// #1123418112
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 23:fmov	s0, w0
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 24:str	s0, [sp, #4]
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 2:ld1	{v2.8b, v3.8b}, [x0]
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 3:ld1	{v3.8b-v5.8b}, [x0]
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 4:nop
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 5:add	sp, sp, #0x20
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 6:ret
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 7:ldr	w0, [x29, #28]
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 8:add	w0, w0, #0x1
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 9:str	w0, [x29, #28]
new FAIL: gdb.reverse/insn-reverse.exp: move: reverse-stepi
new FAIL: gdb.reverse/insn-reverse.exp: move: si
new FAIL: gdb.reverse/insn-reverse.exp: move: x/i $pc
==============================================

*** 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/10/1009d92fc621bc4d017029b90a5bfab16e17fde5//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/10/1009d92fc621bc4d017029b90a5bfab16e17fde5//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-14 21:32 [binutils-gdb] gdb/fortran: Fix printing of logical true values for Flang gdb-buildbot
@ 2020-03-16 18:43 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-16 18:43 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/2183

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        5e5d66b6a46c7b0353308bfb508b96a59f1addbf

Subject of commit:
        gdb/fortran: Fix printing of logical true values for Flang

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/5e/5e5d66b6a46c7b0353308bfb508b96a59f1addbf/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/5e/5e5d66b6a46c7b0353308bfb508b96a59f1addbf//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/5e/5e5d66b6a46c7b0353308bfb508b96a59f1addbf//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-14 19:45 [binutils-gdb] Rebase executable to match relocated base address gdb-buildbot
@ 2020-03-16 16:23 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-16 16:23 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/2182

Author:
        Hannes Domani <ssbssa@yahoo.de>

Commit tested:
        584cf46d0ab5960cca76bfaf414cee5641166868

Subject of commit:
        Rebase executable to match relocated base address

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/58/584cf46d0ab5960cca76bfaf414cee5641166868/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/58/584cf46d0ab5960cca76bfaf414cee5641166868//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/58/584cf46d0ab5960cca76bfaf414cee5641166868//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-14 16:07 [binutils-gdb] Fix printf of a convenience variable holding an inferior address gdb-buildbot
@ 2020-03-16 11:42 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-16 11:42 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/2180

Author:
        Sergio Durigan Junior <sergiodj@redhat.com>

Commit tested:
        7b973adce2b486518d3150db257b179e1b9a5d33

Subject of commit:
        Fix printf of a convenience variable holding an inferior address

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/7b/7b973adce2b486518d3150db257b179e1b9a5d33/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/7b/7b973adce2b486518d3150db257b179e1b9a5d33//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/7b/7b973adce2b486518d3150db257b179e1b9a5d33//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-14 12:06 [binutils-gdb] Update GDB to use new AUXV entry types gdb-buildbot
@ 2020-03-16  7:02 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-16  7:02 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/2178

Author:
        Luis Machado <luis.machado@linaro.org>

Commit tested:
        bb7b70ab85fb9d185d1fa6bad192c90fe9c17ff3

Subject of commit:
        Update GDB to use new AUXV entry types

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/bb/bb7b70ab85fb9d185d1fa6bad192c90fe9c17ff3/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/bb/bb7b70ab85fb9d185d1fa6bad192c90fe9c17ff3//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/bb/bb7b70ab85fb9d185d1fa6bad192c90fe9c17ff3//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-14  4:33 [binutils-gdb] [gdb/testsuite] Fix tcl error in gdb.mi/list-thread-groups-available.exp gdb-buildbot
@ 2020-03-15 21:41 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-15 21:41 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/2174

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        1ef44e861d58ba10674f107a79471852fbd27cda

Subject of commit:
        [gdb/testsuite] Fix tcl error in gdb.mi/list-thread-groups-available.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/1e/1ef44e861d58ba10674f107a79471852fbd27cda/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/1e/1ef44e861d58ba10674f107a79471852fbd27cda//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/1e/1ef44e861d58ba10674f107a79471852fbd27cda//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-13 20:14 [binutils-gdb] Fix arm-netbsd build error: convert from FPA to VFP gdb-buildbot
@ 2020-03-15 12:21 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-15 12:21 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/2170

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        81b86b9702b5be9d022e9b0c96c1ee2ce339b5b9

Subject of commit:
        Fix arm-netbsd build error: convert from FPA to VFP

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/81/81b86b9702b5be9d022e9b0c96c1ee2ce339b5b9/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/81/81b86b9702b5be9d022e9b0c96c1ee2ce339b5b9//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/81/81b86b9702b5be9d022e9b0c96c1ee2ce339b5b9//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-13 10:06 [binutils-gdb] Re: bfd_cleanup for object_p gdb-buildbot
@ 2020-03-15  0:40 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-15  0:40 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/2165

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        601b73d5003ef804b49dfe42afd0fba0952218de

Subject of commit:
        Re: bfd_cleanup for object_p

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/60/601b73d5003ef804b49dfe42afd0fba0952218de/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/60/601b73d5003ef804b49dfe42afd0fba0952218de//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/60/601b73d5003ef804b49dfe42afd0fba0952218de//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-13  7:45 [binutils-gdb] gdb: Move defs.h before any system header in debuginfod-support.c gdb-buildbot
@ 2020-03-14 22:19 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-14 22:19 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/2164

Author:
        Jon Turney <jon.turney@dronecode.org.uk>

Commit tested:
        a84bb2a0790125f5fb5df65b7873fb6076164527

Subject of commit:
        gdb: Move defs.h before any system header in debuginfod-support.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/a8/a84bb2a0790125f5fb5df65b7873fb6076164527/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/a8/a84bb2a0790125f5fb5df65b7873fb6076164527//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/a8/a84bb2a0790125f5fb5df65b7873fb6076164527//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-13  5:52 [binutils-gdb] trad_unix_core_file_p: Return bfd_cleanup gdb-buildbot
@ 2020-03-14 19:59 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-14 19:59 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/2163

Author:
        H.J. Lu <hjl.tools@gmail.com>

Commit tested:
        728d32c496435cbd2529f7de9f5277d88c9c04e2

Subject of commit:
        trad_unix_core_file_p: Return bfd_cleanup

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/72/728d32c496435cbd2529f7de9f5277d88c9c04e2/

*** 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/72/728d32c496435cbd2529f7de9f5277d88c9c04e2//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/72/728d32c496435cbd2529f7de9f5277d88c9c04e2//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-13  3:40 [binutils-gdb] Import latest fixes to libiberty from GCC gdb-buildbot
@ 2020-03-14 17:38 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-14 17:38 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/2162

Author:
        H.J. Lu <hjl.tools@gmail.com>

Commit tested:
        4e07c9e2b69064e8b47e3981185b70ebe78aac68

Subject of commit:
        Import latest fixes to libiberty from GCC

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/4e/4e07c9e2b69064e8b47e3981185b70ebe78aac68/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/4e/4e07c9e2b69064e8b47e3981185b70ebe78aac68//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/4e/4e07c9e2b69064e8b47e3981185b70ebe78aac68//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-13  2:00 [binutils-gdb] bfd_cleanup for object_p gdb-buildbot
@ 2020-03-14 15:18 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-14 15:18 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/2161

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        cb001c0d283dd884efe06770d033a50fb1bc6c7d

Subject of commit:
        bfd_cleanup for object_p

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/cb/cb001c0d283dd884efe06770d033a50fb1bc6c7d/

*** 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/cb/cb001c0d283dd884efe06770d033a50fb1bc6c7d//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/cb/cb001c0d283dd884efe06770d033a50fb1bc6c7d//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-12 22:22 [binutils-gdb] ELF SEC_SMALL_DATA gdb-buildbot
@ 2020-03-14 10:34 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-14 10:34 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/2159

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        bf57746745ac0c0d2922de5af5f0d8527d7a585a

Subject of commit:
        ELF SEC_SMALL_DATA

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/bf/bf57746745ac0c0d2922de5af5f0d8527d7a585a/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/bf/bf57746745ac0c0d2922de5af5f0d8527d7a585a//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/bf/bf57746745ac0c0d2922de5af5f0d8527d7a585a//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-12  4:49 [binutils-gdb] Update libinproctrace.so path in lib/trace-support.exp gdb-buildbot
@ 2020-03-13 12:36 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-13 12:36 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/2153

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        f5e4608433541a29da8dddc0ceeb63d36c12dda5

Subject of commit:
        Update libinproctrace.so path in lib/trace-support.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/f5/f5e4608433541a29da8dddc0ceeb63d36c12dda5/

*** Diff to previous build ***
==============================================
new FAIL: gdb.trace/pending.exp: ftrace installed_in_trace: continue to marker 2
new FAIL: gdb.trace/pending.exp: ftrace installed_in_trace: tfind test frame 0
==============================================

*** 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/f5/f5e4608433541a29da8dddc0ceeb63d36c12dda5//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/f5/f5e4608433541a29da8dddc0ceeb63d36c12dda5//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-11 23:24 [binutils-gdb] Fix comment for 'gdb_dlopen' gdb-buildbot
@ 2020-03-13 10:16 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-13 10:16 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/2152

Author:
        Sergio Durigan Junior <sergiodj@redhat.com>

Commit tested:
        d7592e974706637058867b02626c52a30ef0a2ee

Subject of commit:
        Fix comment for 'gdb_dlopen'

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/d7/d7592e974706637058867b02626c52a30ef0a2ee/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/d7/d7592e974706637058867b02626c52a30ef0a2ee//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/d7/d7592e974706637058867b02626c52a30ef0a2ee//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-11 21:36 [binutils-gdb] Fix SVE-related failure in gdb.arch/aarch64-fp.exp gdb-buildbot
@ 2020-03-13  7:57 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-13  7:57 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/2151

Author:
        Luis Machado <luis.machado@linaro.org>

Commit tested:
        f7a7000d486f6fc456e9332214b89d01c3639fb1

Subject of commit:
        Fix SVE-related failure in gdb.arch/aarch64-fp.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/f7/f7a7000d486f6fc456e9332214b89d01c3639fb1/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/f7/f7a7000d486f6fc456e9332214b89d01c3639fb1//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/f7/f7a7000d486f6fc456e9332214b89d01c3639fb1//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-11 19:08 [binutils-gdb] Fix gdb.arch/aarch64-dbreg-contents.exp build failures gdb-buildbot
@ 2020-03-13  5:37 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-13  5:37 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/2150

Author:
        Luis Machado <luis.machado@linaro.org>

Commit tested:
        718e081605e86b7421afc1b3ab2e4918292dd254

Subject of commit:
        Fix gdb.arch/aarch64-dbreg-contents.exp build failures

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/71/718e081605e86b7421afc1b3ab2e4918292dd254/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/71/718e081605e86b7421afc1b3ab2e4918292dd254//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/71/718e081605e86b7421afc1b3ab2e4918292dd254//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-11 15:19 [binutils-gdb] Pass correct die_reader_specs in cutu_reader::init_tu_and_read_dwo_dies gdb-buildbot
@ 2020-03-13  0:57 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-13  0:57 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/2148

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        4ebe487749c5a3bac19ccaf36fc734a0d29a990e

Subject of commit:
        Pass correct die_reader_specs in cutu_reader::init_tu_and_read_dwo_dies

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/4e/4ebe487749c5a3bac19ccaf36fc734a0d29a990e/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/4e/4ebe487749c5a3bac19ccaf36fc734a0d29a990e//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/4e/4ebe487749c5a3bac19ccaf36fc734a0d29a990e//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-11 11:10 [binutils-gdb] Harden gdb.arch/aarch64-pauth.exp and fix a failure gdb-buildbot
@ 2020-03-12 18:23 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-12 18:23 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/2145

Author:
        Luis Machado <luis.machado@linaro.org>

Commit tested:
        85d2d5bbee1c21c2e3e929cc68fe06d762b3073b

Subject of commit:
        Harden gdb.arch/aarch64-pauth.exp and fix a failure

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/85/85d2d5bbee1c21c2e3e929cc68fe06d762b3073b/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/85/85d2d5bbee1c21c2e3e929cc68fe06d762b3073b//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/85/85d2d5bbee1c21c2e3e929cc68fe06d762b3073b//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-11  9:19 [binutils-gdb] alpha-vms: memory leak gdb-buildbot
@ 2020-03-12 16:04 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-12 16:04 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/2144

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        182ec6707c9fcca84d488413d4ddbbd9d12639fe

Subject of commit:
        alpha-vms: memory leak

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/18/182ec6707c9fcca84d488413d4ddbbd9d12639fe/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/18/182ec6707c9fcca84d488413d4ddbbd9d12639fe//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/18/182ec6707c9fcca84d488413d4ddbbd9d12639fe//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-11  5:38 [binutils-gdb] gdb: Check for nullptr when computing srcpath gdb-buildbot
@ 2020-03-12 11:24 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-12 11:24 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/2142

Author:
        Aaron Merey <amerey@redhat.com>

Commit tested:
        e5da11393a16416afc0c0a1da9914b6424f37fa8

Subject of commit:
        gdb: Check for nullptr when computing srcpath

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/e5/e5da11393a16416afc0c0a1da9914b6424f37fa8/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/e5/e5da11393a16416afc0c0a1da9914b6424f37fa8//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/e5/e5da11393a16416afc0c0a1da9914b6424f37fa8//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-10 19:54 [binutils-gdb] [gdb/testsuite] Remove unused globals gdb-buildbot
@ 2020-03-11 21:27 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-11 21:27 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/2136

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        3608f86c427a907335eb96b8dd6d6d2071d6f4a1

Subject of commit:
        [gdb/testsuite] Remove unused globals

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/36/3608f86c427a907335eb96b8dd6d6d2071d6f4a1/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/36/3608f86c427a907335eb96b8dd6d6d2071d6f4a1//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/36/3608f86c427a907335eb96b8dd6d6d2071d6f4a1//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-10 17:14 [binutils-gdb] [gdb/testsuite] Fix spawn in tuiterm.exp gdb-buildbot
@ 2020-03-11 19:07 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-11 19:07 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/2135

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        c8d4f6dfd9264d6ab5d14c2dde3628cc1e7dd75f

Subject of commit:
        [gdb/testsuite] Fix spawn in tuiterm.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/c8/c8d4f6dfd9264d6ab5d14c2dde3628cc1e7dd75f/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 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/Ubuntu-Aarch64-native-gdbserver-m64/c8/c8d4f6dfd9264d6ab5d14c2dde3628cc1e7dd75f//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/c8/c8d4f6dfd9264d6ab5d14c2dde3628cc1e7dd75f//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-10 15:25 [binutils-gdb] _bfd_xcoff_read_ar_hdr tidy gdb-buildbot
@ 2020-03-11 16:48 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-11 16:48 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/2134

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        05f52dc2e1359fc4f69fab5c39fdfdf5efe93a15

Subject of commit:
        _bfd_xcoff_read_ar_hdr tidy

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/05/05f52dc2e1359fc4f69fab5c39fdfdf5efe93a15/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/05/05f52dc2e1359fc4f69fab5c39fdfdf5efe93a15//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/05/05f52dc2e1359fc4f69fab5c39fdfdf5efe93a15//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-10 13:06 [binutils-gdb] bfd_stat_arch_elt buffer overflow gdb-buildbot
@ 2020-03-11 14:27 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-11 14:27 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/2133

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        ff69a8949bb65c9eb64ea03ee1492902c2620c8c

Subject of commit:
        bfd_stat_arch_elt buffer overflow

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/ff/ff69a8949bb65c9eb64ea03ee1492902c2620c8c/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
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/Ubuntu-Aarch64-native-gdbserver-m64/ff/ff69a8949bb65c9eb64ea03ee1492902c2620c8c//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/ff/ff69a8949bb65c9eb64ea03ee1492902c2620c8c//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-10  7:05 [binutils-gdb] Add debuginfod support to GDB gdb-buildbot
@ 2020-03-11  7:26 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-11  7:26 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/2130

Author:
        Aaron Merey <amerey@redhat.com>

Commit tested:
        0d79cdc494d5eb9db26a602d62c92d49f83f407e

Subject of commit:
        Add debuginfod support to GDB

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/0d/0d79cdc494d5eb9db26a602d62c92d49f83f407e/

*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.dwarf2/dw2-compdir-oldgcc.exp: info source gcc43
PASS -> UNRESOLVED: gdb.dwarf2/dw2-compdir-oldgcc.exp: list gcc43
PASS -> UNRESOLVED: gdb.dwarf2/dw2-ranges-base.exp: count END markers in line table
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/0d/0d79cdc494d5eb9db26a602d62c92d49f83f407e//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/0d/0d79cdc494d5eb9db26a602d62c92d49f83f407e//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-10  3:17 [binutils-gdb] Move more declarations from dwarf2/loc.h to dwarf2/read.h gdb-buildbot
@ 2020-03-11  2:46 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-11  2:46 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/2128

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        d4c9a4f87ddbbb79d852f59ee1723e03294540c2

Subject of commit:
        Move more declarations from dwarf2/loc.h to dwarf2/read.h

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/d4/d4c9a4f87ddbbb79d852f59ee1723e03294540c2/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/d4/d4c9a4f87ddbbb79d852f59ee1723e03294540c2//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/d4/d4c9a4f87ddbbb79d852f59ee1723e03294540c2//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-09 23:11 [binutils-gdb] Archive sanity checks gdb-buildbot
@ 2020-03-10 22:06 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-10 22:06 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/2126

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        02f7e7eed956b99ab2e80f8974fbe59e1d9b0dff

Subject of commit:
        Archive sanity checks

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/02/02f7e7eed956b99ab2e80f8974fbe59e1d9b0dff/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/02/02f7e7eed956b99ab2e80f8974fbe59e1d9b0dff//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/02/02f7e7eed956b99ab2e80f8974fbe59e1d9b0dff//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-09 21:24 [binutils-gdb] Re: vms buffer overflows and large memory allocation gdb-buildbot
@ 2020-03-10 19:47 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-10 19: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/2125

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        cc4c4f40a2b46e355684e450f59154cece591c39

Subject of commit:
        Re: vms buffer overflows and large memory allocation

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/cc/cc4c4f40a2b46e355684e450f59154cece591c39/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/cc/cc4c4f40a2b46e355684e450f59154cece591c39//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/cc/cc4c4f40a2b46e355684e450f59154cece591c39//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-09 19:31 [binutils-gdb] Move dwarf2_read_addr_index declaration to dwarf2/read.h gdb-buildbot
@ 2020-03-10 17:26 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-10 17:26 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/2124

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        450a1bfc7f60d4b37615a7d78aac83ca73cae159

Subject of commit:
        Move dwarf2_read_addr_index declaration to dwarf2/read.h

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/45/450a1bfc7f60d4b37615a7d78aac83ca73cae159/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/45/450a1bfc7f60d4b37615a7d78aac83ca73cae159//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/45/450a1bfc7f60d4b37615a7d78aac83ca73cae159//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-09  7:07 [binutils-gdb] gdb/fortran: Support negative array stride in one limited case gdb-buildbot
@ 2020-03-10  3:27 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-10  3:27 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/2118

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        9e80cfa14ed0bdec20361ae78e74ccb937de3428

Subject of commit:
        gdb/fortran: Support negative array stride in one limited case

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/9e/9e80cfa14ed0bdec20361ae78e74ccb937de3428/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/9e/9e80cfa14ed0bdec20361ae78e74ccb937de3428//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/9e/9e80cfa14ed0bdec20361ae78e74ccb937de3428//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-09  5:14 [binutils-gdb] [AArch64] Fix typo in comment gdb-buildbot
@ 2020-03-10  1:07 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-10  1:07 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/2117

Author:
        Luis Machado <luis.machado@linaro.org>

Commit tested:
        09624f1fece637e17c0c31f6b7589466402ea407

Subject of commit:
        [AArch64] Fix typo in comment

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/09/09624f1fece637e17c0c31f6b7589466402ea407/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
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/Ubuntu-Aarch64-native-gdbserver-m64/09/09624f1fece637e17c0c31f6b7589466402ea407//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/09/09624f1fece637e17c0c31f6b7589466402ea407//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-09  1:53 [binutils-gdb] Don't call lto-wrapper for ar and ranlib gdb-buildbot
@ 2020-03-09 20:27 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-09 20:27 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/2115

Author:
        H.J. Lu <hjl.tools@gmail.com>

Commit tested:
        ecda90163e2b0a6f0be96e3fc262c28820a27211

Subject of commit:
        Don't call lto-wrapper for ar and ranlib

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/ec/ecda90163e2b0a6f0be96e3fc262c28820a27211/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/ec/ecda90163e2b0a6f0be96e3fc262c28820a27211//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/ec/ecda90163e2b0a6f0be96e3fc262c28820a27211//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-09  0:27 [binutils-gdb] [ARC][committed] Update int_vector_base aux register gdb-buildbot
@ 2020-03-09 18:07 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-09 18:07 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/2114

Author:
        Claudiu Zissulescu <claziss@gmail.com>

Commit tested:
        265b467340e5334a682e47a0e1b69a80c4428349

Subject of commit:
        [ARC][committed] Update int_vector_base aux register.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/26/265b467340e5334a682e47a0e1b69a80c4428349/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 4
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
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/Ubuntu-Aarch64-native-gdbserver-m64/26/265b467340e5334a682e47a0e1b69a80c4428349//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/26/265b467340e5334a682e47a0e1b69a80c4428349//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-08 21:54 [binutils-gdb] [gdb/testsuite] Remove gcc/93866 xfail in methods.exp gdb-buildbot
@ 2020-03-09 15:47 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-09 15: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/2113

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        70d497007d097a68cbd5e78104619f4f88a09838

Subject of commit:
        [gdb/testsuite] Remove gcc/93866 xfail in methods.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/70/70d497007d097a68cbd5e78104619f4f88a09838/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================

*** 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/70/70d497007d097a68cbd5e78104619f4f88a09838//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/70/70d497007d097a68cbd5e78104619f4f88a09838//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-08 20:07 [binutils-gdb] Move dwarf2_get_die_type declaration to dwarf2/read.h gdb-buildbot
@ 2020-03-09 13:28 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-09 13:28 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/2112

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        8cb5117ccfa578e6c531fcad4851be0f13b53f3b

Subject of commit:
        Move dwarf2_get_die_type declaration to dwarf2/read.h

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/8c/8cb5117ccfa578e6c531fcad4851be0f13b53f3b/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: pc after stepi matches insn addr after syscall
==============================================

*** 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/8c/8cb5117ccfa578e6c531fcad4851be0f13b53f3b//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/8c/8cb5117ccfa578e6c531fcad4851be0f13b53f3b//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-08 18:22 [binutils-gdb] gdb/copyright.py: Add generated files in gnulib/ to exclude list gdb-buildbot
@ 2020-03-09 11:09 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-09 11:09 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/2111

Author:
        Joel Brobecker <brobecker@adacore.com>

Commit tested:
        c325c44ef674de4c6ba2bfbb2eefb5f4661081cc

Subject of commit:
        gdb/copyright.py: Add generated files in gnulib/ to exclude list

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/c3/c325c44ef674de4c6ba2bfbb2eefb5f4661081cc/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/c325c44ef674de4c6ba2bfbb2eefb5f4661081cc//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/c325c44ef674de4c6ba2bfbb2eefb5f4661081cc//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-08 16:48 [binutils-gdb] Fix a memory leak and remove an unused member gdb-buildbot
@ 2020-03-09  8:49 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-09  8:49 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/2110

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        4ac9383206032dd0357602136af1e05e7701142b

Subject of commit:
        Fix a memory leak and remove an unused member

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/4a/4ac9383206032dd0357602136af1e05e7701142b/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/4a/4ac9383206032dd0357602136af1e05e7701142b//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/4a/4ac9383206032dd0357602136af1e05e7701142b//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-08 12:39 [binutils-gdb] Simplify setting of reading_partial_symbols gdb-buildbot
@ 2020-03-09  4:10 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-09  4:10 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/2108

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        7693576838f4fe66b2a2380425b5ad950c671b34

Subject of commit:
        Simplify setting of reading_partial_symbols

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/76/7693576838f4fe66b2a2380425b5ad950c671b34/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/76/7693576838f4fe66b2a2380425b5ad950c671b34//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/76/7693576838f4fe66b2a2380425b5ad950c671b34//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-08 10:45 [binutils-gdb] [gdb] Ensure listing of unused static var in info locals gdb-buildbot
@ 2020-03-09  1:50 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-09  1:50 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/2107

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        a88ef40d0f21342bb5ce01ce677846995ca0d133

Subject of commit:
        [gdb] Ensure listing of unused static var in info locals

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/a8/a88ef40d0f21342bb5ce01ce677846995ca0d133/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/a8/a88ef40d0f21342bb5ce01ce677846995ca0d133//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/a8/a88ef40d0f21342bb5ce01ce677846995ca0d133//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-08  8:47 [binutils-gdb] [gdb/testsuite] Fix layout next/prev/regs help message gdb-buildbot
@ 2020-03-08 23:30 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-08 23:30 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/2106

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        c9af65210c36aa0b5362b8ce2814ca8a5b09af92

Subject of commit:
        [gdb/testsuite] Fix layout next/prev/regs help message

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/c9/c9af65210c36aa0b5362b8ce2814ca8a5b09af92/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/c9/c9af65210c36aa0b5362b8ce2814ca8a5b09af92//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/c9/c9af65210c36aa0b5362b8ce2814ca8a5b09af92//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-08  7:13 [binutils-gdb] Re: vms buffer overflows and large memory allocation gdb-buildbot
@ 2020-03-08 21:11 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-08 21:11 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/2105

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        a98c743fdf721a2333220209ca15e147badb55d1

Subject of commit:
        Re: vms buffer overflows and large memory allocation

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/a9/a98c743fdf721a2333220209ca15e147badb55d1/

*** 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/a9/a98c743fdf721a2333220209ca15e147badb55d1//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/a9/a98c743fdf721a2333220209ca15e147badb55d1//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-08  4:51 [binutils-gdb] vms buffer overflows and large memory allocation gdb-buildbot
@ 2020-03-08 18:51 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-08 18:51 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/2104

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        c893ce360a81bed57b9256f9d065541c2f8175c0

Subject of commit:
        vms buffer overflows and large memory allocation

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/c8/c893ce360a81bed57b9256f9d065541c2f8175c0/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
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/Ubuntu-Aarch64-native-gdbserver-m64/c8/c893ce360a81bed57b9256f9d065541c2f8175c0//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/c8/c893ce360a81bed57b9256f9d065541c2f8175c0//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-07 17:37 [binutils-gdb] Make some tui_source_window_base members "protected" gdb-buildbot
@ 2020-03-08  4:53 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-08  4:53 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/2098

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        432b5c40220d80d539284f0ee8f6d081d39f0578

Subject of commit:
        Make some tui_source_window_base members "protected"

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/43/432b5c40220d80d539284f0ee8f6d081d39f0578/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/43/432b5c40220d80d539284f0ee8f6d081d39f0578//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/43/432b5c40220d80d539284f0ee8f6d081d39f0578//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-07 10:04 [binutils-gdb] Remove tui_delete_invisible_windows and tui_make_all_invisible gdb-buildbot
@ 2020-03-07 21:22 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-07 21:22 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/2092

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        865a5aec04b504d33c83baf5e05f6cdf95ac9dc3

Subject of commit:
        Remove tui_delete_invisible_windows and tui_make_all_invisible

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/86/865a5aec04b504d33c83baf5e05f6cdf95ac9dc3/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/86/865a5aec04b504d33c83baf5e05f6cdf95ac9dc3//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/86/865a5aec04b504d33c83baf5e05f6cdf95ac9dc3//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
       [not found] <7c043ba695a3cee067554b1e871e60f7934512b4@gdb-build>
@ 2020-03-07 12:02 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-07 12:02 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/2088

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        7c043ba695a3cee067554b1e871e60f7934512b4

Subject of commit:
        Add horizontal splitting to TUI layout

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/7c/7c043ba695a3cee067554b1e871e60f7934512b4/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/7c/7c043ba695a3cee067554b1e871e60f7934512b4//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/7c/7c043ba695a3cee067554b1e871e60f7934512b4//xfail.table.gz>



^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-06 10:32 [binutils-gdb] Simplify TUI C-x 2 binding gdb-buildbot
@ 2020-03-06 17:55 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-06 17:55 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/2080

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        427326a826888b39a38c9f1b497aa981f37b72af

Subject of commit:
        Simplify TUI C-x 2 binding

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/42/427326a826888b39a38c9f1b497aa981f37b72af/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: pc after stepi matches insn addr after syscall
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/Ubuntu-Aarch64-native-gdbserver-m64/42/427326a826888b39a38c9f1b497aa981f37b72af//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/42/427326a826888b39a38c9f1b497aa981f37b72af//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-06  9:49 [binutils-gdb] Fix latent display bug in tui_data_window gdb-buildbot
@ 2020-03-06 15:34 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-06 15:34 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/2079

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        3fe12b6d67182a81d2ffabbfe405fb5ffc0694b2

Subject of commit:
        Fix latent display bug in tui_data_window

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/3f/3fe12b6d67182a81d2ffabbfe405fb5ffc0694b2/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/3f/3fe12b6d67182a81d2ffabbfe405fb5ffc0694b2//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/3f/3fe12b6d67182a81d2ffabbfe405fb5ffc0694b2//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-06  6:39 [binutils-gdb] Simplify tui_add_win_to_layout gdb-buildbot
@ 2020-03-06 13:52 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-06 13:52 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/2078

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        59b8b5d2477440a21b580dbf59281a9e2795e1dc

Subject of commit:
        Simplify tui_add_win_to_layout

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/59/59b8b5d2477440a21b580dbf59281a9e2795e1dc/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/59/59b8b5d2477440a21b580dbf59281a9e2795e1dc//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/59/59b8b5d2477440a21b580dbf59281a9e2795e1dc//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-06  4:56 [binutils-gdb] Use TUI_DISASM_WIN instead of tui_win_list array gdb-buildbot
@ 2020-03-06 10:56 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-06 10:56 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/2077

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        2a3d458be380d4940fc528dca63ded4c2bab6c12

Subject of commit:
        Use TUI_DISASM_WIN instead of tui_win_list array

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/2a/2a3d458be380d4940fc528dca63ded4c2bab6c12/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: pc after stepi matches insn addr after syscall
==============================================

*** 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/2a/2a3d458be380d4940fc528dca63ded4c2bab6c12//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/2a/2a3d458be380d4940fc528dca63ded4c2bab6c12//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-06  1:02 [binutils-gdb] Style field names in "print" gdb-buildbot
@ 2020-03-06  9:10 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-06  9:10 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/2076

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        3f0cbb04d0fbb0923f2972efa95a4c767592860b

Subject of commit:
        Style field names in "print"

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/3f/3f0cbb04d0fbb0923f2972efa95a4c767592860b/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/3f/3f0cbb04d0fbb0923f2972efa95a4c767592860b//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/3f/3f0cbb04d0fbb0923f2972efa95a4c767592860b//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-05  8:30 [binutils-gdb] [gdb/testsuite] Fix gdb.go/methods.exp gdb-buildbot
@ 2020-03-05 10:41 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-05 10:41 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/2070

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        755251522afd2f33de7e64f8a30ddd732f30b2de

Subject of commit:
        [gdb/testsuite] Fix gdb.go/methods.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/75/755251522afd2f33de7e64f8a30ddd732f30b2de/

*** 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/75/755251522afd2f33de7e64f8a30ddd732f30b2de//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/75/755251522afd2f33de7e64f8a30ddd732f30b2de//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-05  3:58 [binutils-gdb] gdb/testsuite: Add test for case where gdb_demangle returns NULL gdb-buildbot
@ 2020-03-05  3:39 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-05  3:39 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/2067

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        bd360d3048e80234a8e772573c9ca3cac9c0466b

Subject of commit:
        gdb/testsuite: Add test for case where gdb_demangle returns NULL

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/bd/bd360d3048e80234a8e772573c9ca3cac9c0466b/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/bd/bd360d3048e80234a8e772573c9ca3cac9c0466b//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/bd/bd360d3048e80234a8e772573c9ca3cac9c0466b//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-05  1:24 [binutils-gdb] Check for null result from gdb_demangle gdb-buildbot
@ 2020-03-05  1:00 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-05  1:00 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/2066

Author:
        Ali Tamur via gdb-patches <gdb-patches@sourceware.org>

Commit tested:
        4f180d5396741eb65badba70cf5077b7d48f8641

Subject of commit:
        Check for null result from gdb_demangle

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/4f/4f180d5396741eb65badba70cf5077b7d48f8641/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 4
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
==============================================

*** 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/4f/4f180d5396741eb65badba70cf5077b7d48f8641//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/4f/4f180d5396741eb65badba70cf5077b7d48f8641//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-04 22:59 [binutils-gdb] Fuzzers whining about mach-o support gdb-buildbot
@ 2020-03-04 22:55 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-04 22:55 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/2065

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        a4425a57c7ad127b30cdfe271c870d5c8ebcfad7

Subject of commit:
        Fuzzers whining about mach-o support

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/a4/a4425a57c7ad127b30cdfe271c870d5c8ebcfad7/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================

*** 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/a4/a4425a57c7ad127b30cdfe271c870d5c8ebcfad7//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/a4/a4425a57c7ad127b30cdfe271c870d5c8ebcfad7//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-04 18:21 [binutils-gdb] Fix latent bug in dwarf2_find_containing_comp_unit gdb-buildbot
@ 2020-03-04 18:21 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-04 18:21 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/2063

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        22b6cd70430d6bdaa3ae6c01414de8fd1f15a556

Subject of commit:
        Fix latent bug in dwarf2_find_containing_comp_unit

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/22/22b6cd70430d6bdaa3ae6c01414de8fd1f15a556/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/22/22b6cd70430d6bdaa3ae6c01414de8fd1f15a556//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/22/22b6cd70430d6bdaa3ae6c01414de8fd1f15a556//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-04  4:21 [binutils-gdb] gdbserver: simply copy the pointer in 'set_target_ops' gdb-buildbot
@ 2020-03-04  4:15 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-04  4:15 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/2057

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        478f9adff55f3b03d935d1384f6ee3597969c448

Subject of commit:
        gdbserver: simply copy the pointer in 'set_target_ops'

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/47/478f9adff55f3b03d935d1384f6ee3597969c448/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 3
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/Ubuntu-Aarch64-native-gdbserver-m64/47/478f9adff55f3b03d935d1384f6ee3597969c448//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/47/478f9adff55f3b03d935d1384f6ee3597969c448//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-03 21:46 [binutils-gdb] gdbserver: turn target op 'supports_software_single_step' into a method gdb-buildbot
@ 2020-03-03 21:40 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-03 21:40 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/2054

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        5303a34f9021a918a53376f215798dc65bf1a45c

Subject of commit:
        gdbserver: turn target op 'supports_software_single_step' into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/53/5303a34f9021a918a53376f215798dc65bf1a45c/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/53/5303a34f9021a918a53376f215798dc65bf1a45c//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/53/5303a34f9021a918a53376f215798dc65bf1a45c//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-03 17:14 [binutils-gdb] gdbserver: turn target ops 'thread_name' and 'thread_handle' into methods gdb-buildbot
@ 2020-03-03 19:37 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-03 19:37 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/2053

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        7f63b89b3a4229c2274f613111a907623853351f

Subject of commit:
        gdbserver: turn target ops 'thread_name' and 'thread_handle' into methods

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/7f/7f63b89b3a4229c2274f613111a907623853351f/

*** 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/7f/7f63b89b3a4229c2274f613111a907623853351f//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/7f/7f63b89b3a4229c2274f613111a907623853351f//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-03 16:44 [binutils-gdb] gdbserver: turn breakpoint kind-related target ops into methods gdb-buildbot
@ 2020-03-03 16:43 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-03 16:43 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/2052

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        d367006fb7cf837210e2aa1944a11169a60039b4

Subject of commit:
        gdbserver: turn breakpoint kind-related target ops into methods

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/d3/d367006fb7cf837210e2aa1944a11169a60039b4/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/d3/d367006fb7cf837210e2aa1944a11169a60039b4//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/d3/d367006fb7cf837210e2aa1944a11169a60039b4//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-03  9:44 [binutils-gdb] gdbserver: turn target op 'supports_range_stepping' into a method gdb-buildbot
@ 2020-03-03  9:44 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-03  9:44 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/2049

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        2526e0cd95c9395bf8edee662fa1f4ea1ecd6023

Subject of commit:
        gdbserver: turn target op 'supports_range_stepping' into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/25/2526e0cd95c9395bf8edee662fa1f4ea1ecd6023/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/25/2526e0cd95c9395bf8edee662fa1f4ea1ecd6023//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/25/2526e0cd95c9395bf8edee662fa1f4ea1ecd6023//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-03  5:38 [binutils-gdb] gdbserver: turn btrace-related target ops into methods gdb-buildbot
@ 2020-03-03  7:49 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-03  7:49 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/2048

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        79597bdd56f380555ed7075b39a9280a17bd7e90

Subject of commit:
        gdbserver: turn btrace-related target ops into methods

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/79/79597bdd56f380555ed7075b39a9280a17bd7e90/

*** 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/79/79597bdd56f380555ed7075b39a9280a17bd7e90//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/79/79597bdd56f380555ed7075b39a9280a17bd7e90//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-02 19:42 [binutils-gdb] gdbserver: turn fast tracepoint target ops into methods gdb-buildbot
@ 2020-03-02 19:39 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-02 19:39 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/2043

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        c23c939174445a65de521041509b038f5839a742

Subject of commit:
        gdbserver: turn fast tracepoint target ops into methods

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/c2/c23c939174445a65de521041509b038f5839a742/

*** 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/c2/c23c939174445a65de521041509b038f5839a742//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/c2/c23c939174445a65de521041509b038f5839a742//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-02  8:30 [binutils-gdb] gdbserver: turn target op 'thread_stopped' into a method gdb-buildbot
@ 2020-03-02 11:19 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-02 11:19 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/2039

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        68119632a065f7d2a1bdd4c9524484c741544f24

Subject of commit:
        gdbserver: turn target op 'thread_stopped' into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/68/68119632a065f7d2a1bdd4c9524484c741544f24/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/68/68119632a065f7d2a1bdd4c9524484c741544f24//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/68/68119632a065f7d2a1bdd4c9524484c741544f24//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-01 20:56 [binutils-gdb] gdbserver: turn target op 'core_of_thread' into a method gdb-buildbot
@ 2020-03-01 23:00 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-01 23:00 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/2034

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        95a45fc165be890faac873b615b6bf449bcb1207

Subject of commit:
        gdbserver: turn target op 'core_of_thread' into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/95/95a45fc165be890faac873b615b6bf449bcb1207/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/95/95a45fc165be890faac873b615b6bf449bcb1207//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/95/95a45fc165be890faac873b615b6bf449bcb1207//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-01 18:53 [binutils-gdb] gdbserver: turn target op 'handle_monitor_command' into a method gdb-buildbot
@ 2020-03-01 20:20 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-01 20:20 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/2033

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        55cf302157892947a18d1ecd0cdc89a49119b46b

Subject of commit:
        gdbserver: turn target op 'handle_monitor_command' into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/55/55cf302157892947a18d1ecd0cdc89a49119b46b/

*** 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/55/55cf302157892947a18d1ecd0cdc89a49119b46b//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/55/55cf302157892947a18d1ecd0cdc89a49119b46b//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-01 16:21 [binutils-gdb] gdbserver: turn target op 'handle_new_gdb_connection' into a method gdb-buildbot
@ 2020-03-01 18:00 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-01 18:00 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/2032

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        fb00dfcef00f12501e52d2259464ee85d81334c5

Subject of commit:
        gdbserver: turn target op 'handle_new_gdb_connection' into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/fb/fb00dfcef00f12501e52d2259464ee85d81334c5/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/fb/fb00dfcef00f12501e52d2259464ee85d81334c5//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/fb/fb00dfcef00f12501e52d2259464ee85d81334c5//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-01 11:42 [binutils-gdb] gdbserver: turn non-stop and async target ops into methods gdb-buildbot
@ 2020-03-01 11:29 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-03-01 11:29 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/2029

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        0dc587d42590c568bea6bb1953362539c2f79d3b

Subject of commit:
        gdbserver: turn non-stop and async target ops into methods

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/0d/0dc587d42590c568bea6bb1953362539c2f79d3b/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/0d/0dc587d42590c568bea6bb1953362539c2f79d3b//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/0d/0dc587d42590c568bea6bb1953362539c2f79d3b//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-29  8:01 [binutils-gdb] gdbserver: turn target op 'supports_z_point_type' into a method gdb-buildbot
@ 2020-02-29  9:30 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-29  9:30 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/2018

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        a2b2297a204898fa273a825d82385ce1b48941e3

Subject of commit:
        gdbserver: turn target op 'supports_z_point_type' into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/a2/a2b2297a204898fa273a825d82385ce1b48941e3/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/a2/a2b2297a204898fa273a825d82385ce1b48941e3//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/a2/a2b2297a204898fa273a825d82385ce1b48941e3//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-29  1:09 [binutils-gdb] gdbserver: turn target op 'look_up_symbols' into a method gdb-buildbot
@ 2020-02-29  2:42 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-29  2:42 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/2015

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        2a31c7aa00fcb29e2f4191a9a25b164755986e04

Subject of commit:
        gdbserver: turn target op 'look_up_symbols' into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/2a/2a31c7aa00fcb29e2f4191a9a25b164755986e04/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/2a/2a31c7aa00fcb29e2f4191a9a25b164755986e04//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/2a/2a31c7aa00fcb29e2f4191a9a25b164755986e04//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-28 19:58 [binutils-gdb] gdbserver: turn prepare_to_access_memory & done_accessing_memory into methods gdb-buildbot
@ 2020-02-28 21:51 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-28 21:51 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/2013

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        79b4408780b27eeb60de7f3fe10bc654dddcf067

Subject of commit:
        gdbserver: turn prepare_to_access_memory & done_accessing_memory into methods

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/79/79b4408780b27eeb60de7f3fe10bc654dddcf067/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/79/79b4408780b27eeb60de7f3fe10bc654dddcf067//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/79/79b4408780b27eeb60de7f3fe10bc654dddcf067//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-28  9:03 [binutils-gdb] gdbserver: turn target op 'join' into a method gdb-buildbot
@ 2020-02-28 10:58 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-28 10:58 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/2008

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        95a49a3939127a22c2c5e0401d97e00995593bc4

Subject of commit:
        gdbserver: turn target op 'join' into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/95/95a49a3939127a22c2c5e0401d97e00995593bc4/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 3
==============================================

*** 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/95/95a49a3939127a22c2c5e0401d97e00995593bc4//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/95/95a49a3939127a22c2c5e0401d97e00995593bc4//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-28  6:09 [binutils-gdb] gdbserver: turn target op 'mourn' into a method gdb-buildbot
@ 2020-02-28  7:53 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-28  7:53 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/2007

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        8adb37b9c039168ed8805c5edffc34e12d84ff04

Subject of commit:
        gdbserver: turn target op 'mourn' into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/8a/8adb37b9c039168ed8805c5edffc34e12d84ff04/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/8a/8adb37b9c039168ed8805c5edffc34e12d84ff04//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/8a/8adb37b9c039168ed8805c5edffc34e12d84ff04//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-27 23:07 [binutils-gdb] gdbserver: turn target op 'attach' into a method gdb-buildbot
@ 2020-02-28  1:10 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-28  1:10 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/2004

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        ef03dad808f48e8a6014ca7284e4d52a1e22f27c

Subject of commit:
        gdbserver: turn target op 'attach' into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/ef/ef03dad808f48e8a6014ca7284e4d52a1e22f27c/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/ef/ef03dad808f48e8a6014ca7284e4d52a1e22f27c//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/ef/ef03dad808f48e8a6014ca7284e4d52a1e22f27c//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-27 22:32 [binutils-gdb] gdbserver: turn target op 'post_create_inferior' into a method gdb-buildbot
@ 2020-02-27 22:04 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-27 22:04 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/2003

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        6dee9afb0eb280dfe5ffa5418f5fd073f4f2d50a

Subject of commit:
        gdbserver: turn target op 'post_create_inferior' into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/6d/6dee9afb0eb280dfe5ffa5418f5fd073f4f2d50a/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/6d/6dee9afb0eb280dfe5ffa5418f5fd073f4f2d50a//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/6d/6dee9afb0eb280dfe5ffa5418f5fd073f4f2d50a//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-27 19:46 [binutils-gdb] gdbserver: turn target op 'create_inferior' into a method gdb-buildbot
@ 2020-02-27 19:43 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-27 19:43 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/2002

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        15295543f94cc5951e1d2802d97b228777e6828e

Subject of commit:
        gdbserver: turn target op 'create_inferior' into a method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/15/15295543f94cc5951e1d2802d97b228777e6828e/

*** 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/15/15295543f94cc5951e1d2802d97b228777e6828e//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/15/15295543f94cc5951e1d2802d97b228777e6828e//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-27 13:47 [binutils-gdb] Stop the BFD library from automatically converting OS and PROC specific symbol section indicies to SHN_ABS, and provide a hook for backends to decide how such indicies should be processed gdb-buildbot
@ 2020-02-27 15:30 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-27 15:30 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/2000

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        00e49dff20421e0f8f28ee74cec12a0bae8f1b82

Subject of commit:
        Stop the BFD library from automatically converting OS and PROC specific symbol section indicies to SHN_ABS, and provide a hook for backends to decide how such indicies should be processed.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/00/00e49dff20421e0f8f28ee74cec12a0bae8f1b82/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/00/00e49dff20421e0f8f28ee74cec12a0bae8f1b82//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/00/00e49dff20421e0f8f28ee74cec12a0bae8f1b82//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-27  6:11 [binutils-gdb] Two compute_and_set_names simplifications gdb-buildbot
@ 2020-02-27  5:58 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-27  5:58 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/1996

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        869d89506ca4b97b1b31d0d9e7508d980a3653b6

Subject of commit:
        Two compute_and_set_names simplifications

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/86/869d89506ca4b97b1b31d0d9e7508d980a3653b6/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/86/869d89506ca4b97b1b31d0d9e7508d980a3653b6//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/86/869d89506ca4b97b1b31d0d9e7508d980a3653b6//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-26 20:52 [binutils-gdb] gdb: dwarf2/read.c: remove unused objfile parameters/variables gdb-buildbot
@ 2020-02-26 20:37 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-26 20:37 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/1992

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        298e9637305ee85f630638ba723494fb208eabad

Subject of commit:
        gdb: dwarf2/read.c: remove unused objfile parameters/variables

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/29/298e9637305ee85f630638ba723494fb208eabad/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/29/298e9637305ee85f630638ba723494fb208eabad//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/29/298e9637305ee85f630638ba723494fb208eabad//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-26 14:37 [binutils-gdb] [gdb/testsuite] Fix corefile-buildid.exp with check-read1 gdb-buildbot
@ 2020-02-26 16:12 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-26 16:12 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/1990

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        623563f79db9c2d576303565f8ba1415c911c452

Subject of commit:
        [gdb/testsuite] Fix corefile-buildid.exp with check-read1

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/62/623563f79db9c2d576303565f8ba1415c911c452/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/62/623563f79db9c2d576303565f8ba1415c911c452//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/62/623563f79db9c2d576303565f8ba1415c911c452//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-26  7:54 [binutils-gdb] Merge changes from GCC for the config/ directory gdb-buildbot
@ 2020-02-26  9:12 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-26  9:12 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/1987

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        9f1528a1bdb541510c56d48bbd77b50b617cb952

Subject of commit:
        Merge changes from GCC for the config/ directory

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/9f/9f1528a1bdb541510c56d48bbd77b50b617cb952/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/9f/9f1528a1bdb541510c56d48bbd77b50b617cb952//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/9f/9f1528a1bdb541510c56d48bbd77b50b617cb952//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-25 17:41 [binutils-gdb] [gdb/testsuite] Be quiet about missing prelink in solib-overlap.exp gdb-buildbot
@ 2020-02-25 19:13 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-25 19:13 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/1981

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        86cbc5dc163fb8f0927b82d5f0e3809a3820389b

Subject of commit:
        [gdb/testsuite] Be quiet about missing prelink in solib-overlap.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/86/86cbc5dc163fb8f0927b82d5f0e3809a3820389b/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: server exits
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/Ubuntu-Aarch64-native-gdbserver-m64/86/86cbc5dc163fb8f0927b82d5f0e3809a3820389b//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/86/86cbc5dc163fb8f0927b82d5f0e3809a3820389b//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-25 15:19 [binutils-gdb] [gdb/testsuite] Ignore pass in gdb_caching_proc gdb-buildbot
@ 2020-02-25 16:53 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-25 16:53 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/1980

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        9db2b96b0759fda3347743caba66a395d115e335

Subject of commit:
        [gdb/testsuite] Ignore pass in gdb_caching_proc

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/9d/9db2b96b0759fda3347743caba66a395d115e335/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/9d/9db2b96b0759fda3347743caba66a395d115e335//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/9d/9db2b96b0759fda3347743caba66a395d115e335//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-25  5:39 [binutils-gdb] _bfd_mul_overflow gdb-buildbot
@ 2020-02-25  7:35 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-25  7:35 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/1976

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        1f4361a77b18c5ab32baf2f30fefe5e301e017be

Subject of commit:
        _bfd_mul_overflow

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/1f/1f4361a77b18c5ab32baf2f30fefe5e301e017be/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/1f/1f4361a77b18c5ab32baf2f30fefe5e301e017be//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/1f/1f4361a77b18c5ab32baf2f30fefe5e301e017be//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-24 21:02 [binutils-gdb] bfd_get_size cache gdb-buildbot
@ 2020-02-25  0:35 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-25  0:35 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/1973

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        b03202e32c8235997b3485b0b4655926ad97a1cc

Subject of commit:
        bfd_get_size cache

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/b0/b03202e32c8235997b3485b0b4655926ad97a1cc/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/b0/b03202e32c8235997b3485b0b4655926ad97a1cc//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/b0/b03202e32c8235997b3485b0b4655926ad97a1cc//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-24 18:26 [binutils-gdb] bfd_get_file_size calls gdb-buildbot
@ 2020-02-24 19:59 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-24 19:59 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/1971

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        7c5fa58ea907c46817b915ec8b9b35a180e0e74c

Subject of commit:
        bfd_get_file_size calls

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/7c/7c5fa58ea907c46817b915ec8b9b35a180e0e74c/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/7c/7c5fa58ea907c46817b915ec8b9b35a180e0e74c//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/7c/7c5fa58ea907c46817b915ec8b9b35a180e0e74c//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-24 12:54 [binutils-gdb] c99 elfxx-riscv.c fix gdb-buildbot
@ 2020-02-24 12:54 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-24 12:54 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/1968

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        2d0e121701a95e0f37af02bc622393b1ccd88c76

Subject of commit:
        c99 elfxx-riscv.c fix

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/2d/2d0e121701a95e0f37af02bc622393b1ccd88c76/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/2d/2d0e121701a95e0f37af02bc622393b1ccd88c76//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/2d/2d0e121701a95e0f37af02bc622393b1ccd88c76//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-24  9:10 [binutils-gdb] gdbserver: Add RISC-V/Linux support gdb-buildbot
@ 2020-02-24 11:17 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-24 11:17 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/1967

Author:
        Maciej W. Rozycki <macro@wdc.com>

Commit tested:
        bf84f7066626c78884436e1c39fb60f04c665f21

Subject of commit:
        gdbserver: Add RISC-V/Linux support

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/bf/bf84f7066626c78884436e1c39fb60f04c665f21/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/bf/bf84f7066626c78884436e1c39fb60f04c665f21//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/bf/bf84f7066626c78884436e1c39fb60f04c665f21//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-24  6:35 [binutils-gdb] gdb/riscv: Update API for looking up target descriptions gdb-buildbot
@ 2020-02-24  8:16 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-24  8:16 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/1966

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        d1c9b20ff9eca75a6bc33105cb2a46cebc67c482

Subject of commit:
        gdb/riscv: Update API for looking up target descriptions

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/d1/d1c9b20ff9eca75a6bc33105cb2a46cebc67c482/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/d1/d1c9b20ff9eca75a6bc33105cb2a46cebc67c482//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/d1/d1c9b20ff9eca75a6bc33105cb2a46cebc67c482//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-24  2:18 [binutils-gdb] gdb: change print format of flag enums with value 0 gdb-buildbot
@ 2020-02-24  3:18 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-24  3:18 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/1964

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        373d7ac0f158764e32d621b4d311771189001f1c

Subject of commit:
        gdb: change print format of flag enums with value 0

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/37/373d7ac0f158764e32d621b4d311771189001f1c/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/37/373d7ac0f158764e32d621b4d311771189001f1c//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/37/373d7ac0f158764e32d621b4d311771189001f1c//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-23 23:23 [binutils-gdb] gdb: allow duplicate enumerators in flag enums gdb-buildbot
@ 2020-02-23 22:51 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-23 22:51 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/1962

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        6740f0cc3bd1530e4aeefe856d9cfe5c0ba2098a

Subject of commit:
        gdb: allow duplicate enumerators in flag enums

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/67/6740f0cc3bd1530e4aeefe856d9cfe5c0ba2098a/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/67/6740f0cc3bd1530e4aeefe856d9cfe5c0ba2098a//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/67/6740f0cc3bd1530e4aeefe856d9cfe5c0ba2098a//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-23 11:31 [binutils-gdb] [gdb/testsuite] Handle missing gnatmake in gnat_runtime_has_debug_info gdb-buildbot
@ 2020-02-23 13:35 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-23 13:35 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/1958

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        d4295de4f3d6cb24289d79c424d430b0df38db07

Subject of commit:
        [gdb/testsuite] Handle missing gnatmake in gnat_runtime_has_debug_info

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/d4/d4295de4f3d6cb24289d79c424d430b0df38db07/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/d4/d4295de4f3d6cb24289d79c424d430b0df38db07//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/d4/d4295de4f3d6cb24289d79c424d430b0df38db07//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-23  4:51 [binutils-gdb] x86: fold certain VCVT{,U}SI2S{S,D} templates gdb-buildbot
@ 2020-02-23  6:28 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-23  6:28 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/1955

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        1f730c46141c1513e72cb24d471834b448d6d0e6

Subject of commit:
        x86: fold certain VCVT{,U}SI2S{S,D} templates

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/1f/1f730c46141c1513e72cb24d471834b448d6d0e6/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: server exits
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/Ubuntu-Aarch64-native-gdbserver-m64/1f/1f730c46141c1513e72cb24d471834b448d6d0e6//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/1f/1f730c46141c1513e72cb24d471834b448d6d0e6//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-23  0:04 [binutils-gdb] x86/Intel: improve diagnostics for ambiguous VCVT* operands gdb-buildbot
@ 2020-02-23  1:49 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-23  1:49 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/1953

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        b9915cbc7d3ac2b9cd136248defbf9538b9a9bcf

Subject of commit:
        x86/Intel: improve diagnostics for ambiguous VCVT* operands

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/b9/b9915cbc7d3ac2b9cd136248defbf9538b9a9bcf/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/b9/b9915cbc7d3ac2b9cd136248defbf9538b9a9bcf//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/b9/b9915cbc7d3ac2b9cd136248defbf9538b9a9bcf//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-22 18:57 [binutils-gdb] x86: Don't disable SSE4a when disabling SSE4 gdb-buildbot
@ 2020-02-22 18:58 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-22 18:58 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/1950

Author:
        H.J. Lu <hjl.tools@gmail.com>

Commit tested:
        af5c13b01ecc416d26321a2d60943d787ba24c7f

Subject of commit:
        x86: Don't disable SSE4a when disabling SSE4

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/af/af5c13b01ecc416d26321a2d60943d787ba24c7f/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/af/af5c13b01ecc416d26321a2d60943d787ba24c7f//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/af/af5c13b01ecc416d26321a2d60943d787ba24c7f//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-21 16:05 [binutils-gdb] Have testsuite find gdbserver in new location gdb-buildbot
@ 2020-02-21 22:59 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-21 22:59 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/1945

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        f251f50533110132ce83678d644d53b1d1110b05

Subject of commit:
        Have testsuite find gdbserver in new location

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/f2/f251f50533110132ce83678d644d53b1d1110b05/

*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.ada/O2_float_param.exp: frame
new FAIL: gdb.ada/access_tagged_param.exp: continue
UNRESOLVED -> FAIL: gdb.ada/iwide.exp: print My_Drawable
new FAIL: gdb.ada/ref_param.exp: frame argument value printed
UNRESOLVED -> FAIL: gdb.ada/tagged_access.exp: ptype c.all
UNRESOLVED -> FAIL: gdb.base/break-probes.exp: ensure using probes
new FAIL: gdb.base/catch-syscall.exp: execve: continue to main
new FAIL: gdb.base/catch-syscall.exp: execve: continue until exit
new FAIL: gdb.base/catch-syscall.exp: execve: syscall execve has returned
UNRESOLVED -> FAIL: gdb.base/compare-sections.exp: after reload: compare-sections
PASS -> FAIL: gdb.base/compare-sections.exp: after reload: compare-sections -r
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections -r
PASS -> FAIL: gdb.base/compare-sections.exp: compare-sections .text
new FAIL: gdb.base/compare-sections.exp: read-only: compare-sections -r
new KFAIL: gdb.base/foll-vfork.exp: exit: vfork child follow, finish after tcatch vfork: finish
UNRESOLVED -> FAIL: gdb.base/gdb-caching-proc.exp: run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tc-td: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tc-tf: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tc-tld: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tc: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tc: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-td: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tf: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ti: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tl: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tld: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tll: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ts: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tdc: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tc: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-td: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tf: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-ti: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tl: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tld: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tll: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-ts: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tfc: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-td: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tf: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tld: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ti: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tl-td: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tl-tf: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tl-tld: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tl: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tc: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-td: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tf: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-ti: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tl: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tld: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tll: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-ts: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tldc: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tll-td: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tll-tf: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tll-tld: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tll: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ts-td: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ts-tf: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ts-tld: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ts: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tc-td: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tc-tf: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tc-tld: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tc: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-tc: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-td: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-tf: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-ti: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-tl: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-tld: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-tll: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-ts: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tdc: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tc: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-td: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tf: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-ti: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tl: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tld: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tll: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-ts: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tfc: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ti-td: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tf: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tld: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ti: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tl-td: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tl-tf: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tl-tld: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tl: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tc: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-td: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tf: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-ti: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tl: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tld: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tll: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-ts: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tldc: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tll-td: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tll-tf: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tll-tld: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tll: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ts-td: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ts-tf: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ts-tld: can't run to main
UNRESOLVED -> FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ts: can't run to main
new KFAIL: gdb.base/info-macros.exp: info macros info-macros.c:42
UNRESOLVED -> FAIL: gdb.base/info-types.exp: l=c++: can't run to main
UNRESOLVED -> FAIL: gdb.base/info-types.exp: l=c: can't run to main
new FAIL: gdb.base/interrupt-daemon.exp: bg: continue&
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt cmd stops process
new FAIL: gdb.base/interrupt-daemon.exp: fg: ctrl-c stops process
new FAIL: gdb.base/large-frame.exp: optimize=-O0: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O1: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O2: backtrace
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_2_from_macscp3
UNRESOLVED -> FAIL: gdb.base/max-depth.exp: l=c++: can't run to main
UNRESOLVED -> FAIL: gdb.base/max-depth.exp: l=c: can't run to main
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : shell sleep 1
new FAIL: gdb.base/setshow.exp: set language asm
new KFAIL: gdb.base/sigbpt.exp: stepi bp at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before and at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi; stepi out of handler
new FAIL: gdb.base/step-over-no-symbols.exp: displaced=auto: advanced
new FAIL: gdb.base/step-over-no-symbols.exp: displaced=off: advanced
new FAIL: gdb.base/step-over-no-symbols.exp: displaced=on: advanced
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : vfork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : vfork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=on: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/store.exp: upvar doublest l; print old r, expecting -2
new FAIL: gdb.base/store.exp: var doublest l; print old r, expecting -2
new KFAIL: gdb.base/utf8-identifiers.exp: tab complete "break fun"
new KFAIL: gdb.base/watchpoint-unaligned.exp: wpcount
new KPASS: gdb.cp/cpexprs.exp: p CV::m
UNRESOLVED -> FAIL: gdb.cp/infcall-nodebug.exp: l=c++: s=debug: can't run to main
UNRESOLVED -> FAIL: gdb.cp/infcall-nodebug.exp: l=c++: s=nodebug: can't run to main
UNRESOLVED -> FAIL: gdb.cp/infcall-nodebug.exp: l=c: s=debug: can't run to main
UNRESOLVED -> FAIL: gdb.cp/infcall-nodebug.exp: l=c: s=nodebug: can't run to main
new KFAIL: gdb.cp/local.exp: ptype InnerLocal::NestedInnerLocal
new KFAIL: gdb.cp/oranking.exp: p foo0
new KFAIL: gdb.cp/oranking.exp: p foo10
new KFAIL: gdb.cp/oranking.exp: p foo11
new KFAIL: gdb.cp/oranking.exp: p foo13
new KFAIL: gdb.cp/oranking.exp: p foo14
new KFAIL: gdb.cp/oranking.exp: p foo2
new KFAIL: gdb.cp/rvalue-ref-overload.exp: rvalue reference overload
FAIL -> KFAIL: gdb.cp/templates.exp: ptype fvpchar
new KFAIL: gdb.cp/var-tag.exp: global collision: print global
new KFAIL: gdb.cp/virtfunc.exp: print pEe->D::vg
FAIL -> KFAIL: gdb.mi/mi-until.exp: until after while loop
new FAIL: gdb.multi/multi-re-run.exp: re_run_inf=1: iter=1: running to all_started in runto
UNRESOLVED -> FAIL: gdb.multi/multi-re-run.exp: re_run_inf=2: running to all_started in runto
new KFAIL: gdb.opt/inline-cmds.exp: next to second func1
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 2
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 3
new FAIL: gdb.server/ext-run.exp: get process list
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=3: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=4: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=5: created new thread
new KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: detach: continue
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: killed outside: continue
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: continue
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: continue
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: server exits
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_asm_test
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_c_test
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_recursion_test 0
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_asm_test
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_c_test
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_recursion_test 0
new FAIL: gdb.trace/change-loc.exp: 1 trace: continue to marker 2
new FAIL: gdb.trace/change-loc.exp: 1 trace: continue to marker 3
new FAIL: gdb.trace/change-loc.exp: 1 trace: tfind frame 0
new FAIL: gdb.trace/change-loc.exp: 1 trace: tracepoint with two locations - installed
new FAIL: gdb.trace/change-loc.exp: 1 trace: tracepoint with two locations - pending
new FAIL: gdb.trace/change-loc.exp: 2 trace: continue to marker 2
new FAIL: gdb.trace/change-loc.exp: 2 trace: continue to marker 3
new FAIL: gdb.trace/change-loc.exp: 2 trace: tfind frame 2
new FAIL: gdb.trace/change-loc.exp: 2 trace: tracepoint with two locations - installed
new FAIL: gdb.trace/change-loc.exp: 2 trace: tracepoint with two locations - pending
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local char
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local double
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local float
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local int
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member char
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member double
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member float
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member int
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #0
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #1
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #2
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #3
new FAIL: gdb.trace/collection.exp: collect register locals collectively: start trace experiment
new FAIL: gdb.trace/collection.exp: collect register locals collectively: tfind test frame
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local char
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local double
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local float
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local int
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member char
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member double
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member float
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member int
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #0
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #1
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #2
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #3
new FAIL: gdb.trace/collection.exp: collect register locals individually: define actions
new FAIL: gdb.trace/pending.exp: trace installed_in_trace: continue to marker 2
new FAIL: gdb.trace/pending.exp: trace installed_in_trace: tfind test frame 0
new FAIL: gdb.trace/signal.exp: tracepoint 4 hit 3 times
new FAIL: gdb.trace/signal.exp: tracepoint 5 hit 3 times
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable registers: ctf: info registers, multiple registers not available
new FAIL: gdb.trace/unavailable.exp: unavailable registers: info registers, multiple registers not available
new FAIL: gdb.trace/unavailable.exp: unavailable registers: tfile: info registers, multiple registers not available
new FAIL: gdb.tui/resize.exp: source box after resize
==============================================

*** 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/f2/f251f50533110132ce83678d644d53b1d1110b05//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/f2/f251f50533110132ce83678d644d53b1d1110b05//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-15  9:28 [binutils-gdb] Change section functions to be methods of dwarf2_section_info gdb-buildbot
@ 2020-02-15  7:46 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-15  7:46 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/1931

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        96b792931fe4dd30f42eecd711ad5e44b6b135a3

Subject of commit:
        Change section functions to be methods of dwarf2_section_info

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/96/96b792931fe4dd30f42eecd711ad5e44b6b135a3/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.mi/mi-cli.exp: -break-insert -t basics.c:$line_main_hello
==============================================

*** 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/96/96b792931fe4dd30f42eecd711ad5e44b6b135a3//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/96/96b792931fe4dd30f42eecd711ad5e44b6b135a3//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-11 12:51 [binutils-gdb] Make fputs_unfiltered use fputs_maybe_filtered gdb-buildbot
@ 2020-02-11 13:47 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-11 13: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/1927

Author:
        Iain Buclaw <ibuclaw@gdcproject.org>

Commit tested:
        dfcb27e41d37b8bff178697f5f33ec288387fb01

Subject of commit:
        Make fputs_unfiltered use fputs_maybe_filtered

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/df/dfcb27e41d37b8bff178697f5f33ec288387fb01/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.mi/mi-cli.exp: -break-insert -t basics.c:$line_main_hello
==============================================

*** 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/df/dfcb27e41d37b8bff178697f5f33ec288387fb01//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/df/dfcb27e41d37b8bff178697f5f33ec288387fb01//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-09 16:08 [binutils-gdb] Revert basenames_may_differ patch gdb-buildbot
@ 2020-02-09 15:31 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-09 15:31 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/1925

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        5abbbe1d13e03496af5564b997f3c3a2e79b4d73

Subject of commit:
        Revert basenames_may_differ patch

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/5a/5abbbe1d13e03496af5564b997f3c3a2e79b4d73/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<t"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<t"
==============================================

*** 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/5a/5abbbe1d13e03496af5564b997f3c3a2e79b4d73//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/5a/5abbbe1d13e03496af5564b997f3c3a2e79b4d73//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-07 18:22 [binutils-gdb] Move gdbserver to top level gdb-buildbot
@ 2020-02-09 13:21 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-09 13:21 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/1924

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        919adfe8409211c726c1d05b47ca59890ee648f1

Subject of commit:
        Move gdbserver to top level

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/91/919adfe8409211c726c1d05b47ca59890ee648f1/

*** Diff to previous build ***
==============================================
FAIL -> UNRESOLVED: gdb.ada/O2_float_param.exp: frame
PASS -> FAIL: gdb.ada/access_to_unbounded_array.exp: print Aos
PASS -> UNRESOLVED: gdb.ada/aliased_array.exp: print bt
PASS -> FAIL: gdb.ada/array_of_variable_length.exp: print pck.a
PASS -> UNRESOLVED: gdb.ada/array_of_variable_length.exp: ptype pck.a
PASS -> FAIL: gdb.ada/array_ptr_renaming.exp: print nt
PASS -> FAIL: gdb.ada/array_ptr_renaming.exp: print ntp
PASS -> FAIL: gdb.ada/array_ptr_renaming.exp: print ntp.all
new UNRESOLVED: gdb.ada/array_return.exp: cannot run to main, testcase aborted
PASS -> UNRESOLVED: gdb.ada/array_subscript_addr.exp: print a
PASS -> FAIL: gdb.ada/arraydim.exp: print m'first
PASS -> FAIL: gdb.ada/arraydim.exp: print m'last
PASS -> FAIL: gdb.ada/arraydim.exp: print m'length
PASS -> UNRESOLVED: gdb.ada/arraydim.exp: ptype m
PASS -> FAIL: gdb.ada/arrayidx.exp: print e_one_two_three
PASS -> FAIL: gdb.ada/arrayidx.exp: print e_one_two_three, indexes off
PASS -> FAIL: gdb.ada/arrayidx.exp: print empty
PASS -> FAIL: gdb.ada/arrayidx.exp: print empty, indexes off
PASS -> FAIL: gdb.ada/arrayidx.exp: print few_reps
PASS -> FAIL: gdb.ada/arrayidx.exp: print few_reps, indexes off
PASS -> FAIL: gdb.ada/arrayidx.exp: print many_reps
PASS -> FAIL: gdb.ada/arrayidx.exp: print many_reps, indexes off
PASS -> FAIL: gdb.ada/arrayidx.exp: print one_two_three
PASS -> FAIL: gdb.ada/arrayidx.exp: print one_two_three, indexes off
PASS -> FAIL: gdb.ada/arrayidx.exp: print p_one_two_three
PASS -> FAIL: gdb.ada/arrayidx.exp: print p_one_two_three, indexes off
PASS -> FAIL: gdb.ada/arrayidx.exp: print r_two_three
PASS -> FAIL: gdb.ada/arrayidx.exp: print r_two_three, indexes off
PASS -> FAIL: gdb.ada/arrayidx.exp: print u_one_two_three
PASS -> FAIL: gdb.ada/arrayidx.exp: print u_one_two_three, indexes off
PASS -> UNRESOLVED: gdb.ada/arrayidx.exp: set print array-indexes off
PASS -> UNRESOLVED: gdb.ada/arrayparam.exp: print call_me
PASS -> FAIL: gdb.ada/arrayparam.exp: print first after function call
PASS -> FAIL: gdb.ada/arrayparam.exp: print last after function call
PASS -> FAIL: gdb.ada/arrayparam.exp: print length after function call
PASS -> UNRESOLVED: gdb.ada/assign_arr.exp: print assign_arr_input.u2 :=
PASS -> FAIL: gdb.ada/attr_ref_and_charlit.exp: gdb_test
PASS -> UNRESOLVED: gdb.ada/attr_ref_and_charlit.exp: print s'first
PASS -> FAIL: gdb.ada/attr_ref_and_charlit.exp: print s'last
PASS -> FAIL: gdb.ada/attr_ref_and_charlit.exp: print s
PASS -> UNRESOLVED: gdb.ada/bad-task-bp-keyword.exp: break *break_me'address TASK 2
PASS -> FAIL: gdb.ada/bias.exp: print a
PASS -> FAIL: gdb.ada/bias.exp: print cval
PASS -> FAIL: gdb.ada/bias.exp: print spr
PASS -> UNRESOLVED: gdb.ada/bias.exp: print x
PASS -> FAIL: gdb.ada/bias.exp: print x * x1
PASS -> FAIL: gdb.ada/bias.exp: print x + x1
PASS -> FAIL: gdb.ada/bias.exp: print x - x1
PASS -> FAIL: gdb.ada/bias.exp: print x / x1
PASS -> FAIL: gdb.ada/bias.exp: print x := 5
PASS -> FAIL: gdb.ada/bias.exp: print y
PASS -> FAIL: gdb.ada/bias.exp: print y /= y
PASS -> FAIL: gdb.ada/bias.exp: print y /= y1
PASS -> FAIL: gdb.ada/bias.exp: print y < y1
PASS -> FAIL: gdb.ada/bias.exp: print y <= y1
PASS -> FAIL: gdb.ada/bias.exp: print y = y
PASS -> FAIL: gdb.ada/bias.exp: print y > y1
PASS -> FAIL: gdb.ada/bias.exp: print y >= y1
PASS -> FAIL: gdb.ada/bias.exp: print/c cval
PASS -> FAIL: gdb.ada/bias.exp: ptype x + x1
PASS -> FAIL: gdb.ada/bias.exp: re-read x after storing
PASS -> FAIL: gdb.ada/big_packed_array.exp: print bad
PASS -> UNRESOLVED: gdb.ada/big_packed_array.exp: print good
PASS -> UNRESOLVED: gdb.ada/bp_enum_homonym.exp: run to pck.archive breakpoint
PASS -> UNRESOLVED: gdb.ada/bp_fun_addr.exp: run until breakpoint at bp_fun_addr'address
new UNRESOLVED: gdb.ada/bp_inlined_func.exp: cannot run to main, testcase aborted
PASS -> FAIL: gdb.ada/bp_range_type.exp: print small_value
PASS -> UNRESOLVED: gdb.ada/bp_range_type.exp: run to breakpoint
PASS -> UNRESOLVED: gdb.ada/byte_packed_arr.exp: print broken
new UNRESOLVED: gdb.ada/catch_assert_if.exp: cannot run to main, testcase aborted
new UNRESOLVED: gdb.ada/catch_ex.exp: cannot run to main, testcase aborted
PASS -> FAIL: gdb.ada/char_enum.exp: print Char_Enum_Type'
PASS -> UNRESOLVED: gdb.ada/char_enum.exp: ptype Char_Enum_Type
PASS -> FAIL: gdb.ada/char_param.exp: call next
PASS -> FAIL: gdb.ada/char_param.exp: print procedure_result after calling next
PASS -> FAIL: gdb.ada/char_param.exp: print procedure_result after calling same
PASS -> UNRESOLVED: gdb.ada/char_param.exp: print procedure_result before calling same
PASS -> FAIL: gdb.ada/complete.exp: complete p ambig
PASS -> FAIL: gdb.ada/complete.exp: complete p external_ident
PASS -> UNRESOLVED: gdb.ada/complete.exp: complete p my_glob
PASS -> FAIL: gdb.ada/complete.exp: complete p some
PASS -> FAIL: gdb.ada/complete.exp: interactive complete 'print some'
PASS -> FAIL: gdb.ada/cond_lang.exp: continue
PASS -> UNRESOLVED: gdb.ada/cond_lang.exp: show lang
PASS -> UNRESOLVED: gdb.ada/display_nested.exp: display s
PASS -> UNRESOLVED: gdb.ada/dyn_arrayidx.exp: maintenance set ada ignore-descriptive-types
PASS -> FAIL: gdb.ada/dyn_arrayidx.exp: ptype array_type
PASS -> UNRESOLVED: gdb.ada/enum_idx_packed.exp: print full
PASS -> FAIL: gdb.ada/enum_idx_packed.exp: print full'first
new UNRESOLVED: gdb.ada/excep_handle.exp: cannot run to main, testcase aborted
PASS -> FAIL: gdb.ada/expr_delims.exp: check that watchpoint is set correctly.
PASS -> UNRESOLVED: gdb.ada/expr_delims.exp: continue
PASS -> FAIL: gdb.ada/expr_delims.exp: print variable 'thread'
PASS -> FAIL: gdb.ada/expr_delims.exp: set conditional watchpoint.
PASS -> FAIL: gdb.ada/expr_delims.exp: set plain watchpoint on variable 'thread'
PASS -> FAIL: gdb.ada/expr_with_funcall.exp: print 1 + something
PASS -> FAIL: gdb.ada/expr_with_funcall.exp: print 246 - something
PASS -> FAIL: gdb.ada/expr_with_funcall.exp: print 3 * something
PASS -> FAIL: gdb.ada/expr_with_funcall.exp: print 496 / something
PASS -> FAIL: gdb.ada/expr_with_funcall.exp: print something
PASS -> FAIL: gdb.ada/expr_with_funcall.exp: print something * 3
PASS -> FAIL: gdb.ada/expr_with_funcall.exp: print something + 1
PASS -> FAIL: gdb.ada/expr_with_funcall.exp: print something - 2
PASS -> FAIL: gdb.ada/expr_with_funcall.exp: print something / 4
PASS -> UNRESOLVED: gdb.ada/exprs.exp: Long_Long_Integer ** Y
PASS -> FAIL: gdb.ada/exprs.exp: long_float'max
PASS -> FAIL: gdb.ada/exprs.exp: long_float'min
PASS -> UNRESOLVED: gdb.ada/fin_fun_out.exp: finish
PASS -> FAIL: gdb.ada/fixed_cmp.exp: print My_Var > 10
PASS -> UNRESOLVED: gdb.ada/fixed_cmp.exp: print My_Var > 10.0
PASS -> FAIL: gdb.ada/fixed_cmp.exp: print My_Var > 20
PASS -> FAIL: gdb.ada/fixed_cmp.exp: print My_Var > 20.0
PASS -> UNRESOLVED: gdb.ada/fixed_points.exp: p on a fixed point type
PASS -> FAIL: gdb.ada/fixed_points.exp: p on a new fixed point type
PASS -> FAIL: gdb.ada/fixed_points.exp: p on a subtype fixed point type
PASS -> FAIL: gdb.ada/fixed_points.exp: print Overprecise_Object
PASS -> FAIL: gdb.ada/fixed_points.exp: ptype Overprecise_Object
PASS -> FAIL: gdb.ada/float_param.exp: call set_double
PASS -> UNRESOLVED: gdb.ada/float_param.exp: call set_float
PASS -> FAIL: gdb.ada/float_param.exp: call set_long_double
PASS -> FAIL: gdb.ada/float_param.exp: print global_double
PASS -> FAIL: gdb.ada/float_param.exp: print global_float
PASS -> FAIL: gdb.ada/float_param.exp: print global_long_double
PASS -> FAIL: gdb.ada/formatted_ref.exp: print s.x = 13
PASS -> UNRESOLVED: gdb.ada/formatted_ref.exp: print/x s
PASS -> FAIL: gdb.ada/formatted_ref.exp: print/x s'access
PASS -> FAIL: gdb.ada/formatted_ref.exp: print/x s'unchecked_access
PASS -> FAIL: gdb.ada/formatted_ref.exp: print/x s'unrestricted_access
PASS -> FAIL: gdb.ada/frame_arg_lang.exp: backtrace with auto: c
PASS -> FAIL: gdb.ada/frame_arg_lang.exp: backtrace with language back to 'auto; c'
PASS -> FAIL: gdb.ada/frame_arg_lang.exp: backtrace with language forced to 'c'
PASS -> UNRESOLVED: gdb.ada/frame_arg_lang.exp: set print frame-arguments all
PASS -> FAIL: gdb.ada/frame_arg_lang.exp: show language when set back to 'auto; c'
PASS -> FAIL: gdb.ada/frame_arg_lang.exp: show language when set to 'auto; c'
PASS -> FAIL: gdb.ada/fun_overload_menu.exp: 1
PASS -> UNRESOLVED: gdb.ada/fun_renaming.exp: print fun_rename_test_next
PASS -> FAIL: gdb.ada/fun_renaming.exp: print pack.renamed_fun_rename_test_next
PASS -> FAIL: gdb.ada/fun_renaming.exp: print renamed_fun_rename_test_next
PASS -> UNRESOLVED: gdb.ada/funcall_char.exp: print f
PASS -> UNRESOLVED: gdb.ada/funcall_param.exp: p ident
PASS -> UNRESOLVED: gdb.ada/funcall_ptr.exp: Check that initial value of GA is null
PASS -> FAIL: gdb.ada/funcall_ptr.exp: Check that value of GA is 0x1234
PASS -> FAIL: gdb.ada/funcall_ptr.exp: call pck.p
XPASS -> UNRESOLVED: gdb.ada/funcall_ref.exp: p get
PASS -> FAIL: gdb.ada/homonym.exp: continue until BREAK_2
PASS -> FAIL: gdb.ada/homonym.exp: print lcl at BREAK_1
PASS -> FAIL: gdb.ada/homonym.exp: print lcl at BREAK_2
PASS -> FAIL: gdb.ada/homonym.exp: ptype int_type at BREAK_1
PASS -> FAIL: gdb.ada/homonym.exp: ptype lcl at BREAK_1
PASS -> FAIL: gdb.ada/homonym.exp: ptype lcl at BREAK_2
PASS -> UNRESOLVED: gdb.ada/homonym.exp: ptype local_type at BREAK_1
PASS -> FAIL: gdb.ada/homonym.exp: ptype local_type at BREAK_2
PASS -> FAIL: gdb.ada/homonym.exp: ptype local_type_subtype at BREAK_1
PASS -> FAIL: gdb.ada/homonym.exp: ptype local_type_subtype at BREAK_2
new UNRESOLVED: gdb.ada/info_auto_lang.exp: can't run to some_c.c STOP location
new UNRESOLVED: gdb.ada/info_exc.exp: cannot run to main, testcase aborted
PASS -> UNRESOLVED: gdb.ada/info_locals_renaming.exp: info locals
PASS -> UNRESOLVED: gdb.ada/int_deref.exp: print watch'address
PASS -> UNRESOLVED: gdb.ada/interface.exp: print r
FAIL -> UNRESOLVED: gdb.ada/iwide.exp: print My_Drawable
PASS -> FAIL: gdb.ada/lang_switch.exp: backtrace
PASS -> FAIL: gdb.ada/lang_switch.exp: backtrace with lang set to C
PASS -> UNRESOLVED: gdb.ada/lang_switch.exp: set print frame-arguments all
new UNRESOLVED: gdb.ada/mi_catch_assert.exp: cannot run to main, testcase aborted
new UNRESOLVED: gdb.ada/mi_catch_ex.exp: cannot run to main, testcase aborted
new UNRESOLVED: gdb.ada/mi_catch_ex_hand.exp: cannot run to main, testcase aborted
PASS -> FAIL: gdb.ada/mi_dyn_arr.exp: create bt varobj
PASS -> UNRESOLVED: gdb.ada/mi_dyn_arr.exp: run to foo.adb:22
new FAIL: gdb.ada/mi_dyn_arr.exp: wait for stop
new UNRESOLVED: gdb.ada/mi_ex_cond.exp: cannot run to main, testcase aborted
PASS -> UNRESOLVED: gdb.ada/mi_exc_info.exp: -info-ada-exceptions
PASS -> FAIL: gdb.ada/mi_exc_info.exp: -info-ada-exceptions const.aint
PASS -> FAIL: gdb.ada/mi_exc_info.exp: -info-ada-exceptions task
PASS -> UNRESOLVED: gdb.ada/mi_interface.exp: run to foo.adb:22
new FAIL: gdb.ada/mi_interface.exp: wait for stop
PASS -> FAIL: gdb.ada/mi_ref_changeable.exp: -var-update a at STOP_2
PASS -> FAIL: gdb.ada/mi_ref_changeable.exp: -var-update b at STOP_2
PASS -> FAIL: gdb.ada/mi_ref_changeable.exp: create varobj for a
PASS -> FAIL: gdb.ada/mi_ref_changeable.exp: create varobj for b
PASS -> UNRESOLVED: gdb.ada/mi_ref_changeable.exp: run to foo_rb20_056.adb:25
new FAIL: gdb.ada/mi_ref_changeable.exp: wait for stop
PASS -> FAIL: gdb.ada/mi_string_access.exp: Create var1 varobj
PASS -> FAIL: gdb.ada/mi_string_access.exp: Print var1
PASS -> FAIL: gdb.ada/mi_string_access.exp: Print var1 first child
PASS -> FAIL: gdb.ada/mi_string_access.exp: Print var1 second child
PASS -> FAIL: gdb.ada/mi_string_access.exp: list var1's children
PASS -> UNRESOLVED: gdb.ada/mi_string_access.exp: run to bar.adb:23
new FAIL: gdb.ada/mi_string_access.exp: wait for stop
PASS -> UNRESOLVED: gdb.ada/mi_task_arg.exp: -stack-list-arguments 1
PASS -> FAIL: gdb.ada/mi_task_info.exp: -ada-task-info 3
PASS -> UNRESOLVED: gdb.ada/mi_task_info.exp: -ada-task-info with no argument
PASS -> FAIL: gdb.ada/mi_var_array.exp: create bt varobj
PASS -> FAIL: gdb.ada/mi_var_array.exp: list vta's children
PASS -> UNRESOLVED: gdb.ada/mi_var_array.exp: run to bar.adb:28
new FAIL: gdb.ada/mi_var_array.exp: wait for stop
PASS -> FAIL: gdb.ada/mi_var_union.exp: Create var1 varobj
PASS -> FAIL: gdb.ada/mi_var_union.exp: list var1's children
PASS -> UNRESOLVED: gdb.ada/mi_var_union.exp: run to bar.adb:28
new FAIL: gdb.ada/mi_var_union.exp: wait for stop
PASS -> UNRESOLVED: gdb.ada/n_arr_bound.exp: ptype var
PASS -> FAIL: gdb.ada/null_array.exp: print my_matrix
PASS -> UNRESOLVED: gdb.ada/null_array.exp: print my_table
PASS -> FAIL: gdb.ada/null_array.exp: ptype my_table
PASS -> UNRESOLVED: gdb.ada/null_record.exp: ptype on null record
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: break "+"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: break ops."+"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to "&"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to "*"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to "**"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to "+"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to "-"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to "/"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to "<"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to "<="
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to "="
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ">"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ">="
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to "abs"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to "and"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to "mod"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to "not"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to "or"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to "rem"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to "xor"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ops."&"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ops."*"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ops."**"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ops."+"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ops."-"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ops."/"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ops."<"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ops."<="
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ops."="
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ops.">"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ops.">="
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ops."abs"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ops."and"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ops."mod"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ops."not"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ops."or"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ops."rem"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ops."xor"
PASS -> UNRESOLVED: gdb.ada/out_of_line_in_inlined.exp: bt
PASS -> FAIL: gdb.ada/packed_array.exp: print &var
PASS -> FAIL: gdb.ada/packed_array.exp: print u_var
PASS -> UNRESOLVED: gdb.ada/packed_array.exp: print var
PASS -> FAIL: gdb.ada/packed_array.exp: ptype &var
PASS -> FAIL: gdb.ada/packed_array_assign.exp: print npr :=
PASS -> UNRESOLVED: gdb.ada/packed_array_assign.exp: print pra :=
PASS -> FAIL: gdb.ada/packed_array_assign.exp: print pra
PASS -> UNRESOLVED: gdb.ada/packed_tagged.exp: print x
PASS -> FAIL: gdb.ada/packed_tagged.exp: ptype x
PASS -> UNRESOLVED: gdb.ada/pckd_arr_ren.exp: print var
PASS -> FAIL: gdb.ada/pckd_neg.exp: print SSA
PASS -> UNRESOLVED: gdb.ada/pkd_arr_elem.exp: print test
PASS -> FAIL: gdb.ada/pkd_arr_elem.exp: print test.str
PASS -> FAIL: gdb.ada/pp-rec-component.exp: print /r before
PASS -> UNRESOLVED: gdb.ada/pp-rec-component.exp: print before
PASS -> UNRESOLVED: gdb.ada/print_chars.exp: print C
PASS -> FAIL: gdb.ada/print_chars.exp: print MC
PASS -> FAIL: gdb.ada/print_chars.exp: print WC
PASS -> FAIL: gdb.ada/print_chars.exp: print WWC
PASS -> UNRESOLVED: gdb.ada/print_pc.exp: p /x $pc
PASS -> UNRESOLVED: gdb.ada/ptr_typedef.exp: print my_blob.bees
PASS -> UNRESOLVED: gdb.ada/ptype_array.exp: ptype 2..5
PASS -> UNRESOLVED: gdb.ada/ptype_field.exp: ptype circle
new UNRESOLVED: gdb.ada/ptype_tagged_param.exp: failed to run to GNAT_Debug_Info_Test
PASS -> UNRESOLVED: gdb.ada/py_range.exp: python print
PASS -> FAIL: gdb.ada/py_taft.exp: python print
PASS -> UNRESOLVED: gdb.ada/py_taft.exp: python v = gdb.parse_and_eval
PASS -> UNRESOLVED: gdb.ada/rdv_wait.exp: task 2
PASS -> UNRESOLVED: gdb.ada/ref_tick_size.exp: print d1'size = d2'size
PASS -> UNRESOLVED: gdb.ada/repeat_dyn.exp: print a1
PASS -> FAIL: gdb.ada/same_component_name.exp: Print bottom component field
PASS -> FAIL: gdb.ada/same_component_name.exp: Print field existing only in bottom component
PASS -> FAIL: gdb.ada/same_component_name.exp: Print field existing only in dyn_middle component
PASS -> FAIL: gdb.ada/same_component_name.exp: Print top component field
PASS -> FAIL: gdb.ada/same_component_name.exp: Print top component field in middle assign function
PASS -> FAIL: gdb.ada/same_component_name.exp: continue to bottom assign breakpoint
PASS -> FAIL: gdb.ada/same_component_name.exp: continue to dyn_middle assign breakpoint
PASS -> FAIL: gdb.ada/same_component_name.exp: continue to middle assign breakpoint
PASS -> UNRESOLVED: gdb.ada/same_component_name.exp: run to top assign breakpoint
PASS -> FAIL: gdb.ada/scoped_watch.exp: continuing to breakpoint in pck.increment
PASS -> FAIL: gdb.ada/scoped_watch.exp: continuing to breakpoint on call to Do_Nothing
PASS -> FAIL: gdb.ada/scoped_watch.exp: continuing to watchpoint hit
PASS -> FAIL: gdb.ada/scoped_watch.exp: continuing until watchpoint automatic deletion
PASS -> FAIL: gdb.ada/scoped_watch.exp: next to call to Call_Me
PASS -> UNRESOLVED: gdb.ada/scoped_watch.exp: watch result
PASS -> UNRESOLVED: gdb.ada/set_pckd_arr_elt.exp: print sa
PASS -> FAIL: gdb.ada/str_binop_equal.exp: print my_str = "AB"
PASS -> FAIL: gdb.ada/str_binop_equal.exp: print my_str = "ABCD"
PASS -> FAIL: gdb.ada/str_binop_equal.exp: print my_str = "EFGH"
PASS -> UNRESOLVED: gdb.ada/str_binop_equal.exp: print my_str = my_str
PASS -> UNRESOLVED: gdb.ada/str_ref_cmp.exp: operator = works for strings
PASS -> UNRESOLVED: gdb.ada/sym_print_name.exp: multiple matches for symbol integervar
PASS -> FAIL: gdb.ada/tagged.exp: print segm
PASS -> UNRESOLVED: gdb.ada/tagged.exp: ptype segm
FAIL -> UNRESOLVED: gdb.ada/tagged_access.exp: ptype c.all
PASS -> UNRESOLVED: gdb.ada/tagged_not_init.exp: print obj
PASS -> UNRESOLVED: gdb.ada/task_bp.exp: run to dummy_task - from full symtab
PASS -> UNRESOLVED: gdb.ada/task_bp.exp: run to dummy_task - from psymtab
PASS -> UNRESOLVED: gdb.ada/task_bp.exp: run to pck.adb:dummy_task - from full symtab
PASS -> UNRESOLVED: gdb.ada/task_bp.exp: run to pck.adb:dummy_task - from psymtab
PASS -> UNRESOLVED: gdb.ada/task_bp.exp: run to pck.adb:pck.dummy_task - from full symtab
PASS -> UNRESOLVED: gdb.ada/task_bp.exp: run to pck.adb:pck.dummy_task - from psymtab
PASS -> UNRESOLVED: gdb.ada/task_bp.exp: run to pck.dummy_task - from full symtab
PASS -> UNRESOLVED: gdb.ada/task_bp.exp: run to pck.dummy_task - from psymtab
new UNRESOLVED: gdb.ada/task_switch_in_core.exp: couldn't run to Request_For_Crash
PASS -> FAIL: gdb.ada/tasks.exp: break break_me task 1
PASS -> FAIL: gdb.ada/tasks.exp: break break_me task 3
PASS -> UNRESOLVED: gdb.ada/tasks.exp: info tasks before inserting breakpoint
PASS -> FAIL: gdb.ada/tick_length_array_enum_idx.exp: print cold'length
PASS -> UNRESOLVED: gdb.ada/tick_length_array_enum_idx.exp: print full'length
PASS -> FAIL: gdb.ada/tick_length_array_enum_idx.exp: print prim'length
PASS -> FAIL: gdb.ada/tick_length_array_enum_idx.exp: print vars'length
PASS -> FAIL: gdb.ada/tick_length_array_enum_idx.exp: ptype cold'length
PASS -> FAIL: gdb.ada/tick_length_array_enum_idx.exp: ptype full'length
PASS -> FAIL: gdb.ada/tick_length_array_enum_idx.exp: ptype prim'length
PASS -> FAIL: gdb.ada/tick_length_array_enum_idx.exp: ptype vars'length
PASS -> FAIL: gdb.ada/type_coercion.exp: p q
PASS -> FAIL: gdb.ada/type_coercion.exp: print {Integer} $addr
PASS -> FAIL: gdb.ada/type_coercion.exp: save q'address in convenience variable
PASS -> FAIL: gdb.ada/type_coercion.exp: set {Integer} $addr := 19
PASS -> FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: continue to STOP2
PASS -> UNRESOLVED: gdb.ada/unc_arr_ptr_in_var_rec.exp: print My_Object with null Ptr
PASS -> FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: print My_Object.Ptr when null
PASS -> FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: print My_P_Object with null Ptr
PASS -> FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: print My_P_Object.Ptr when no longer null
PASS -> FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: print My_P_Object.Ptr when null
PASS -> FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: print my_object after setting Ptr
PASS -> FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: print my_object.ptr.all
PASS -> FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: print my_p_object after setting Ptr
PASS -> FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: print my_p_object.ptr.all
PASS -> FAIL: gdb.ada/unchecked_union.exp: ptype Inner
PASS -> UNRESOLVED: gdb.ada/unchecked_union.exp: ptype Pair
PASS -> UNRESOLVED: gdb.ada/uninitialized_vars.exp: info locals
PASS -> UNRESOLVED: gdb.ada/var_arr_attrs.exp: print my_object.data'first
PASS -> FAIL: gdb.ada/var_arr_attrs.exp: print my_object.data'last
PASS -> FAIL: gdb.ada/var_arr_attrs.exp: print my_object.data'length
PASS -> FAIL: gdb.ada/var_arr_attrs.exp: print my_small_object.data'first
PASS -> FAIL: gdb.ada/var_arr_attrs.exp: print my_small_object.data'last
PASS -> FAIL: gdb.ada/var_arr_attrs.exp: print my_small_object.data'length
PASS -> FAIL: gdb.ada/var_arr_typedef.exp: print a
PASS -> UNRESOLVED: gdb.ada/var_arr_typedef.exp: print va
PASS -> FAIL: gdb.ada/var_arr_typedef.exp: print vb
PASS -> FAIL: gdb.ada/var_rec_arr.exp: print a1
PASS -> FAIL: gdb.ada/variant_record_packed_array.exp: print address
PASS -> UNRESOLVED: gdb.ada/variant_record_packed_array.exp: print my_buffer
PASS -> FAIL: gdb.ada/variant_record_packed_array.exp: print {foo.octal_buffer}
PASS -> UNRESOLVED: gdb.ada/vla.exp: print r00
PASS -> FAIL: gdb.ada/vla.exp: print r01
PASS -> FAIL: gdb.ada/vla.exp: print r10
PASS -> FAIL: gdb.ada/vla.exp: print r22
PASS -> FAIL: gdb.ada/watch_arg.exp: continuing to second breakpoint
PASS -> FAIL: gdb.ada/watch_arg.exp: continuing until watchpoint automatic deletion
PASS -> UNRESOLVED: gdb.ada/watch_arg.exp: set watchpoint on function argument X
PASS -> FAIL: gdb.ada/watch_minus_l.exp: continue with watch -location
PASS -> UNRESOLVED: gdb.ada/watch_minus_l.exp: watch -location pck.global_var
new UNRESOLVED: gdb.arch/aarch64-atomic-inst.exp: could not run to main
new UNRESOLVED: gdb.arch/aarch64-brk-patterns.exp: could not run to main
new UNRESOLVED: gdb.arch/aarch64-fp.exp: could not run to main
new UNRESOLVED: gdb.arch/aarch64-pauth.exp: could not run to main
new UNRESOLVED: gdb.arch/aarch64-prologue.exp: could not run to main
new UNRESOLVED: gdb.arch/aarch64-sighandler-regs.exp: could not run to main
new UNRESOLVED: gdb.arch/aarch64-tagged-pointer.exp: could not run to main
new UNRESOLVED: gdb.arch/arm-neon.exp: could not run to main
new UNRESOLVED: gdb.arch/disp-step-insn-reloc.exp: can't run to main
new UNRESOLVED: gdb.arch/ftrace-insn-reloc.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.asm/asm-source.exp: can't run to main
PASS -> UNRESOLVED: gdb.base/a2-run.exp: run "a2-run" with no args
new UNRESOLVED: gdb.base/advance.exp: can't run to main
new UNRESOLVED: gdb.base/annota-input-while-running.exp: can't run to main
new UNRESOLVED: gdb.base/annotate-symlink.exp: failed to run to main
new UNRESOLVED: gdb.base/anon.exp: run to main
new UNRESOLVED: gdb.base/argv0-symlink.exp: could not run to main
new UNRESOLVED: gdb.base/asmlabel.exp: can't run to main
new UNRESOLVED: gdb.base/auto-connect-native-target.exp: can't run to main
new UNRESOLVED: gdb.base/auxv.exp: can't run to main
new UNRESOLVED: gdb.base/backtrace.exp: can't run to main
PASS -> UNRESOLVED: gdb.base/bang.exp: continue until exit
new UNRESOLVED: gdb.base/bigcore.exp: can't run to main
PASS -> UNRESOLVED: gdb.base/bitfields.exp: bitfield containment #1
PASS -> FAIL: gdb.base/bitfields.exp: bitfield containment #2
PASS -> FAIL: gdb.base/bitfields.exp: bitfield uniqueness
PASS -> FAIL: gdb.base/bitfields.exp: continuing to break1 #1
PASS -> FAIL: gdb.base/bitfields.exp: continuing to break1 #2
PASS -> FAIL: gdb.base/bitfields.exp: continuing to break1 #3
PASS -> FAIL: gdb.base/bitfields.exp: continuing to break1 #4
PASS -> FAIL: gdb.base/bitfields.exp: continuing to break1 #5
PASS -> FAIL: gdb.base/bitfields.exp: continuing to break1 #6
PASS -> FAIL: gdb.base/bitfields.exp: continuing to break1 #7
PASS -> FAIL: gdb.base/bitfields.exp: continuing to break1 #8
PASS -> FAIL: gdb.base/bitfields.exp: continuing to break1 #9
PASS -> FAIL: gdb.base/bitfields.exp: continuing to break2
PASS -> FAIL: gdb.base/bitfields.exp: continuing to break4 #1
PASS -> FAIL: gdb.base/bitfields.exp: continuing to break4 #2
PASS -> FAIL: gdb.base/bitfields.exp: continuing to break5
PASS -> FAIL: gdb.base/bitfields.exp: determining signed-ness of bitfields
PASS -> UNRESOLVED: gdb.base/bitfields.exp: print flags
PASS -> FAIL: gdb.base/bitfields.exp: signed bitfields with -1
PASS -> FAIL: gdb.base/bitfields.exp: signed bitfields, max negative values
PASS -> UNRESOLVED: gdb.base/bitfields.exp: signed bitfields, max positive values
PASS -> UNRESOLVED: gdb.base/bitfields.exp: unsigned bitfield ranges
PASS -> FAIL: gdb.base/bitfields2.exp: bitfield containment; flags.u1, flags.u3, and flags.s3 to all 1s
PASS -> FAIL: gdb.base/bitfields2.exp: bitfield containment; flags.u2, flags.s1, flags.s2 to all 1s
PASS -> FAIL: gdb.base/bitfields2.exp: bitfield uniqueness; flags.s1 = 1
PASS -> FAIL: gdb.base/bitfields2.exp: bitfield uniqueness; flags.s2 = 1
PASS -> FAIL: gdb.base/bitfields2.exp: bitfield uniqueness; flags.s3 = 1
PASS -> FAIL: gdb.base/bitfields2.exp: bitfield uniqueness; flags.u1 = 1
PASS -> FAIL: gdb.base/bitfields2.exp: bitfield uniqueness; flags.u2 = 1
PASS -> FAIL: gdb.base/bitfields2.exp: bitfield uniqueness; flags.u3 = 1
PASS -> UNRESOLVED: gdb.base/bitfields2.exp: break tester prior to break1
PASS -> FAIL: gdb.base/bitfields2.exp: continuing to break1 #0
PASS -> FAIL: gdb.base/bitfields2.exp: continuing to break1 #1
PASS -> FAIL: gdb.base/bitfields2.exp: continuing to break1 #2
PASS -> FAIL: gdb.base/bitfields2.exp: continuing to break1 #3
PASS -> FAIL: gdb.base/bitfields2.exp: continuing to break1 #4
PASS -> FAIL: gdb.base/bitfields2.exp: continuing to break1 #5
PASS -> FAIL: gdb.base/bitfields2.exp: continuing to break2 #0
PASS -> FAIL: gdb.base/bitfields2.exp: continuing to break2 #1
PASS -> FAIL: gdb.base/bitfields2.exp: continuing to break3 #0
PASS -> FAIL: gdb.base/bitfields2.exp: continuing to break4 #0
PASS -> FAIL: gdb.base/bitfields2.exp: continuing to break4 #1
PASS -> FAIL: gdb.base/bitfields2.exp: continuing to break4 #2
PASS -> FAIL: gdb.base/bitfields2.exp: continuing to break5 #0
PASS -> FAIL: gdb.base/bitfields2.exp: continuing to tester prior to break1
PASS -> FAIL: gdb.base/bitfields2.exp: continuing to tester prior to break2
PASS -> FAIL: gdb.base/bitfields2.exp: continuing to tester prior to break3
PASS -> FAIL: gdb.base/bitfields2.exp: continuing to tester prior to break4
PASS -> FAIL: gdb.base/bitfields2.exp: continuing to tester prior to break5
PASS -> FAIL: gdb.base/bitfields2.exp: determining signed-ness of bitfields
PASS -> FAIL: gdb.base/bitfields2.exp: long long bitfield values after set
PASS -> FAIL: gdb.base/bitfields2.exp: maximum signed bitfield values
PASS -> FAIL: gdb.base/bitfields2.exp: maximum unsigned bitfield values
PASS -> FAIL: gdb.base/bitfields2.exp: set long long signed bitfield positive
PASS -> FAIL: gdb.base/bitfields2.exp: set long long unsigned bitfield
PASS -> UNRESOLVED: gdb.base/break-always.exp: set breakpoint on bar
PASS -> FAIL: gdb.base/break-fun-addr.exp: break-fun-addr1: p $pc == main
PASS -> UNRESOLVED: gdb.base/break-fun-addr.exp: break-fun-addr1: run to breakpoint at *main
PASS -> FAIL: gdb.base/break-fun-addr.exp: break-fun-addr2: p $pc == main
PASS -> UNRESOLVED: gdb.base/break-fun-addr.exp: break-fun-addr2: run to breakpoint at *main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=off: awatch: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=off: break: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=off: hbreak: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=off: rwatch: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=off: watch: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=on: awatch: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=on: break: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=on: hbreak: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=on: rwatch: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=on: watch: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=pie: always_inserted=off: awatch: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=pie: always_inserted=off: break: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=pie: always_inserted=off: hbreak: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=pie: always_inserted=off: rwatch: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=pie: always_inserted=off: watch: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=pie: always_inserted=on: awatch: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=pie: always_inserted=on: break: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=pie: always_inserted=on: hbreak: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=pie: always_inserted=on: rwatch: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=pie: always_inserted=on: watch: can't run to main
PASS -> UNRESOLVED: gdb.base/break-inline.exp: break
new UNRESOLVED: gdb.base/break-main-file-remove-fail.exp: cmdline: can't run to start
new UNRESOLVED: gdb.base/break-main-file-remove-fail.exp: file: can't run to start
FAIL -> UNRESOLVED: gdb.base/break-probes.exp: ensure using probes
new UNRESOLVED: gdb.base/break-unload-file.exp: cmdline: always-inserted off: break: can't run to main
new UNRESOLVED: gdb.base/break-unload-file.exp: cmdline: always-inserted off: hbreak: can't run to main
new UNRESOLVED: gdb.base/break-unload-file.exp: cmdline: always-inserted on: break: can't run to main
new UNRESOLVED: gdb.base/break-unload-file.exp: cmdline: always-inserted on: hbreak: can't run to main
new UNRESOLVED: gdb.base/break-unload-file.exp: file: always-inserted off: break: can't run to main
new UNRESOLVED: gdb.base/break-unload-file.exp: file: always-inserted off: hbreak: can't run to main
new UNRESOLVED: gdb.base/break-unload-file.exp: file: always-inserted on: break: can't run to main
new UNRESOLVED: gdb.base/break-unload-file.exp: file: always-inserted on: hbreak: can't run to main
PASS -> FAIL: gdb.base/break.exp: Temporary breakpoint info
PASS -> FAIL: gdb.base/break.exp: break on default location, 1st time
PASS -> FAIL: gdb.base/break.exp: break on default location, 2nd time
PASS -> FAIL: gdb.base/break.exp: break on default location, 3rd time
PASS -> FAIL: gdb.base/break.exp: break on default location, 4th time
new UNRESOLVED: gdb.base/break.exp: break tests suppressed
PASS -> FAIL: gdb.base/break.exp: breakpoint offset +1
PASS -> FAIL: gdb.base/break.exp: continue to breakpoint at }
PASS -> FAIL: gdb.base/break.exp: run until breakpoint set at a line number
PASS -> FAIL: gdb.base/break.exp: run until file:function
PASS -> FAIL: gdb.base/break.exp: run until file:linenum breakpoint
PASS -> UNRESOLVED: gdb.base/break.exp: run until function breakpoint
PASS -> FAIL: gdb.base/break.exp: run until quoted breakpoint
PASS -> FAIL: gdb.base/break.exp: set to-be-silent break bp_location1
PASS -> FAIL: gdb.base/break.exp: setting breakpoint at }
PASS -> FAIL: gdb.base/break.exp: step onto breakpoint
PASS -> FAIL: gdb.base/break.exp: temporary breakpoint line number #1
PASS -> FAIL: gdb.base/break.exp: temporary breakpoint line number #2
PASS -> FAIL: gdb.base/break.exp: until bp_location1
new UNRESOLVED: gdb.base/breakpoint-shadow.exp: start
new UNRESOLVED: gdb.base/bt-selected-frame.exp: bt full: can't run to main
new UNRESOLVED: gdb.base/bt-selected-frame.exp: bt: can't run to main
PASS -> FAIL: gdb.base/call-sc.exp: advance to fun for finish; return call-sc-tc
PASS -> FAIL: gdb.base/call-sc.exp: advance to fun for finish; return call-sc-td
PASS -> FAIL: gdb.base/call-sc.exp: advance to fun for finish; return call-sc-te
PASS -> FAIL: gdb.base/call-sc.exp: advance to fun for finish; return call-sc-tf
PASS -> FAIL: gdb.base/call-sc.exp: advance to fun for finish; return call-sc-ti
PASS -> FAIL: gdb.base/call-sc.exp: advance to fun for finish; return call-sc-tl
PASS -> FAIL: gdb.base/call-sc.exp: advance to fun for finish; return call-sc-tld
PASS -> FAIL: gdb.base/call-sc.exp: advance to fun for finish; return call-sc-tll
PASS -> FAIL: gdb.base/call-sc.exp: advance to fun for finish; return call-sc-ts
PASS -> FAIL: gdb.base/call-sc.exp: advance to fun for return; return call-sc-tc
PASS -> FAIL: gdb.base/call-sc.exp: advance to fun for return; return call-sc-td
PASS -> FAIL: gdb.base/call-sc.exp: advance to fun for return; return call-sc-te
PASS -> FAIL: gdb.base/call-sc.exp: advance to fun for return; return call-sc-tf
PASS -> FAIL: gdb.base/call-sc.exp: advance to fun for return; return call-sc-ti
PASS -> FAIL: gdb.base/call-sc.exp: advance to fun for return; return call-sc-tl
PASS -> FAIL: gdb.base/call-sc.exp: advance to fun for return; return call-sc-tld
PASS -> FAIL: gdb.base/call-sc.exp: advance to fun for return; return call-sc-tll
PASS -> FAIL: gdb.base/call-sc.exp: advance to fun for return; return call-sc-ts
PASS -> FAIL: gdb.base/call-sc.exp: call Fun
PASS -> FAIL: gdb.base/call-sc.exp: finish foo; return call-sc-tc
PASS -> FAIL: gdb.base/call-sc.exp: finish foo; return call-sc-td
PASS -> FAIL: gdb.base/call-sc.exp: finish foo; return call-sc-te
PASS -> FAIL: gdb.base/call-sc.exp: finish foo; return call-sc-tf
PASS -> FAIL: gdb.base/call-sc.exp: finish foo; return call-sc-ti
PASS -> FAIL: gdb.base/call-sc.exp: finish foo; return call-sc-tl
PASS -> FAIL: gdb.base/call-sc.exp: finish foo; return call-sc-tld
PASS -> FAIL: gdb.base/call-sc.exp: finish foo; return call-sc-tll
PASS -> FAIL: gdb.base/call-sc.exp: finish foo; return call-sc-ts
PASS -> FAIL: gdb.base/call-sc.exp: p/c L; call call-sc-tc
PASS -> FAIL: gdb.base/call-sc.exp: p/c L; call call-sc-td
PASS -> FAIL: gdb.base/call-sc.exp: p/c L; call call-sc-te
PASS -> FAIL: gdb.base/call-sc.exp: p/c L; call call-sc-tf
PASS -> FAIL: gdb.base/call-sc.exp: p/c L; call call-sc-ti
PASS -> FAIL: gdb.base/call-sc.exp: p/c L; call call-sc-tl
PASS -> FAIL: gdb.base/call-sc.exp: p/c L; call call-sc-tld
PASS -> FAIL: gdb.base/call-sc.exp: p/c L; call call-sc-tll
PASS -> FAIL: gdb.base/call-sc.exp: p/c L; call call-sc-ts
PASS -> FAIL: gdb.base/call-sc.exp: p/c fun
PASS -> UNRESOLVED: gdb.base/call-sc.exp: ptype; call-sc-tc
PASS -> UNRESOLVED: gdb.base/call-sc.exp: ptype; call-sc-td
PASS -> UNRESOLVED: gdb.base/call-sc.exp: ptype; call-sc-te
PASS -> UNRESOLVED: gdb.base/call-sc.exp: ptype; call-sc-tf
PASS -> UNRESOLVED: gdb.base/call-sc.exp: ptype; call-sc-ti
PASS -> UNRESOLVED: gdb.base/call-sc.exp: ptype; call-sc-tl
PASS -> UNRESOLVED: gdb.base/call-sc.exp: ptype; call-sc-tld
PASS -> UNRESOLVED: gdb.base/call-sc.exp: ptype; call-sc-tll
PASS -> UNRESOLVED: gdb.base/call-sc.exp: ptype; call-sc-ts
PASS -> FAIL: gdb.base/call-sc.exp: return foo; return call-sc-tc
PASS -> FAIL: gdb.base/call-sc.exp: return foo; return call-sc-td
PASS -> FAIL: gdb.base/call-sc.exp: return foo; return call-sc-te
PASS -> FAIL: gdb.base/call-sc.exp: return foo; return call-sc-tf
PASS -> FAIL: gdb.base/call-sc.exp: return foo; return call-sc-ti
PASS -> FAIL: gdb.base/call-sc.exp: return foo; return call-sc-tl
PASS -> FAIL: gdb.base/call-sc.exp: return foo; return call-sc-tld
PASS -> FAIL: gdb.base/call-sc.exp: return foo; return call-sc-tll
PASS -> FAIL: gdb.base/call-sc.exp: return foo; return call-sc-ts
PASS -> FAIL: gdb.base/call-sc.exp: return foo; synchronize pc to main
PASS -> FAIL: gdb.base/call-sc.exp: value foo finished; return call-sc-tc
PASS -> FAIL: gdb.base/call-sc.exp: value foo finished; return call-sc-td
PASS -> FAIL: gdb.base/call-sc.exp: value foo finished; return call-sc-te
PASS -> FAIL: gdb.base/call-sc.exp: value foo finished; return call-sc-tf
PASS -> FAIL: gdb.base/call-sc.exp: value foo finished; return call-sc-ti
PASS -> FAIL: gdb.base/call-sc.exp: value foo finished; return call-sc-tl
PASS -> FAIL: gdb.base/call-sc.exp: value foo finished; return call-sc-tld
PASS -> FAIL: gdb.base/call-sc.exp: value foo finished; return call-sc-tll
PASS -> FAIL: gdb.base/call-sc.exp: value foo finished; return call-sc-ts
PASS -> FAIL: gdb.base/call-sc.exp: value foo returned; return call-sc-tc
PASS -> FAIL: gdb.base/call-sc.exp: value foo returned; return call-sc-td
PASS -> FAIL: gdb.base/call-sc.exp: value foo returned; return call-sc-te
PASS -> FAIL: gdb.base/call-sc.exp: value foo returned; return call-sc-tf
PASS -> FAIL: gdb.base/call-sc.exp: value foo returned; return call-sc-ti
PASS -> FAIL: gdb.base/call-sc.exp: value foo returned; return call-sc-tl
PASS -> FAIL: gdb.base/call-sc.exp: value foo returned; return call-sc-tld
PASS -> FAIL: gdb.base/call-sc.exp: value foo returned; return call-sc-tll
PASS -> FAIL: gdb.base/call-sc.exp: value foo returned; return call-sc-ts
PASS -> FAIL: gdb.base/call-sc.exp: zed L for finish; return call-sc-tc
PASS -> FAIL: gdb.base/call-sc.exp: zed L for finish; return call-sc-td
PASS -> FAIL: gdb.base/call-sc.exp: zed L for finish; return call-sc-te
PASS -> FAIL: gdb.base/call-sc.exp: zed L for finish; return call-sc-tf
PASS -> FAIL: gdb.base/call-sc.exp: zed L for finish; return call-sc-ti
PASS -> FAIL: gdb.base/call-sc.exp: zed L for finish; return call-sc-tl
PASS -> FAIL: gdb.base/call-sc.exp: zed L for finish; return call-sc-tld
PASS -> FAIL: gdb.base/call-sc.exp: zed L for finish; return call-sc-tll
PASS -> FAIL: gdb.base/call-sc.exp: zed L for finish; return call-sc-ts
PASS -> FAIL: gdb.base/call-sc.exp: zed L for return; return call-sc-tc
PASS -> FAIL: gdb.base/call-sc.exp: zed L for return; return call-sc-td
PASS -> FAIL: gdb.base/call-sc.exp: zed L for return; return call-sc-te
PASS -> FAIL: gdb.base/call-sc.exp: zed L for return; return call-sc-tf
PASS -> FAIL: gdb.base/call-sc.exp: zed L for return; return call-sc-ti
PASS -> FAIL: gdb.base/call-sc.exp: zed L for return; return call-sc-tl
PASS -> FAIL: gdb.base/call-sc.exp: zed L for return; return call-sc-tld
PASS -> FAIL: gdb.base/call-sc.exp: zed L for return; return call-sc-tll
PASS -> FAIL: gdb.base/call-sc.exp: zed L for return; return call-sc-ts
new UNRESOLVED: gdb.base/call-signal-resume.exp: can't run to main
new UNRESOLVED: gdb.base/callexit.exp: can't run to main
PASS -> FAIL: gdb.base/callfuncs.exp: Finish from nested call level 1
PASS -> FAIL: gdb.base/callfuncs.exp: Finish from nested call level 2
PASS -> FAIL: gdb.base/callfuncs.exp: Finish from nested call level 3
PASS -> FAIL: gdb.base/callfuncs.exp: Finish from nested call level 4
PASS -> FAIL: gdb.base/callfuncs.exp: back at main after return from call dummy breakpoint
PASS -> FAIL: gdb.base/callfuncs.exp: backtrace after finish from nested call level 1
PASS -> FAIL: gdb.base/callfuncs.exp: backtrace after finish from nested call level 2
PASS -> FAIL: gdb.base/callfuncs.exp: backtrace after finish from nested call level 3
PASS -> FAIL: gdb.base/callfuncs.exp: backtrace after finish from nested call level 4
PASS -> FAIL: gdb.base/callfuncs.exp: backtrace at nested call level 1
PASS -> FAIL: gdb.base/callfuncs.exp: backtrace at nested call level 2
PASS -> FAIL: gdb.base/callfuncs.exp: backtrace at nested call level 3
PASS -> FAIL: gdb.base/callfuncs.exp: backtrace at nested call level 4
PASS -> FAIL: gdb.base/callfuncs.exp: bt after continuing from call dummy breakpoint
PASS -> FAIL: gdb.base/callfuncs.exp: bt after finishing from call dummy breakpoint
PASS -> FAIL: gdb.base/callfuncs.exp: call function causing a breakpoint and then do a return
PASS -> FAIL: gdb.base/callfuncs.exp: call function causing a breakpoint then do a finish
PASS -> FAIL: gdb.base/callfuncs.exp: call function with many double arguments.
PASS -> FAIL: gdb.base/callfuncs.exp: call function with many float arguments.
PASS -> FAIL: gdb.base/callfuncs.exp: call inferior func with struct - returns char
PASS -> FAIL: gdb.base/callfuncs.exp: call inferior func with struct - returns char *
PASS -> FAIL: gdb.base/callfuncs.exp: call inferior func with struct - returns double
PASS -> FAIL: gdb.base/callfuncs.exp: call inferior func with struct - returns double _Complex
PASS -> FAIL: gdb.base/callfuncs.exp: call inferior func with struct - returns float
PASS -> FAIL: gdb.base/callfuncs.exp: call inferior func with struct - returns float _Complex
PASS -> FAIL: gdb.base/callfuncs.exp: call inferior func with struct - returns int
PASS -> FAIL: gdb.base/callfuncs.exp: call inferior func with struct - returns long
PASS -> FAIL: gdb.base/callfuncs.exp: call inferior func with struct - returns long double _Complex
PASS -> FAIL: gdb.base/callfuncs.exp: call inferior func with struct - returns short
PASS -> FAIL: gdb.base/callfuncs.exp: continue from call dummy breakpoint
PASS -> FAIL: gdb.base/callfuncs.exp: finish from call dummy breakpoint returns correct value
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: Finish from nested call level 1
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: Finish from nested call level 2
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: Finish from nested call level 3
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: Finish from nested call level 4
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: back at main after return from call dummy breakpoint
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: backtrace after finish from nested call level 1
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: backtrace after finish from nested call level 2
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: backtrace after finish from nested call level 3
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: backtrace after finish from nested call level 4
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: backtrace at nested call level 1
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: backtrace at nested call level 2
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: backtrace at nested call level 3
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: backtrace at nested call level 4
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: bt after continuing from call dummy breakpoint
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: bt after finishing from call dummy breakpoint
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: call function causing a breakpoint and then do a return
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: call function causing a breakpoint then do a finish
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: call function with many double arguments.
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: call function with many float arguments.
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: call inferior func with struct - returns char
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: call inferior func with struct - returns char *
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: call inferior func with struct - returns double
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: call inferior func with struct - returns double _Complex
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: call inferior func with struct - returns float
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: call inferior func with struct - returns float _Complex
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: call inferior func with struct - returns int
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: call inferior func with struct - returns long
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: call inferior func with struct - returns long double _Complex
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: call inferior func with struct - returns short
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: continue from call dummy breakpoint
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: finish from call dummy breakpoint returns correct value
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p add
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p cmp10
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p doubleit
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p function_struct.func
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p function_struct_ptr->func
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p sum10
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p sum_args
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_call_add
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_char_array_values
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_char_values
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_double_complex_many_args
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_double_complex_values
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_double_int
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_double_values
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_enum_value1
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_enum_value2
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_float_complex_many_args
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_float_complex_values
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_float_values
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_float_values2
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_func_values
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_int_double
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_int_values
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_long_double_complex_many_args
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_long_double_complex_values
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_long_values
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_short_values
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_small_values
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_string_values
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: print *
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: print callfunc
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: register contents after gdb function calls
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: register contents after nested call dummies
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: rerun number 10: next to t_double_values
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: rerun number 10: next to t_structs_c
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: rerun number 10: set language c
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: rerun number 6: next to t_double_values
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: rerun number 6: next to t_structs_c
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: rerun number 6: set language c
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: rerun number 7: next to t_double_values
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: rerun number 7: next to t_structs_c
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: rerun number 7: set language c
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: rerun number 8: next to t_double_values
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: rerun number 8: next to t_structs_c
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: rerun number 8: set language c
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: rerun number 9: next to t_double_values
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: rerun number 9: next to t_structs_c
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: rerun number 9: set language c
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: retrieve original register contents 1
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: retrieve original register contents 2
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: retrieve original register contents 3
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: retrieve original register contents 4
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: retrieve original register contents 5
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: stop at breakpoint in call dummy function
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: stop at nested call level 1
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: stop at nested call level 2
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: stop at nested call level 3
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: stop at nested call level 4
PASS -> FAIL: gdb.base/callfuncs.exp: p
PASS -> FAIL: gdb.base/callfuncs.exp: p add
PASS -> FAIL: gdb.base/callfuncs.exp: p cmp10
PASS -> FAIL: gdb.base/callfuncs.exp: p doubleit
PASS -> FAIL: gdb.base/callfuncs.exp: p function_struct.func
PASS -> FAIL: gdb.base/callfuncs.exp: p function_struct_ptr->func
PASS -> FAIL: gdb.base/callfuncs.exp: p sum10
PASS -> FAIL: gdb.base/callfuncs.exp: p sum_args
PASS -> FAIL: gdb.base/callfuncs.exp: p t_call_add
PASS -> FAIL: gdb.base/callfuncs.exp: p t_char_array_values
PASS -> FAIL: gdb.base/callfuncs.exp: p t_char_values
PASS -> FAIL: gdb.base/callfuncs.exp: p t_double_complex_many_args
PASS -> FAIL: gdb.base/callfuncs.exp: p t_double_complex_values
PASS -> FAIL: gdb.base/callfuncs.exp: p t_double_int
PASS -> FAIL: gdb.base/callfuncs.exp: p t_double_values
PASS -> FAIL: gdb.base/callfuncs.exp: p t_enum_value1
PASS -> FAIL: gdb.base/callfuncs.exp: p t_enum_value2
PASS -> FAIL: gdb.base/callfuncs.exp: p t_float_complex_many_args
PASS -> FAIL: gdb.base/callfuncs.exp: p t_float_complex_values
PASS -> FAIL: gdb.base/callfuncs.exp: p t_float_values
PASS -> FAIL: gdb.base/callfuncs.exp: p t_float_values2
PASS -> FAIL: gdb.base/callfuncs.exp: p t_func_values
PASS -> FAIL: gdb.base/callfuncs.exp: p t_int_double
PASS -> FAIL: gdb.base/callfuncs.exp: p t_int_values
PASS -> FAIL: gdb.base/callfuncs.exp: p t_long_double_complex_many_args
PASS -> FAIL: gdb.base/callfuncs.exp: p t_long_double_complex_values
PASS -> FAIL: gdb.base/callfuncs.exp: p t_long_values
PASS -> FAIL: gdb.base/callfuncs.exp: p t_short_values
PASS -> FAIL: gdb.base/callfuncs.exp: p t_small_values
PASS -> FAIL: gdb.base/callfuncs.exp: p t_string_values
PASS -> FAIL: gdb.base/callfuncs.exp: print *
PASS -> FAIL: gdb.base/callfuncs.exp: print callfunc
PASS -> FAIL: gdb.base/callfuncs.exp: register contents after gdb function calls
PASS -> FAIL: gdb.base/callfuncs.exp: register contents after nested call dummies
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: rerun number 1: next to t_double_values
PASS -> FAIL: gdb.base/callfuncs.exp: rerun number 1: next to t_structs_c
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: rerun number 1: set language c
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: rerun number 2: next to t_double_values
PASS -> FAIL: gdb.base/callfuncs.exp: rerun number 2: next to t_structs_c
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: rerun number 2: set language c
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: rerun number 3: next to t_double_values
PASS -> FAIL: gdb.base/callfuncs.exp: rerun number 3: next to t_structs_c
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: rerun number 3: set language c
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: rerun number 4: next to t_double_values
PASS -> FAIL: gdb.base/callfuncs.exp: rerun number 4: next to t_structs_c
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: rerun number 4: set language c
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: rerun number 5: next to t_double_values
PASS -> FAIL: gdb.base/callfuncs.exp: rerun number 5: next to t_structs_c
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: rerun number 5: set language c
PASS -> FAIL: gdb.base/callfuncs.exp: retrieve original register contents 1
PASS -> FAIL: gdb.base/callfuncs.exp: retrieve original register contents 2
PASS -> FAIL: gdb.base/callfuncs.exp: retrieve original register contents 3
PASS -> FAIL: gdb.base/callfuncs.exp: retrieve original register contents 4
PASS -> FAIL: gdb.base/callfuncs.exp: retrieve original register contents 5
PASS -> FAIL: gdb.base/callfuncs.exp: stop at breakpoint in call dummy function
PASS -> FAIL: gdb.base/callfuncs.exp: stop at nested call level 1
PASS -> FAIL: gdb.base/callfuncs.exp: stop at nested call level 2
PASS -> FAIL: gdb.base/callfuncs.exp: stop at nested call level 3
PASS -> FAIL: gdb.base/callfuncs.exp: stop at nested call level 4
new UNRESOLVED: gdb.base/catch-follow-exec.exp: could not run to main
new UNRESOLVED: gdb.base/catch-fork-kill.exp: fork-kind=fork: exit-kind=exit: fork: could not run to main
new UNRESOLVED: gdb.base/catch-fork-kill.exp: fork-kind=fork: exit-kind=kill: fork: could not run to main
new UNRESOLVED: gdb.base/catch-fork-kill.exp: fork-kind=vfork: exit-kind=exit: vfork: could not run to main
new UNRESOLVED: gdb.base/catch-fork-kill.exp: fork-kind=vfork: exit-kind=kill: vfork: could not run to main
PASS -> UNRESOLVED: gdb.base/catch-fork-static.exp: run to fork
new UNRESOLVED: gdb.base/catch-gdb-caused-signals.exp: can't run to main to make the tests
new UNRESOLVED: gdb.base/catch-load.exp: non-matching load with stop-on-solib-events: can't run to main
new UNRESOLVED: gdb.base/catch-load.exp: non-matching load: can't run to main
new UNRESOLVED: gdb.base/catch-load.exp: non-matching unload with stop-on-solib-events: can't run to main
new UNRESOLVED: gdb.base/catch-load.exp: non-matching unload: can't run to main
new UNRESOLVED: gdb.base/catch-load.exp: plain load with stop-on-solib-events: can't run to main
new UNRESOLVED: gdb.base/catch-load.exp: plain load: can't run to main
new UNRESOLVED: gdb.base/catch-load.exp: plain unload with stop-on-solib-events: can't run to main
new UNRESOLVED: gdb.base/catch-load.exp: plain unload: can't run to main
new UNRESOLVED: gdb.base/catch-load.exp: rx load with stop-on-solib-events: can't run to main
new UNRESOLVED: gdb.base/catch-load.exp: rx load: can't run to main
new UNRESOLVED: gdb.base/catch-load.exp: rx unload with stop-on-solib-events: can't run to main
new UNRESOLVED: gdb.base/catch-load.exp: rx unload: can't run to main
new UNRESOLVED: gdb.base/catch-signal-siginfo-cond.exp: can't run to main
PASS -> UNRESOLVED: gdb.base/catch-signal.exp: catch signal SIGZARDOZ
new UNRESOLVED: gdb.base/catch-syscall.exp: can't run to main
PASS -> FAIL: gdb.base/charset.exp: assign string to int array
PASS -> FAIL: gdb.base/charset.exp: assign string to long array
PASS -> FAIL: gdb.base/charset.exp: assign string to short array
PASS -> FAIL: gdb.base/charset.exp: check value of "\a" in ASCII
PASS -> FAIL: gdb.base/charset.exp: check value of "\a" in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: check value of "\a" in IBM1047
PASS -> FAIL: gdb.base/charset.exp: check value of "\a" in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: check value of "\a" in UTF-32
PASS -> FAIL: gdb.base/charset.exp: check value of "\b" in ASCII
PASS -> FAIL: gdb.base/charset.exp: check value of "\b" in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: check value of "\b" in IBM1047
PASS -> FAIL: gdb.base/charset.exp: check value of "\b" in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: check value of "\b" in UTF-32
PASS -> FAIL: gdb.base/charset.exp: check value of "\f" in ASCII
PASS -> FAIL: gdb.base/charset.exp: check value of "\f" in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: check value of "\f" in IBM1047
PASS -> FAIL: gdb.base/charset.exp: check value of "\f" in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: check value of "\f" in UTF-32
PASS -> FAIL: gdb.base/charset.exp: check value of "\n" in ASCII
PASS -> FAIL: gdb.base/charset.exp: check value of "\n" in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: check value of "\n" in IBM1047
PASS -> FAIL: gdb.base/charset.exp: check value of "\n" in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: check value of "\n" in UTF-32
PASS -> FAIL: gdb.base/charset.exp: check value of "\r" in ASCII
PASS -> FAIL: gdb.base/charset.exp: check value of "\r" in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: check value of "\r" in IBM1047
PASS -> FAIL: gdb.base/charset.exp: check value of "\r" in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: check value of "\r" in UTF-32
PASS -> FAIL: gdb.base/charset.exp: check value of "\t" in ASCII
PASS -> FAIL: gdb.base/charset.exp: check value of "\t" in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: check value of "\t" in IBM1047
PASS -> FAIL: gdb.base/charset.exp: check value of "\t" in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: check value of "\t" in UTF-32
PASS -> FAIL: gdb.base/charset.exp: check value of "\v" in ASCII
PASS -> FAIL: gdb.base/charset.exp: check value of "\v" in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: check value of "\v" in IBM1047
PASS -> FAIL: gdb.base/charset.exp: check value of "\v" in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: check value of "\v" in UTF-32
PASS -> FAIL: gdb.base/charset.exp: check value of '\a' in ASCII
PASS -> FAIL: gdb.base/charset.exp: check value of '\a' in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: check value of '\a' in IBM1047
PASS -> FAIL: gdb.base/charset.exp: check value of '\a' in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: check value of '\a' in UTF-32
PASS -> FAIL: gdb.base/charset.exp: check value of '\b' in ASCII
PASS -> FAIL: gdb.base/charset.exp: check value of '\b' in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: check value of '\b' in IBM1047
PASS -> FAIL: gdb.base/charset.exp: check value of '\b' in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: check value of '\b' in UTF-32
PASS -> FAIL: gdb.base/charset.exp: check value of '\f' in ASCII
PASS -> FAIL: gdb.base/charset.exp: check value of '\f' in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: check value of '\f' in IBM1047
PASS -> FAIL: gdb.base/charset.exp: check value of '\f' in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: check value of '\f' in UTF-32
PASS -> FAIL: gdb.base/charset.exp: check value of '\n' in ASCII
PASS -> FAIL: gdb.base/charset.exp: check value of '\n' in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: check value of '\n' in IBM1047
PASS -> FAIL: gdb.base/charset.exp: check value of '\n' in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: check value of '\n' in UTF-32
PASS -> FAIL: gdb.base/charset.exp: check value of '\r' in ASCII
PASS -> FAIL: gdb.base/charset.exp: check value of '\r' in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: check value of '\r' in IBM1047
PASS -> FAIL: gdb.base/charset.exp: check value of '\r' in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: check value of '\r' in UTF-32
PASS -> FAIL: gdb.base/charset.exp: check value of '\t' in ASCII
PASS -> FAIL: gdb.base/charset.exp: check value of '\t' in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: check value of '\t' in IBM1047
PASS -> FAIL: gdb.base/charset.exp: check value of '\t' in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: check value of '\t' in UTF-32
PASS -> FAIL: gdb.base/charset.exp: check value of '\v' in ASCII
PASS -> FAIL: gdb.base/charset.exp: check value of '\v' in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: check value of '\v' in IBM1047
PASS -> FAIL: gdb.base/charset.exp: check value of '\v' in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: check value of '\v' in UTF-32
PASS -> FAIL: gdb.base/charset.exp: check value of escape that doesn't exist in ASCII
PASS -> FAIL: gdb.base/charset.exp: check value of escape that doesn't exist in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: check value of escape that doesn't exist in IBM1047
PASS -> FAIL: gdb.base/charset.exp: check value of escape that doesn't exist in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: check value of escape that doesn't exist in UTF-32
PASS -> FAIL: gdb.base/charset.exp: check value of parsed character literal in ASCII
PASS -> FAIL: gdb.base/charset.exp: check value of parsed character literal in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: check value of parsed character literal in IBM1047
PASS -> FAIL: gdb.base/charset.exp: check value of parsed character literal in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: check value of parsed character literal in UTF-32
PASS -> FAIL: gdb.base/charset.exp: check value of parsed string literal in ASCII
PASS -> FAIL: gdb.base/charset.exp: check value of parsed string literal in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: check value of parsed string literal in IBM1047
PASS -> FAIL: gdb.base/charset.exp: check value of parsed string literal in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: check value of parsed string literal in UTF-32
PASS -> FAIL: gdb.base/charset.exp: print string in ASCII
PASS -> FAIL: gdb.base/charset.exp: print string in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: print string in IBM1047
PASS -> FAIL: gdb.base/charset.exp: print string in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: print string in UTF-32
PASS -> UNRESOLVED: gdb.base/charset.exp: run until all strings have been initialized
PASS -> FAIL: gdb.base/charset.exp: set_prefix=L: assign String32 with prefix L
PASS -> FAIL: gdb.base/charset.exp: set_prefix=L: display String String32 with x/ws
PASS -> FAIL: gdb.base/charset.exp: set_prefix=U: assign String32 with prefix U
PASS -> FAIL: gdb.base/charset.exp: set_prefix=U: display String String32 with x/ws
PASS -> FAIL: gdb.base/charset.exp: set_prefix=u: assign String16 with prefix u
PASS -> FAIL: gdb.base/charset.exp: set_prefix=u: display String String16 with x/hs
PASS -> FAIL: gdb.base/charset.exp: try printing '\a' in ASCII
PASS -> FAIL: gdb.base/charset.exp: try printing '\a' in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: try printing '\a' in IBM1047
PASS -> FAIL: gdb.base/charset.exp: try printing '\a' in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: try printing '\a' in UTF-32
PASS -> FAIL: gdb.base/charset.exp: try printing '\b' in ASCII
PASS -> FAIL: gdb.base/charset.exp: try printing '\b' in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: try printing '\b' in IBM1047
PASS -> FAIL: gdb.base/charset.exp: try printing '\b' in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: try printing '\b' in UTF-32
PASS -> FAIL: gdb.base/charset.exp: try printing '\f' in ASCII
PASS -> FAIL: gdb.base/charset.exp: try printing '\f' in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: try printing '\f' in IBM1047
PASS -> FAIL: gdb.base/charset.exp: try printing '\f' in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: try printing '\f' in UTF-32
PASS -> FAIL: gdb.base/charset.exp: try printing '\n' in ASCII
PASS -> FAIL: gdb.base/charset.exp: try printing '\n' in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: try printing '\n' in IBM1047
PASS -> FAIL: gdb.base/charset.exp: try printing '\n' in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: try printing '\n' in UTF-32
PASS -> FAIL: gdb.base/charset.exp: try printing '\r' in ASCII
PASS -> FAIL: gdb.base/charset.exp: try printing '\r' in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: try printing '\r' in IBM1047
PASS -> FAIL: gdb.base/charset.exp: try printing '\r' in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: try printing '\r' in UTF-32
PASS -> FAIL: gdb.base/charset.exp: try printing '\t' in ASCII
PASS -> FAIL: gdb.base/charset.exp: try printing '\t' in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: try printing '\t' in IBM1047
PASS -> FAIL: gdb.base/charset.exp: try printing '\t' in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: try printing '\t' in UTF-32
PASS -> FAIL: gdb.base/charset.exp: try printing '\v' in ASCII
PASS -> FAIL: gdb.base/charset.exp: try printing '\v' in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: try printing '\v' in IBM1047
PASS -> FAIL: gdb.base/charset.exp: try printing '\v' in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: try printing '\v' in UTF-32
PASS -> FAIL: gdb.base/charset.exp: typedef to wchar_t
PASS -> FAIL: gdb.base/chng-syms.exp: continue until exit at breakpoint first time through
PASS -> UNRESOLVED: gdb.base/chng-syms.exp: running to stop_here first time
PASS -> UNRESOLVED: gdb.base/chng-syms.exp: running with invalidated bpt condition after executable changes
PASS -> UNRESOLVED: gdb.base/commands.exp: bp_deleted_in_command_test: run factorial until breakpoint
new UNRESOLVED: gdb.base/commands.exp: breakpoint_clear_command_test: cannot run to factorial
new UNRESOLVED: gdb.base/commands.exp: breakpoint_command_test: cannot run to factorial
PASS -> UNRESOLVED: gdb.base/commands.exp: error_clears_commands_left: cmd1 error
new UNRESOLVED: gdb.base/commands.exp: if_while_breakpoint_command_test: cannot run to factorial
new UNRESOLVED: gdb.base/commands.exp: infrun_breakpoint_command_test: cannot run to factorial
new UNRESOLVED: gdb.base/commands.exp: progvar_complex_if_while_test: cannot run to factorial
new UNRESOLVED: gdb.base/commands.exp: progvar_simple_if_test: cannot run to factorial
new UNRESOLVED: gdb.base/commands.exp: progvar_simple_while_test: cannot run to factorial
PASS -> UNRESOLVED: gdb.base/commands.exp: temporary_breakpoint_commands: run factorial until temporary breakpoint
new UNRESOLVED: gdb.base/commands.exp: test_command_prompt_position: cannot run to factorial
new UNRESOLVED: gdb.base/commands.exp: watchpoint_command_test: cannot run to factorial
FAIL -> UNRESOLVED: gdb.base/compare-sections.exp: after reload: compare-sections
new UNRESOLVED: gdb.base/compare-sections.exp: can't run to main
PASS -> FAIL: gdb.base/completion.exp: complete 'handle keyword'
PASS -> FAIL: gdb.base/completion.exp: complete 'handle signal'
PASS -> FAIL: gdb.base/completion.exp: complete 'p &values[0] -> a'
PASS -> FAIL: gdb.base/completion.exp: complete 'p no_var_named_this-arg'
PASS -> FAIL: gdb.base/completion.exp: complete 'p values[0] . a'
PASS -> FAIL: gdb.base/completion.exp: complete 'p values[0].a'
PASS -> FAIL: gdb.base/completion.exp: complete
PASS -> FAIL: gdb.base/completion.exp: complete help aliases
PASS -> FAIL: gdb.base/completion.exp: completion of field in anonymous union
PASS -> UNRESOLVED: gdb.base/completion.exp: set max-completions unlimited
new UNRESOLVED: gdb.base/complex-parts.exp: can't run to main
new UNRESOLVED: gdb.base/cond-eval-mode.exp: can't run to main
new UNRESOLVED: gdb.base/condbreak-call-false.exp: can't run to main
new UNRESOLVED: gdb.base/condbreak.exp:
PASS -> FAIL: gdb.base/condbreak.exp: break *main task 999 if
PASS -> FAIL: gdb.base/condbreak.exp: run until breakpoint at marker1
PASS -> FAIL: gdb.base/condbreak.exp: run until breakpoint at marker2
PASS -> FAIL: gdb.base/condbreak.exp: run until breakpoint at marker3
PASS -> FAIL: gdb.base/condbreak.exp: run until breakpoint at marker4
PASS -> FAIL: gdb.base/condbreak.exp: run until breakpoint set at a line number
new UNRESOLVED: gdb.base/consecutive-step-over.exp: can't run to main
new UNRESOLVED: gdb.base/continue-after-aborted-step-over.exp: displaced-stepping=off: run to main
new UNRESOLVED: gdb.base/continue-after-aborted-step-over.exp: displaced-stepping=on: run to main
new UNRESOLVED: gdb.base/coredump-filter.exp: could not run to main
new UNRESOLVED: gdb.base/ctxobj.exp: could not run to main
PASS -> FAIL: gdb.base/dbx.exp: assign first
PASS -> FAIL: gdb.base/dbx.exp: func print_average
PASS -> FAIL: gdb.base/dbx.exp: func sum
PASS -> FAIL: gdb.base/dbx.exp: print first
PASS -> UNRESOLVED: gdb.base/dbx.exp: running to main
new UNRESOLVED: gdb.base/debug-expr.exp: run to main
new UNRESOLVED: gdb.base/define.exp: define tests suppressed
PASS -> FAIL: gdb.base/define.exp: use hook-stop command
PASS -> FAIL: gdb.base/define.exp: use user command: nextwhere
PASS -> FAIL: gdb.base/detach.exp: detach, one
PASS -> FAIL: gdb.base/detach.exp: detach, two
PASS -> UNRESOLVED: gdb.base/detach.exp: set should_exit, one
PASS -> UNRESOLVED: gdb.base/detach.exp: set should_exit, two
new UNRESOLVED: gdb.base/disabled-location.exp: can't run to main
new UNRESOLVED: gdb.base/display.exp: could not run to main - other tests will fail.
PASS -> FAIL: gdb.base/dmsym.exp: continue
PASS -> FAIL: gdb.base/dmsym.exp: print val
PASS -> UNRESOLVED: gdb.base/dmsym.exp: run until breakpoint at BREAK
new UNRESOLVED: gdb.base/double-prompt-target-event-error.exp: ctrlc target event: continue: can't run to main
new UNRESOLVED: gdb.base/double-prompt-target-event-error.exp: ctrlc target event: wrapcont: can't run to main
new UNRESOLVED: gdb.base/dprintf-bp-same-addr.exp: agent: can't run to main
new UNRESOLVED: gdb.base/dprintf-bp-same-addr.exp: gdb: can't run to main
new UNRESOLVED: gdb.base/dprintf-next.exp: can't run to main
new UNRESOLVED: gdb.base/dprintf-non-stop.exp: can't run to main
PASS -> UNRESOLVED: gdb.base/dprintf-pending.exp: run to resolved dprintf
PASS -> UNRESOLVED: gdb.base/dprintf-pending.exp: without symbols: run to resolved dprintf
new UNRESOLVED: gdb.base/dump.exp: couldn't run to checkpoint
new UNRESOLVED: gdb.base/duplicate-bp.exp: del_1_stop_2: can't run to main
PASS -> FAIL: gdb.base/duplicate-bp.exp: del_1_stop_2: delete #1, stop at #2
PASS -> FAIL: gdb.base/duplicate-bp.exp: del_1_stop_2: delete $bp_num_1
new UNRESOLVED: gdb.base/duplicate-bp.exp: del_2_stop_1: can't run to main
PASS -> FAIL: gdb.base/duplicate-bp.exp: del_2_stop_1: delete #2, stop at #1
PASS -> FAIL: gdb.base/duplicate-bp.exp: del_2_stop_1: delete $bp_num_2
new UNRESOLVED: gdb.base/duplicate-bp.exp: dis_1_del_2_stop_3: can't run to main
PASS -> FAIL: gdb.base/duplicate-bp.exp: dis_1_del_2_stop_3: delete $bp_num_2
PASS -> FAIL: gdb.base/duplicate-bp.exp: dis_1_del_2_stop_3: disable #1, delete #2, stop at #3
PASS -> FAIL: gdb.base/duplicate-bp.exp: dis_1_del_2_stop_3: disable $bp_num_1
new UNRESOLVED: gdb.base/duplicate-bp.exp: dis_1_del_3_stop_1: can't run to main
PASS -> FAIL: gdb.base/duplicate-bp.exp: dis_1_del_3_stop_1: delete $bp_num_3
PASS -> FAIL: gdb.base/duplicate-bp.exp: dis_1_del_3_stop_1: disable #1, delete #3, stop at #2
PASS -> FAIL: gdb.base/duplicate-bp.exp: dis_1_del_3_stop_1: disable $bp_num_1
new UNRESOLVED: gdb.base/duplicate-bp.exp: dis_2_del_1_stop_3: can't run to main
PASS -> FAIL: gdb.base/duplicate-bp.exp: dis_2_del_1_stop_3: delete $bp_num_1
PASS -> FAIL: gdb.base/duplicate-bp.exp: dis_2_del_1_stop_3: disable #2, delete #1, stop at #3
PASS -> FAIL: gdb.base/duplicate-bp.exp: dis_2_del_1_stop_3: disable $bp_num_2
new UNRESOLVED: gdb.base/duplicate-bp.exp: dis_2_del_3_stop_1: can't run to main
PASS -> FAIL: gdb.base/duplicate-bp.exp: dis_2_del_3_stop_1: delete $bp_num_3
PASS -> FAIL: gdb.base/duplicate-bp.exp: dis_2_del_3_stop_1: disable #2, delete #3, stop at #1
PASS -> FAIL: gdb.base/duplicate-bp.exp: dis_2_del_3_stop_1: disable $bp_num_2
new UNRESOLVED: gdb.base/duplicate-bp.exp: dis_3_del_1_stop_2: can't run to main
PASS -> FAIL: gdb.base/duplicate-bp.exp: dis_3_del_1_stop_2: delete $bp_num_1
PASS -> FAIL: gdb.base/duplicate-bp.exp: dis_3_del_1_stop_2: disable #3, delete #1, stop at #2
PASS -> FAIL: gdb.base/duplicate-bp.exp: dis_3_del_1_stop_2: disable $bp_num_3
new UNRESOLVED: gdb.base/duplicate-bp.exp: dis_3_del_2_stop_1: can't run to main
PASS -> FAIL: gdb.base/duplicate-bp.exp: dis_3_del_2_stop_1: delete $bp_num_2
PASS -> FAIL: gdb.base/duplicate-bp.exp: dis_3_del_2_stop_1: disable #3, delete #2, stop at #1
PASS -> FAIL: gdb.base/duplicate-bp.exp: dis_3_del_2_stop_1: disable $bp_num_3
new UNRESOLVED: gdb.base/ena-dis-br.exp:
PASS -> FAIL: gdb.base/ena-dis-br.exp: continue from enable count, first time
PASS -> FAIL: gdb.base/ena-dis-br.exp: continue from enable count, second time
PASS -> FAIL: gdb.base/ena-dis-br.exp: continue through enable count, now disabled
PASS -> FAIL: gdb.base/ena-dis-br.exp: continue to auto-deleted break marker3
PASS -> FAIL: gdb.base/ena-dis-br.exp: continue to auto-disabled break marker2
PASS -> FAIL: gdb.base/ena-dis-br.exp: continue to break marker1
PASS -> FAIL: gdb.base/ena-dis-br.exp: continue to break marker1, 2nd time
PASS -> FAIL: gdb.base/ena-dis-br.exp: continue to ignored & auto-deleted break marker1
PASS -> FAIL: gdb.base/ena-dis-br.exp: continue until exit at no stop
PASS -> FAIL: gdb.base/ena-dis-br.exp: continue until exit at no stop at auto-disabled break marker2
PASS -> FAIL: gdb.base/ena-dis-br.exp: continue until exit at no stop at ignored & auto-deleted break marker1
PASS -> FAIL: gdb.base/ena-dis-br.exp: continue until exit at no stop at ignored & disabled break marker1
PASS -> FAIL: gdb.base/ena-dis-br.exp: continue until exit at no stop at ignored break marker1
PASS -> FAIL: gdb.base/ena-dis-br.exp: continue with ignore count
PASS -> FAIL: gdb.base/ena-dis-br.exp: continue with ignore count, not stopped at bpt
new UNRESOLVED: gdb.base/ena-dis-br.exp: enable/disable break tests suppressed
PASS -> FAIL: gdb.base/ena-dis-br.exp: info auto-deleted break marker3
PASS -> FAIL: gdb.base/ena-dis-br.exp: info auto-disabled break marker2 after hitting breakpoint
PASS -> FAIL: gdb.base/ena-dis-br.exp: step after continue with ignore count
new UNRESOLVED: gdb.base/endianity.exp: couldn't run to start
PASS -> FAIL: gdb.base/ending-run.exp: Cleared 2 by line
PASS -> FAIL: gdb.base/ending-run.exp: Step to return
PASS -> FAIL: gdb.base/ending-run.exp: all set to continue
PASS -> FAIL: gdb.base/ending-run.exp: clear 2 by default
PASS -> FAIL: gdb.base/ending-run.exp: clear worked
PASS -> FAIL: gdb.base/ending-run.exp: cleared bp at line before routine
PASS -> FAIL: gdb.base/ending-run.exp: cont
PASS -> UNRESOLVED: gdb.base/ending-run.exp: run
PASS -> FAIL: gdb.base/ending-run.exp: step out of main
new UNRESOLVED: gdb.base/examine-backward.exp: could not run to main
new UNRESOLVED: gdb.base/exec-invalid-sysroot.exp: couldn't run exec-invalid-sysroot
new UNRESOLVED: gdb.base/execl-update-breakpoints.exp: couldn't run to main
new UNRESOLVED: gdb.base/execution-termios.exp: continue: can't run to main
new UNRESOLVED: gdb.base/execution-termios.exp: finish: can't run to main
new UNRESOLVED: gdb.base/execution-termios.exp: infcall: can't run to main
new UNRESOLVED: gdb.base/execution-termios.exp: next: can't run to main
PASS -> FAIL: gdb.base/find.exp: $_
PASS -> FAIL: gdb.base/find.exp: $numfound
PASS -> FAIL: gdb.base/find.exp: find 16-bit pattern
PASS -> FAIL: gdb.base/find.exp: find 32-bit pattern
PASS -> FAIL: gdb.base/find.exp: find 64-bit pattern
PASS -> FAIL: gdb.base/find.exp: find byte pattern with end address
PASS -> FAIL: gdb.base/find.exp: find mixed-sized pattern
PASS -> FAIL: gdb.base/find.exp: find pattern straddling chunk boundary
PASS -> FAIL: gdb.base/find.exp: find string pattern
PASS -> FAIL: gdb.base/find.exp: max-count
PASS -> FAIL: gdb.base/find.exp: pattern found at end of range
PASS -> UNRESOLVED: gdb.base/find.exp: run until function breakpoint
PASS -> FAIL: gdb.base/find.exp: search spanning large range
new FAIL: gdb.base/find.exp: set *
new FAIL: gdb.base/find.exp: set int16_search_buf[10] = 0x1234
new FAIL: gdb.base/find.exp: set int32_search_buf[10] = 0x12345678
new FAIL: gdb.base/find.exp: set int64_search_buf[10] = 0xfedcba9876543210LL
PASS -> FAIL: gdb.base/find.exp: size,max-count, /1/b
PASS -> FAIL: gdb.base/find.exp: size,max-count, /1b
PASS -> FAIL: gdb.base/find.exp: size,max-count, /b/1
PASS -> FAIL: gdb.base/find.exp: size,max-count, /b1
new UNRESOLVED: gdb.base/finish-pretty.exp: can't run to foo
new UNRESOLVED: gdb.base/finish.exp: couldn't run to main
new UNRESOLVED: gdb.base/fixsection.exp: can't run to main
new UNRESOLVED: gdb.base/foll-exec.exp: couldn't run foll-exec
new UNRESOLVED: gdb.base/foll-fork.exp: follow child, detach off, command "continue": could not run to main
new UNRESOLVED: gdb.base/foll-fork.exp: follow child, detach off, command "next 2": could not run to main
new UNRESOLVED: gdb.base/foll-fork.exp: follow child, detach on, command "continue": could not run to main
new UNRESOLVED: gdb.base/foll-fork.exp: follow child, detach on, command "next 2": could not run to main
new UNRESOLVED: gdb.base/foll-fork.exp: follow default, detach default, command "continue": could not run to main
new UNRESOLVED: gdb.base/foll-fork.exp: follow default, detach default, command "next 2": could not run to main
new UNRESOLVED: gdb.base/foll-fork.exp: follow parent, detach off, command "continue": could not run to main
new UNRESOLVED: gdb.base/foll-fork.exp: follow parent, detach off, command "next 2": could not run to main
new UNRESOLVED: gdb.base/foll-fork.exp: follow parent, detach on, command "continue": could not run to main
new UNRESOLVED: gdb.base/foll-fork.exp: follow parent, detach on, command "next 2": could not run to main
new UNRESOLVED: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=off: can't run to main
new UNRESOLVED: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=on: can't run to main
new UNRESOLVED: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: non-stop: can't run to main
new UNRESOLVED: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=parent: all-stop: schedule-multiple=off: can't run to main
new UNRESOLVED: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=parent: all-stop: schedule-multiple=on: can't run to main
new UNRESOLVED: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=parent: non-stop: can't run to main
new UNRESOLVED: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=child: all-stop: schedule-multiple=off: can't run to main
new UNRESOLVED: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=child: all-stop: schedule-multiple=on: can't run to main
new UNRESOLVED: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=child: non-stop: can't run to main
new UNRESOLVED: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=parent: all-stop: schedule-multiple=off: can't run to main
new UNRESOLVED: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=parent: all-stop: schedule-multiple=on: can't run to main
new UNRESOLVED: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=parent: non-stop: can't run to main
PASS -> FAIL: gdb.base/frame-selection.exp: backtrace at breakpoint
PASS -> UNRESOLVED: gdb.base/frame-selection.exp: continue to breakpoint: frame_2
PASS -> FAIL: gdb.base/frame-selection.exp: frame 0
PASS -> FAIL: gdb.base/frame-selection.exp: frame 1
PASS -> FAIL: gdb.base/frame-selection.exp: frame 2
PASS -> FAIL: gdb.base/frame-selection.exp: frame 3
PASS -> FAIL: gdb.base/frame-selection.exp: get_frame_address: frame 0
PASS -> FAIL: gdb.base/frame-selection.exp: get_frame_address: frame 1
PASS -> FAIL: gdb.base/frame-selection.exp: get_frame_address: frame 2
new UNRESOLVED: gdb.base/frameapply.exp: can't run to setup_done
PASS -> UNRESOLVED: gdb.base/freebpcmd.exp: run program with breakpoint commands
new UNRESOLVED: gdb.base/func-ptr.exp: can't run to main
new UNRESOLVED: gdb.base/func-ptrs.exp: could not run to main
PASS -> FAIL: gdb.base/funcargs.exp: backtrace after alloca
PASS -> FAIL: gdb.base/funcargs.exp: backtrace from call6a
PASS -> FAIL: gdb.base/funcargs.exp: backtrace from call6b
PASS -> FAIL: gdb.base/funcargs.exp: backtrace from call6c
PASS -> FAIL: gdb.base/funcargs.exp: backtrace from call6d
PASS -> FAIL: gdb.base/funcargs.exp: backtrace from call6e
PASS -> FAIL: gdb.base/funcargs.exp: backtrace from call6f
PASS -> FAIL: gdb.base/funcargs.exp: backtrace from call6g
PASS -> FAIL: gdb.base/funcargs.exp: backtrace from call6h
PASS -> FAIL: gdb.base/funcargs.exp: backtrace from call6i
PASS -> FAIL: gdb.base/funcargs.exp: backtrace from call6j
PASS -> FAIL: gdb.base/funcargs.exp: backtrace from call6k
PASS -> FAIL: gdb.base/funcargs.exp: backtrace from call7a
PASS -> FAIL: gdb.base/funcargs.exp: backtrace from call7b
PASS -> FAIL: gdb.base/funcargs.exp: backtrace from call7c
PASS -> FAIL: gdb.base/funcargs.exp: backtrace from call7d
PASS -> FAIL: gdb.base/funcargs.exp: backtrace from call7e
PASS -> FAIL: gdb.base/funcargs.exp: backtrace from call7f
PASS -> FAIL: gdb.base/funcargs.exp: backtrace from call7g
PASS -> FAIL: gdb.base/funcargs.exp: backtrace from call7h
PASS -> FAIL: gdb.base/funcargs.exp: backtrace from call7i
PASS -> FAIL: gdb.base/funcargs.exp: backtrace from call7j
PASS -> FAIL: gdb.base/funcargs.exp: backtrace from call7k
PASS -> FAIL: gdb.base/funcargs.exp: backtrace from call_after_alloca_subr
PASS -> FAIL: gdb.base/funcargs.exp: backtrace in indirectly called function
PASS -> FAIL: gdb.base/funcargs.exp: backtrace through call with trampolines
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call0a
PASS -> FAIL: gdb.base/funcargs.exp: continue to call0b
PASS -> FAIL: gdb.base/funcargs.exp: continue to call0c
PASS -> FAIL: gdb.base/funcargs.exp: continue to call0d
PASS -> FAIL: gdb.base/funcargs.exp: continue to call0e
PASS -> FAIL: gdb.base/funcargs.exp: continue to call1b
PASS -> FAIL: gdb.base/funcargs.exp: continue to call1c
PASS -> FAIL: gdb.base/funcargs.exp: continue to call1d
PASS -> FAIL: gdb.base/funcargs.exp: continue to call1e
PASS -> FAIL: gdb.base/funcargs.exp: continue to call2b
PASS -> FAIL: gdb.base/funcargs.exp: continue to call2c
PASS -> FAIL: gdb.base/funcargs.exp: continue to call2d
PASS -> FAIL: gdb.base/funcargs.exp: continue to call2e
PASS -> FAIL: gdb.base/funcargs.exp: continue to call2f
PASS -> FAIL: gdb.base/funcargs.exp: continue to call2g
PASS -> FAIL: gdb.base/funcargs.exp: continue to call2h
PASS -> FAIL: gdb.base/funcargs.exp: continue to call2i
PASS -> FAIL: gdb.base/funcargs.exp: continue to call3b
PASS -> FAIL: gdb.base/funcargs.exp: continue to call3c
PASS -> FAIL: gdb.base/funcargs.exp: continue to call4b
PASS -> FAIL: gdb.base/funcargs.exp: continue to call5b
PASS -> FAIL: gdb.base/funcargs.exp: continue to call6b
PASS -> FAIL: gdb.base/funcargs.exp: continue to call6c
PASS -> FAIL: gdb.base/funcargs.exp: continue to call6d
PASS -> FAIL: gdb.base/funcargs.exp: continue to call6e
PASS -> FAIL: gdb.base/funcargs.exp: continue to call6f
PASS -> FAIL: gdb.base/funcargs.exp: continue to call6g
PASS -> FAIL: gdb.base/funcargs.exp: continue to call6h
PASS -> FAIL: gdb.base/funcargs.exp: continue to call6i
PASS -> FAIL: gdb.base/funcargs.exp: continue to call6j
PASS -> FAIL: gdb.base/funcargs.exp: continue to call6k
PASS -> FAIL: gdb.base/funcargs.exp: continue to call7b
PASS -> FAIL: gdb.base/funcargs.exp: continue to call7c
PASS -> FAIL: gdb.base/funcargs.exp: continue to call7d
PASS -> FAIL: gdb.base/funcargs.exp: continue to call7e
PASS -> FAIL: gdb.base/funcargs.exp: continue to call7f
PASS -> FAIL: gdb.base/funcargs.exp: continue to call7g
PASS -> FAIL: gdb.base/funcargs.exp: continue to call7h
PASS -> FAIL: gdb.base/funcargs.exp: continue to call7i
PASS -> FAIL: gdb.base/funcargs.exp: continue to call7j
PASS -> FAIL: gdb.base/funcargs.exp: continue to call7k
PASS -> FAIL: gdb.base/funcargs.exp: continue to callc1b
PASS -> FAIL: gdb.base/funcargs.exp: continue to callc2b
PASS -> FAIL: gdb.base/funcargs.exp: continue to callcb
PASS -> FAIL: gdb.base/funcargs.exp: continue to callcc
PASS -> FAIL: gdb.base/funcargs.exp: continue to callcd
PASS -> FAIL: gdb.base/funcargs.exp: continue to callce
PASS -> FAIL: gdb.base/funcargs.exp: continue to callcf
PASS -> FAIL: gdb.base/funcargs.exp: finish from indirectly called function
PASS -> UNRESOLVED: gdb.base/funcargs.exp: finish from marker_call_with_trampolines
PASS -> FAIL: gdb.base/funcargs.exp: print *unp
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print c after runto localvars_after_alloca
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print c in call_after_alloca
PASS -> FAIL: gdb.base/funcargs.exp: print d1 after run to call2a
PASS -> FAIL: gdb.base/funcargs.exp: print d2 after run to call2a
PASS -> FAIL: gdb.base/funcargs.exp: print f1 after run to call2a
PASS -> FAIL: gdb.base/funcargs.exp: print f2 after run to call2a
PASS -> FAIL: gdb.base/funcargs.exp: print un
PASS -> FAIL: gdb.base/funcargs.exp: recursive passing of structs by value
PASS -> UNRESOLVED: gdb.base/funcargs.exp: run to call0a
PASS -> UNRESOLVED: gdb.base/funcargs.exp: run to call1a
PASS -> UNRESOLVED: gdb.base/funcargs.exp: run to call2a
PASS -> UNRESOLVED: gdb.base/funcargs.exp: run to call3a
PASS -> UNRESOLVED: gdb.base/funcargs.exp: run to call4a
PASS -> UNRESOLVED: gdb.base/funcargs.exp: run to call5a
PASS -> UNRESOLVED: gdb.base/funcargs.exp: run to call6a
PASS -> UNRESOLVED: gdb.base/funcargs.exp: run to call7a
PASS -> UNRESOLVED: gdb.base/funcargs.exp: run to callc1a
PASS -> UNRESOLVED: gdb.base/funcargs.exp: run to callc2a
PASS -> UNRESOLVED: gdb.base/funcargs.exp: run to hitbottom
PASS -> FAIL: gdb.base/funcargs.exp: stepping back to main from function called with trampolines
PASS -> FAIL: gdb.base/funcargs.exp: stepping into function called with trampolines
PASS -> FAIL: gdb.base/funcargs.exp: stepping into indirectly called function
new UNRESOLVED: gdb.base/gcore-buffer-overflow.exp: could not run to main
new UNRESOLVED: gdb.base/gcore-relro-pie.exp: can't run to break_here
new UNRESOLVED: gdb.base/gcore-tls-pie.exp: can't run to break_here
new UNRESOLVED: gdb.base/gcore.exp: couldn't run to main
new UNRESOLVED: gdb.base/gdb-caching-proc.exp: failed to run to GNAT_Debug_Info_Test
FAIL -> UNRESOLVED: gdb.base/gdb-caching-proc.exp: run to main
PASS -> UNRESOLVED: gdb.base/gdb-caching-proc.exp: target_supports_scheduler_locking consistency
PASS -> UNRESOLVED: gdb.base/gdb-sigterm.exp: 50 SIGTERM passes
new UNRESOLVED: gdb.base/gdb1090.exp: can't run to main
new UNRESOLVED: gdb.base/gdb11530.exp: run to main
new UNRESOLVED: gdb.base/gdb11531.exp: run to main
new UNRESOLVED: gdb.base/gdb1555.exp: can't run to main
PASS -> UNRESOLVED: gdb.base/gdbvars.exp: Set a new convenience variable to a program variable
new UNRESOLVED: gdb.base/gnu_vector.exp: runto main
new UNRESOLVED: gdb.base/hbreak-in-shr-unsupported.exp: can't run to main
new UNRESOLVED: gdb.base/hbreak-unmapped.exp: can't run to main
new UNRESOLVED: gdb.base/hbreak.exp: hbreak.exp
new UNRESOLVED: gdb.base/hbreak2.exp: break tests suppressed
new UNRESOLVED: gdb.base/hook-stop.exp: hook-stop kills inferior: can't run to main
new UNRESOLVED: gdb.base/hook-stop.exp: hook-stop runs before frame print: can't run to main
new UNRESOLVED: gdb.base/hook-stop.exp: hook-stop runs continue&: can't run to main
new UNRESOLVED: gdb.base/hook-stop.exp: hook-stop runs continue: can't run to main
new UNRESOLVED: gdb.base/hook-stop.exp: hook-stop runs next: can't run to main
new UNRESOLVED: gdb.base/huge.exp: couldn't run to main
new UNRESOLVED: gdb.base/infcall-exec.exp: could not run to main
new UNRESOLVED: gdb.base/infcall-input.exp: couldn't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tc-td: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tc-tf: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tc-tld: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tc: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tc: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-td: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tf: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ti: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tl: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tld: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tll: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ts: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tdc: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tc: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-td: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tf: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-ti: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tl: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tld: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tll: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-ts: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tfc: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-td: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tf: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tld: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tl-td: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tl-tf: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tl-tld: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tl: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tc: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-td: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tf: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-ti: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tl: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tld: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tll: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-ts: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tldc: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tll-td: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tll-tf: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tll-tld: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tll: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ts-td: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ts-tf: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ts-tld: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ts: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tc-td: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tc-tf: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tc-tld: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tc: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tc: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-td: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tf: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-ti: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tl: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tld: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tll: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-ts: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tdc: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tc: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-td: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tf: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-ti: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tl: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tld: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tll: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-ts: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tfc: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti-td: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tf: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tld: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tl-td: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tl-tf: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tl-tld: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tl: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tc: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-td: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tf: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-ti: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tl: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tld: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tll: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-ts: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tldc: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tll-td: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tll-tf: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tll-tld: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tll: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ts-td: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ts-tf: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ts-tld: can't run to main
FAIL -> UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ts: can't run to main
PASS -> UNRESOLVED: gdb.base/infnan.exp: print a
new UNRESOLVED: gdb.base/info-fun.exp: n_flag=0: NO: can't run to main
new UNRESOLVED: gdb.base/info-macros.exp: could not run to main
new UNRESOLVED: gdb.base/info-os.exp: cannot run to main
new UNRESOLVED: gdb.base/info-proc.exp: could not run to main
new UNRESOLVED: gdb.base/info-program.exp: can't run to main
FAIL -> UNRESOLVED: gdb.base/info-types.exp: l=c++: can't run to main
FAIL -> UNRESOLVED: gdb.base/info-types.exp: l=c: can't run to main
new UNRESOLVED: gdb.base/info_qt.exp: can't run to setup_done
new UNRESOLVED: gdb.base/info_sources.exp: info_sources.exp
new UNRESOLVED: gdb.base/interp.exp: run to main
new UNRESOLVED: gdb.base/interrupt-daemon.exp: can't run to daemon_main function
new UNRESOLVED: gdb.base/interrupt-noterm.exp: can't run to main
new UNRESOLVED: gdb.base/jit-exec.exp: can't run to main
PASS -> FAIL: gdb.base/jit-simple.exp: shared: change addr: address changed
PASS -> UNRESOLVED: gdb.base/jit-simple.exp: shared: change addr: initial run: get address of __jit_debug_descriptor
PASS -> FAIL: gdb.base/jit-simple.exp: shared: change addr: initial run: maint info breakpoints shows jit breakpoint
PASS -> UNRESOLVED: gdb.base/jit-simple.exp: shared: change addr: second run: get address of __jit_debug_descriptor
PASS -> FAIL: gdb.base/jit-simple.exp: shared: change addr: second run: maint info breakpoints shows jit breakpoint
PASS -> UNRESOLVED: gdb.base/jit-simple.exp: shared: same addr: initial run: get address of __jit_debug_descriptor
PASS -> FAIL: gdb.base/jit-simple.exp: shared: same addr: initial run: maint info breakpoints shows jit breakpoint
PASS -> UNRESOLVED: gdb.base/jit-simple.exp: shared: same addr: second run: get address of __jit_debug_descriptor
PASS -> FAIL: gdb.base/jit-simple.exp: shared: same addr: second run: maint info breakpoints shows jit breakpoint
PASS -> FAIL: gdb.base/jit-simple.exp: standalone: change addr: address changed
PASS -> UNRESOLVED: gdb.base/jit-simple.exp: standalone: change addr: initial run: get address of __jit_debug_descriptor
PASS -> UNRESOLVED: gdb.base/jit-simple.exp: standalone: change addr: second run: get address of __jit_debug_descriptor
PASS -> UNRESOLVED: gdb.base/jit-simple.exp: standalone: same addr: initial run: get address of __jit_debug_descriptor
PASS -> UNRESOLVED: gdb.base/jit-simple.exp: standalone: same addr: second run: get address of __jit_debug_descriptor
new UNRESOLVED: gdb.base/jit-so.exp: one_jit_test-1: can't run to main
new UNRESOLVED: gdb.base/jit-so.exp: one_jit_test-2: can't run to main
new UNRESOLVED: gdb.base/jit.exp: PIE: one_jit_test-1: can't run to main
new UNRESOLVED: gdb.base/jit.exp: one_jit_test-1: can't run to main
new UNRESOLVED: gdb.base/jit.exp: one_jit_test-2: can't run to main
new UNRESOLVED: gdb.base/label.exp: label tests suppressed
new UNRESOLVED: gdb.base/large-frame.exp: optimize=-O0: runto main
new UNRESOLVED: gdb.base/large-frame.exp: optimize=-O1: runto main
new UNRESOLVED: gdb.base/large-frame.exp: optimize=-O2: runto main
new UNRESOLVED: gdb.base/ldbl_e308.exp: could not run to main
new UNRESOLVED: gdb.base/line-symtabs.exp: can't run to main
new UNRESOLVED: gdb.base/list-missing-source.exp: can't run to main
new UNRESOLVED: gdb.base/list.exp: list - after stop: 10, 10: can't run to main
new UNRESOLVED: gdb.base/list.exp: list - after stop: 10, 1: can't run to main
new UNRESOLVED: gdb.base/list.exp: list - after stop: 10, 2: can't run to main
new UNRESOLVED: gdb.base/list.exp: list - after stop: 10, 3: can't run to main
new UNRESOLVED: gdb.base/list.exp: list after stop: 1, 10: can't run to main
new UNRESOLVED: gdb.base/list.exp: list after stop: 10, 10: can't run to main
new UNRESOLVED: gdb.base/list.exp: list after stop: 10, 1: can't run to main
new UNRESOLVED: gdb.base/list.exp: list after stop: 10, 2: can't run to main
new UNRESOLVED: gdb.base/list.exp: list after stop: 10, 3: can't run to main
new UNRESOLVED: gdb.base/load-command.exp: can't run to main
new UNRESOLVED: gdb.base/long-inferior-output.exp: run to main
new UNRESOLVED: gdb.base/long_long.exp: run to known_types
new UNRESOLVED: gdb.base/longjmp.exp: can't run to main
new UNRESOLVED: gdb.base/macscp.exp: macro tests suppressed: couldn't run to main
PASS -> UNRESOLVED: gdb.base/maint.exp: check maint info sections output
PASS -> FAIL: gdb.base/maint.exp: maint info breakpoints
PASS -> FAIL: gdb.base/maint.exp: maint print type
FAIL -> UNRESOLVED: gdb.base/max-depth.exp: l=c++: can't run to main
FAIL -> UNRESOLVED: gdb.base/max-depth.exp: l=c: can't run to main
new UNRESOLVED: gdb.base/max-value-size.exp: can't run to main
PASS -> UNRESOLVED: gdb.base/memattr.exp: create mem region 1
PASS -> FAIL: gdb.base/memattr.exp: mem1 can be written
PASS -> FAIL: gdb.base/multi-forks.exp: detach 2
PASS -> FAIL: gdb.base/multi-forks.exp: detach 3
PASS -> FAIL: gdb.base/multi-forks.exp: detach 4
PASS -> FAIL: gdb.base/multi-forks.exp: detach 5
PASS -> FAIL: gdb.base/multi-forks.exp: did kill 10
PASS -> FAIL: gdb.base/multi-forks.exp: did kill 11
PASS -> FAIL: gdb.base/multi-forks.exp: did kill 12
PASS -> FAIL: gdb.base/multi-forks.exp: did kill 13
PASS -> FAIL: gdb.base/multi-forks.exp: did kill 14
PASS -> FAIL: gdb.base/multi-forks.exp: did kill 15
PASS -> FAIL: gdb.base/multi-forks.exp: did kill 16
PASS -> FAIL: gdb.base/multi-forks.exp: did kill 6
PASS -> FAIL: gdb.base/multi-forks.exp: did kill 7
PASS -> FAIL: gdb.base/multi-forks.exp: did kill 8
PASS -> FAIL: gdb.base/multi-forks.exp: did kill 9
PASS -> FAIL: gdb.base/multi-forks.exp: follow child, print pids
PASS -> FAIL: gdb.base/multi-forks.exp: follow parent, print pids
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: help set detach
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 1
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 10
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 11
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 12
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 13
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 14
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 15
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 2
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 3
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 4
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 5
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 6
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 7
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 8
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 9
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 1
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 10
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 11
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 12
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 13
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 14
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 15
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 16
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 2
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 3
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 4
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 5
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 6
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 7
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 8
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 9
PASS -> FAIL: gdb.base/multi-forks.exp: kill 10
PASS -> FAIL: gdb.base/multi-forks.exp: kill 11
PASS -> FAIL: gdb.base/multi-forks.exp: kill 12
PASS -> FAIL: gdb.base/multi-forks.exp: kill 13
PASS -> FAIL: gdb.base/multi-forks.exp: kill 14
PASS -> FAIL: gdb.base/multi-forks.exp: kill 15
PASS -> FAIL: gdb.base/multi-forks.exp: kill 16
PASS -> FAIL: gdb.base/multi-forks.exp: kill 6
PASS -> FAIL: gdb.base/multi-forks.exp: kill 7
PASS -> FAIL: gdb.base/multi-forks.exp: kill 8
PASS -> FAIL: gdb.base/multi-forks.exp: kill 9
PASS -> FAIL: gdb.base/multi-forks.exp: restart final
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 1
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 10
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 11
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 12
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 13
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 14
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 15
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 16
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: run to exit 2
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 3
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 4
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 5
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 6
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 7
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 8
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 9
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: set follow-fork child
PASS -> FAIL: gdb.base/new-ui-echo.exp: extra console as driver: breakpoint hit reported on main console too
PASS -> FAIL: gdb.base/new-ui-echo.exp: extra console as driver: next on main console
PASS -> UNRESOLVED: gdb.base/new-ui-echo.exp: extra console as driver: run to breakpoint on extra console
PASS -> FAIL: gdb.base/new-ui-echo.exp: main console as driver: breakpoint hit reported on extra console too
PASS -> FAIL: gdb.base/new-ui-echo.exp: main console as driver: next on extra console
PASS -> UNRESOLVED: gdb.base/new-ui-echo.exp: main console as driver: run to breakpoint on main console
new UNRESOLVED: gdb.base/new-ui.exp: do_test: could not run to main
new UNRESOLVED: gdb.base/new-ui.exp: do_test_invalid_args: could not run to main
new UNRESOLVED: gdb.base/noreturn-finish.exp: could not run to main
new UNRESOLVED: gdb.base/noreturn-return.exp: could not run to main
new UNRESOLVED: gdb.base/options.exp: test-backtrace: cannot run to main
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: faas -
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: faas -- -
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: faas -foo
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: frame apply 1 -
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: frame apply 1 -foo
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: frame apply all -
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: frame apply all -foo
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: frame apply level 0 -
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: frame apply level 0 -foo
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: frame apply level 0-
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: no-trailing-space: faas --
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: no-trailing-space: frame apply 1 --
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: no-trailing-space: frame apply all --
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: no-trailing-space: frame apply level 0 --
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: faas --
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: frame apply 1 --
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: frame apply all --
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: frame apply level 0 --
new UNRESOLVED: gdb.base/options.exp: test-print: cannot run to main
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: thread apply 1 -foo
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: thread apply all -foo
new UNRESOLVED: gdb.base/paginate-after-ctrl-c-running.exp: ctrlc target running: can't run to main
new UNRESOLVED: gdb.base/paginate-bg-execution.exp: cancel with ctrl-c: can't run to main
new UNRESOLVED: gdb.base/paginate-bg-execution.exp: cancel with quit: can't run to main
new UNRESOLVED: gdb.base/paginate-bg-execution.exp: paginate: can't run to main
new UNRESOLVED: gdb.base/paginate-inferior-exit.exp: paginate: can't run to main
new UNRESOLVED: gdb.base/pending.exp:
PASS -> FAIL: gdb.base/pending.exp: continue to resolved breakpoint 1
PASS -> FAIL: gdb.base/pending.exp: continue to resolved breakpoint 2
PASS -> FAIL: gdb.base/pending.exp: continue to resolved breakpoint 3
PASS -> UNRESOLVED: gdb.base/pending.exp: run to resolved breakpoint 1
PASS -> UNRESOLVED: gdb.base/pending.exp: running to main
new UNRESOLVED: gdb.base/pie-fork.exp: test_detach_on_fork_follow_child: can't run to main
PASS -> FAIL: gdb.base/pie-fork.exp: test_detach_on_fork_follow_child: continue
new UNRESOLVED: gdb.base/pie-fork.exp: test_detach_on_fork_follow_parent: can't run to main
PASS -> FAIL: gdb.base/pie-fork.exp: test_detach_on_fork_follow_parent: continue
new UNRESOLVED: gdb.base/pie-fork.exp: test_no_detach_on_fork: can't run to main
PASS -> FAIL: gdb.base/pie-fork.exp: test_no_detach_on_fork: continue
new UNRESOLVED: gdb.base/pr10179.exp: pr10179
new UNRESOLVED: gdb.base/pr11022.exp: can't run to main
new UNRESOLVED: gdb.base/pretty-print.exp: pretty-print.exp
new UNRESOLVED: gdb.base/print-file-var.exp: lang=c++: hidden=0: dlopen=0: version_id_main=0: could not run to main
new UNRESOLVED: gdb.base/print-file-var.exp: lang=c++: hidden=0: dlopen=0: version_id_main=1: could not run to main
new UNRESOLVED: gdb.base/print-file-var.exp: lang=c++: hidden=0: dlopen=1: version_id_main=0: could not run to main
new UNRESOLVED: gdb.base/print-file-var.exp: lang=c++: hidden=0: dlopen=1: version_id_main=1: could not run to main
new UNRESOLVED: gdb.base/print-file-var.exp: lang=c++: hidden=1: dlopen=0: version_id_main=0: could not run to main
new UNRESOLVED: gdb.base/print-file-var.exp: lang=c++: hidden=1: dlopen=0: version_id_main=1: could not run to main
new UNRESOLVED: gdb.base/print-file-var.exp: lang=c++: hidden=1: dlopen=1: version_id_main=0: could not run to main
new UNRESOLVED: gdb.base/print-file-var.exp: lang=c++: hidden=1: dlopen=1: version_id_main=1: could not run to main
new UNRESOLVED: gdb.base/print-file-var.exp: lang=c: hidden=0: dlopen=0: version_id_main=0: could not run to main
new UNRESOLVED: gdb.base/print-file-var.exp: lang=c: hidden=0: dlopen=0: version_id_main=1: could not run to main
new UNRESOLVED: gdb.base/print-file-var.exp: lang=c: hidden=0: dlopen=1: version_id_main=0: could not run to main
new UNRESOLVED: gdb.base/print-file-var.exp: lang=c: hidden=0: dlopen=1: version_id_main=1: could not run to main
new UNRESOLVED: gdb.base/print-file-var.exp: lang=c: hidden=1: dlopen=0: version_id_main=0: could not run to main
new UNRESOLVED: gdb.base/print-file-var.exp: lang=c: hidden=1: dlopen=0: version_id_main=1: could not run to main
new UNRESOLVED: gdb.base/print-file-var.exp: lang=c: hidden=1: dlopen=1: version_id_main=0: could not run to main
new UNRESOLVED: gdb.base/print-file-var.exp: lang=c: hidden=1: dlopen=1: version_id_main=1: could not run to main
new UNRESOLVED: gdb.base/printcmds.exp: can't run to main
new UNRESOLVED: gdb.base/ptr-typedef.exp: couldn't run to marker1
new UNRESOLVED: gdb.base/quit-live.exp: appear_how=run: extra_inferior=0: quit_how=quit: can't run to main
new UNRESOLVED: gdb.base/quit-live.exp: appear_how=run: extra_inferior=0: quit_how=sighup: can't run to main
new UNRESOLVED: gdb.base/quit-live.exp: appear_how=run: extra_inferior=0: quit_how=sigterm: can't run to main
new UNRESOLVED: gdb.base/quit-live.exp: appear_how=run: extra_inferior=1: quit_how=quit: can't run to main
new UNRESOLVED: gdb.base/quit-live.exp: appear_how=run: extra_inferior=1: quit_how=sighup: can't run to main
new UNRESOLVED: gdb.base/quit-live.exp: appear_how=run: extra_inferior=1: quit_how=sigterm: can't run to main
new UNRESOLVED: gdb.base/range-stepping.exp: can't run to main
new UNRESOLVED: gdb.base/recpar.exp: could not run to main
new UNRESOLVED: gdb.base/reggroups.exp: can't run to main
new UNRESOLVED: gdb.base/relativedebug.exp: continue
new FAIL: gdb.base/relativedebug.exp: pause found in backtrace
new UNRESOLVED: gdb.base/remote.exp: cannot run to main
PASS -> FAIL: gdb.base/reread.exp: opts= "" "" : continue until exit at second pass
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : run to foo
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: run to foo
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : continue until exit at second pass
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : run to foo
new UNRESOLVED: gdb.base/return2.exp: couldn't run to main
new UNRESOLVED: gdb.base/save-bp.exp: could not run to main
new UNRESOLVED: gdb.base/savedregs.exp: can't run to main
PASS -> FAIL: gdb.base/sepdebug.exp: backtrace from factorial
PASS -> FAIL: gdb.base/sepdebug.exp: backtrace while in called function
PASS -> FAIL: gdb.base/sepdebug.exp: break on default location, 1st time
PASS -> FAIL: gdb.base/sepdebug.exp: break on default location, 2nd time
PASS -> FAIL: gdb.base/sepdebug.exp: break on default location, 3rd time
PASS -> FAIL: gdb.base/sepdebug.exp: break on default location, 4th time
PASS -> FAIL: gdb.base/sepdebug.exp: breakpoint offset +1
PASS -> FAIL: gdb.base/sepdebug.exp: build-id: run until breakpoint set at small function, optimized file
PASS -> UNRESOLVED: gdb.base/sepdebug.exp: build-id: run until function breakpoint, optimized file
PASS -> FAIL: gdb.base/sepdebug.exp: clear current line has no breakpoint disallowed
PASS -> FAIL: gdb.base/sepdebug.exp: continue to factorial
PASS -> FAIL: gdb.base/sepdebug.exp: continue until exit at recursive next test
PASS -> FAIL: gdb.base/sepdebug.exp: debuglink: run until breakpoint set at small function, optimized file
PASS -> UNRESOLVED: gdb.base/sepdebug.exp: debuglink: run until function breakpoint, optimized file
PASS -> FAIL: gdb.base/sepdebug.exp: finish from called function
PASS -> FAIL: gdb.base/sepdebug.exp: finish from outermost frame disallowed
PASS -> FAIL: gdb.base/sepdebug.exp: finish with arguments disallowed
PASS -> FAIL: gdb.base/sepdebug.exp: hit breakpoint on called function
PASS -> FAIL: gdb.base/sepdebug.exp: hit silent break bp_location1
PASS -> FAIL: gdb.base/sepdebug.exp: multiple-dirs: run until breakpoint set at small function, optimized file
PASS -> UNRESOLVED: gdb.base/sepdebug.exp: multiple-dirs: run until function breakpoint, optimized file
PASS -> FAIL: gdb.base/sepdebug.exp: next over recursive call
PASS -> FAIL: gdb.base/sepdebug.exp: next to recursive call
PASS -> UNRESOLVED: gdb.base/sepdebug.exp: run to factorial
PASS -> FAIL: gdb.base/sepdebug.exp: run until breakpoint set at a line number
PASS -> FAIL: gdb.base/sepdebug.exp: run until file:function
PASS -> FAIL: gdb.base/sepdebug.exp: run until file:linenum breakpoint
PASS -> UNRESOLVED: gdb.base/sepdebug.exp: run until function breakpoint
PASS -> FAIL: gdb.base/sepdebug.exp: run until quoted breakpoint
new UNRESOLVED: gdb.base/sepdebug.exp: sepdebug tests suppressed
PASS -> FAIL: gdb.base/sepdebug.exp: step onto breakpoint
PASS -> FAIL: gdb.base/sepdebug.exp: step over breakpoint
PASS -> FAIL: gdb.base/sepdebug.exp: stopped for silent break bp_location1
PASS -> FAIL: gdb.base/sepdebug.exp: until bp_location1
new UNRESOLVED: gdb.base/set-noassign.exp: can't run to main
new UNRESOLVED: gdb.base/setshow.exp: can't run to main
PASS -> FAIL: gdb.base/shlib-call.exp: breakpoint function shr2
PASS -> FAIL: gdb.base/shlib-call.exp: continue until exit
PASS -> FAIL: gdb.base/shlib-call.exp: next over shr1
PASS -> UNRESOLVED: gdb.base/shlib-call.exp: next to shr1
PASS -> FAIL: gdb.base/shlib-call.exp: print g
PASS -> FAIL: gdb.base/shlib-call.exp: print mainshr1
PASS -> FAIL: gdb.base/shlib-call.exp: print shr1
PASS -> UNRESOLVED: gdb.base/shlib-call.exp: re-run to bp in shared library
PASS -> UNRESOLVED: gdb.base/shlib-call.exp: run to bp in shared library
PASS -> FAIL: gdb.base/shlib-call.exp: run until breakpoint set at a function
PASS -> FAIL: gdb.base/shlib-call.exp: step into mainshr1
PASS -> FAIL: gdb.base/shlib-call.exp: step out of shr2 to main
new UNRESOLVED: gdb.base/shreloc.exp: can't run to main
PASS -> FAIL: gdb.base/sigall.exp: advance to 33
PASS -> FAIL: gdb.base/sigall.exp: advance to 34
PASS -> FAIL: gdb.base/sigall.exp: advance to 35
PASS -> FAIL: gdb.base/sigall.exp: advance to 36
PASS -> FAIL: gdb.base/sigall.exp: advance to 37
PASS -> FAIL: gdb.base/sigall.exp: advance to 38
PASS -> FAIL: gdb.base/sigall.exp: advance to 39
PASS -> FAIL: gdb.base/sigall.exp: advance to 40
PASS -> FAIL: gdb.base/sigall.exp: advance to 41
PASS -> FAIL: gdb.base/sigall.exp: advance to 42
PASS -> FAIL: gdb.base/sigall.exp: advance to 43
PASS -> FAIL: gdb.base/sigall.exp: advance to 44
PASS -> FAIL: gdb.base/sigall.exp: advance to 45
PASS -> FAIL: gdb.base/sigall.exp: advance to 46
PASS -> FAIL: gdb.base/sigall.exp: advance to 47
PASS -> FAIL: gdb.base/sigall.exp: advance to 48
PASS -> FAIL: gdb.base/sigall.exp: advance to 49
PASS -> FAIL: gdb.base/sigall.exp: advance to 50
PASS -> FAIL: gdb.base/sigall.exp: advance to 51
PASS -> FAIL: gdb.base/sigall.exp: advance to 52
PASS -> FAIL: gdb.base/sigall.exp: advance to 53
PASS -> FAIL: gdb.base/sigall.exp: advance to 54
PASS -> FAIL: gdb.base/sigall.exp: advance to 55
PASS -> FAIL: gdb.base/sigall.exp: advance to 56
PASS -> FAIL: gdb.base/sigall.exp: advance to 57
PASS -> FAIL: gdb.base/sigall.exp: advance to 58
PASS -> FAIL: gdb.base/sigall.exp: advance to 59
PASS -> FAIL: gdb.base/sigall.exp: advance to 60
PASS -> FAIL: gdb.base/sigall.exp: advance to 61
PASS -> FAIL: gdb.base/sigall.exp: advance to 62
PASS -> FAIL: gdb.base/sigall.exp: advance to 63
PASS -> FAIL: gdb.base/sigall.exp: advance to ALRM
PASS -> FAIL: gdb.base/sigall.exp: advance to BUS
PASS -> FAIL: gdb.base/sigall.exp: advance to CHLD
PASS -> FAIL: gdb.base/sigall.exp: advance to CONT
PASS -> FAIL: gdb.base/sigall.exp: advance to DANGER
PASS -> FAIL: gdb.base/sigall.exp: advance to EMT
PASS -> FAIL: gdb.base/sigall.exp: advance to FPE
PASS -> FAIL: gdb.base/sigall.exp: advance to GRANT
PASS -> FAIL: gdb.base/sigall.exp: advance to HUP
PASS -> FAIL: gdb.base/sigall.exp: advance to ILL
PASS -> FAIL: gdb.base/sigall.exp: advance to IO
PASS -> FAIL: gdb.base/sigall.exp: advance to LOST
PASS -> FAIL: gdb.base/sigall.exp: advance to LWP
PASS -> FAIL: gdb.base/sigall.exp: advance to MSG
PASS -> FAIL: gdb.base/sigall.exp: advance to PHONE
PASS -> FAIL: gdb.base/sigall.exp: advance to PIPE
PASS -> FAIL: gdb.base/sigall.exp: advance to POLL
PASS -> FAIL: gdb.base/sigall.exp: advance to PRIO
PASS -> FAIL: gdb.base/sigall.exp: advance to PROF
PASS -> FAIL: gdb.base/sigall.exp: advance to PWR
PASS -> FAIL: gdb.base/sigall.exp: advance to QUIT
PASS -> FAIL: gdb.base/sigall.exp: advance to RETRACT
PASS -> FAIL: gdb.base/sigall.exp: advance to SAK
PASS -> FAIL: gdb.base/sigall.exp: advance to SEGV
PASS -> FAIL: gdb.base/sigall.exp: advance to SOUND
PASS -> FAIL: gdb.base/sigall.exp: advance to SYS
PASS -> FAIL: gdb.base/sigall.exp: advance to TERM
PASS -> FAIL: gdb.base/sigall.exp: advance to TSTP
PASS -> FAIL: gdb.base/sigall.exp: advance to TTIN
PASS -> FAIL: gdb.base/sigall.exp: advance to TTOU
PASS -> FAIL: gdb.base/sigall.exp: advance to URG
PASS -> FAIL: gdb.base/sigall.exp: advance to USR1
PASS -> FAIL: gdb.base/sigall.exp: advance to USR2
PASS -> FAIL: gdb.base/sigall.exp: advance to VTALRM
PASS -> FAIL: gdb.base/sigall.exp: advance to WAITING
PASS -> FAIL: gdb.base/sigall.exp: advance to WINCH
PASS -> FAIL: gdb.base/sigall.exp: advance to WIND
PASS -> FAIL: gdb.base/sigall.exp: advance to XCPU
PASS -> FAIL: gdb.base/sigall.exp: advance to XFSZ
PASS -> FAIL: gdb.base/sigall.exp: continue until exit at continue to sigall exit
new FAIL: gdb.base/sigall.exp: get signal 33
new FAIL: gdb.base/sigall.exp: get signal 34
new FAIL: gdb.base/sigall.exp: get signal 35
new FAIL: gdb.base/sigall.exp: get signal 36
new FAIL: gdb.base/sigall.exp: get signal 37
new FAIL: gdb.base/sigall.exp: get signal 38
new FAIL: gdb.base/sigall.exp: get signal 39
new FAIL: gdb.base/sigall.exp: get signal 40
new FAIL: gdb.base/sigall.exp: get signal 41
new FAIL: gdb.base/sigall.exp: get signal 42
new FAIL: gdb.base/sigall.exp: get signal 43
new FAIL: gdb.base/sigall.exp: get signal 44
new FAIL: gdb.base/sigall.exp: get signal 45
new FAIL: gdb.base/sigall.exp: get signal 46
new FAIL: gdb.base/sigall.exp: get signal 47
new FAIL: gdb.base/sigall.exp: get signal 48
new FAIL: gdb.base/sigall.exp: get signal 49
new FAIL: gdb.base/sigall.exp: get signal 50
new FAIL: gdb.base/sigall.exp: get signal 51
new FAIL: gdb.base/sigall.exp: get signal 52
new FAIL: gdb.base/sigall.exp: get signal 53
new FAIL: gdb.base/sigall.exp: get signal 54
new FAIL: gdb.base/sigall.exp: get signal 55
new FAIL: gdb.base/sigall.exp: get signal 56
new FAIL: gdb.base/sigall.exp: get signal 57
new FAIL: gdb.base/sigall.exp: get signal 58
new FAIL: gdb.base/sigall.exp: get signal 59
new FAIL: gdb.base/sigall.exp: get signal 60
new FAIL: gdb.base/sigall.exp: get signal 61
new FAIL: gdb.base/sigall.exp: get signal 62
new FAIL: gdb.base/sigall.exp: get signal 63
PASS -> FAIL: gdb.base/sigall.exp: get signal ABRT
PASS -> FAIL: gdb.base/sigall.exp: get signal ALRM
PASS -> FAIL: gdb.base/sigall.exp: get signal BUS
PASS -> FAIL: gdb.base/sigall.exp: get signal CHLD
PASS -> FAIL: gdb.base/sigall.exp: get signal CONT
new FAIL: gdb.base/sigall.exp: get signal DANGER
new FAIL: gdb.base/sigall.exp: get signal EMT
PASS -> FAIL: gdb.base/sigall.exp: get signal FPE
new FAIL: gdb.base/sigall.exp: get signal GRANT
PASS -> FAIL: gdb.base/sigall.exp: get signal HUP
PASS -> FAIL: gdb.base/sigall.exp: get signal ILL
PASS -> FAIL: gdb.base/sigall.exp: get signal IO
new FAIL: gdb.base/sigall.exp: get signal LOST
new FAIL: gdb.base/sigall.exp: get signal LWP
new FAIL: gdb.base/sigall.exp: get signal MSG
new FAIL: gdb.base/sigall.exp: get signal PHONE
PASS -> FAIL: gdb.base/sigall.exp: get signal PIPE
new FAIL: gdb.base/sigall.exp: get signal POLL
new FAIL: gdb.base/sigall.exp: get signal PRIO
PASS -> FAIL: gdb.base/sigall.exp: get signal PROF
PASS -> FAIL: gdb.base/sigall.exp: get signal PWR
PASS -> FAIL: gdb.base/sigall.exp: get signal QUIT
new FAIL: gdb.base/sigall.exp: get signal RETRACT
new FAIL: gdb.base/sigall.exp: get signal SAK
PASS -> FAIL: gdb.base/sigall.exp: get signal SEGV
new FAIL: gdb.base/sigall.exp: get signal SOUND
PASS -> FAIL: gdb.base/sigall.exp: get signal SYS
PASS -> FAIL: gdb.base/sigall.exp: get signal TERM
PASS -> FAIL: gdb.base/sigall.exp: get signal TSTP
PASS -> FAIL: gdb.base/sigall.exp: get signal TTIN
PASS -> FAIL: gdb.base/sigall.exp: get signal TTOU
PASS -> FAIL: gdb.base/sigall.exp: get signal URG
PASS -> FAIL: gdb.base/sigall.exp: get signal USR1
PASS -> FAIL: gdb.base/sigall.exp: get signal USR2
PASS -> FAIL: gdb.base/sigall.exp: get signal VTALRM
new FAIL: gdb.base/sigall.exp: get signal WAITING
PASS -> FAIL: gdb.base/sigall.exp: get signal WINCH
new FAIL: gdb.base/sigall.exp: get signal WIND
PASS -> FAIL: gdb.base/sigall.exp: get signal XCPU
PASS -> FAIL: gdb.base/sigall.exp: get signal XFSZ
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGABRT stop print
PASS -> FAIL: gdb.base/sigall.exp: send signal 33
PASS -> FAIL: gdb.base/sigall.exp: send signal 34
PASS -> FAIL: gdb.base/sigall.exp: send signal 35
PASS -> FAIL: gdb.base/sigall.exp: send signal 36
PASS -> FAIL: gdb.base/sigall.exp: send signal 37
PASS -> FAIL: gdb.base/sigall.exp: send signal 38
PASS -> FAIL: gdb.base/sigall.exp: send signal 39
PASS -> FAIL: gdb.base/sigall.exp: send signal 40
PASS -> FAIL: gdb.base/sigall.exp: send signal 41
PASS -> FAIL: gdb.base/sigall.exp: send signal 42
PASS -> FAIL: gdb.base/sigall.exp: send signal 43
PASS -> FAIL: gdb.base/sigall.exp: send signal 44
PASS -> FAIL: gdb.base/sigall.exp: send signal 45
PASS -> FAIL: gdb.base/sigall.exp: send signal 46
PASS -> FAIL: gdb.base/sigall.exp: send signal 47
PASS -> FAIL: gdb.base/sigall.exp: send signal 48
PASS -> FAIL: gdb.base/sigall.exp: send signal 49
PASS -> FAIL: gdb.base/sigall.exp: send signal 50
PASS -> FAIL: gdb.base/sigall.exp: send signal 51
PASS -> FAIL: gdb.base/sigall.exp: send signal 52
PASS -> FAIL: gdb.base/sigall.exp: send signal 53
PASS -> FAIL: gdb.base/sigall.exp: send signal 54
PASS -> FAIL: gdb.base/sigall.exp: send signal 55
PASS -> FAIL: gdb.base/sigall.exp: send signal 56
PASS -> FAIL: gdb.base/sigall.exp: send signal 57
PASS -> FAIL: gdb.base/sigall.exp: send signal 58
PASS -> FAIL: gdb.base/sigall.exp: send signal 59
PASS -> FAIL: gdb.base/sigall.exp: send signal 60
PASS -> FAIL: gdb.base/sigall.exp: send signal 61
PASS -> FAIL: gdb.base/sigall.exp: send signal 62
PASS -> FAIL: gdb.base/sigall.exp: send signal 63
PASS -> FAIL: gdb.base/sigall.exp: send signal ABRT
PASS -> FAIL: gdb.base/sigall.exp: send signal ALRM
PASS -> FAIL: gdb.base/sigall.exp: send signal BUS
PASS -> FAIL: gdb.base/sigall.exp: send signal CHLD
PASS -> FAIL: gdb.base/sigall.exp: send signal CONT
PASS -> FAIL: gdb.base/sigall.exp: send signal DANGER
PASS -> FAIL: gdb.base/sigall.exp: send signal EMT
PASS -> FAIL: gdb.base/sigall.exp: send signal FPE
PASS -> FAIL: gdb.base/sigall.exp: send signal GRANT
PASS -> FAIL: gdb.base/sigall.exp: send signal HUP
PASS -> FAIL: gdb.base/sigall.exp: send signal ILL
PASS -> FAIL: gdb.base/sigall.exp: send signal IO
PASS -> FAIL: gdb.base/sigall.exp: send signal LOST
PASS -> FAIL: gdb.base/sigall.exp: send signal LWP
PASS -> FAIL: gdb.base/sigall.exp: send signal MSG
PASS -> FAIL: gdb.base/sigall.exp: send signal PHONE
PASS -> FAIL: gdb.base/sigall.exp: send signal PIPE
PASS -> FAIL: gdb.base/sigall.exp: send signal POLL
PASS -> FAIL: gdb.base/sigall.exp: send signal PRIO
PASS -> FAIL: gdb.base/sigall.exp: send signal PROF
PASS -> FAIL: gdb.base/sigall.exp: send signal PWR
PASS -> FAIL: gdb.base/sigall.exp: send signal QUIT
PASS -> FAIL: gdb.base/sigall.exp: send signal RETRACT
PASS -> FAIL: gdb.base/sigall.exp: send signal SAK
PASS -> FAIL: gdb.base/sigall.exp: send signal SEGV
PASS -> FAIL: gdb.base/sigall.exp: send signal SOUND
PASS -> FAIL: gdb.base/sigall.exp: send signal SYS
PASS -> FAIL: gdb.base/sigall.exp: send signal TERM
PASS -> FAIL: gdb.base/sigall.exp: send signal TSTP
PASS -> FAIL: gdb.base/sigall.exp: send signal TTIN
PASS -> FAIL: gdb.base/sigall.exp: send signal TTOU
PASS -> FAIL: gdb.base/sigall.exp: send signal URG
PASS -> FAIL: gdb.base/sigall.exp: send signal USR1
PASS -> FAIL: gdb.base/sigall.exp: send signal USR2
PASS -> FAIL: gdb.base/sigall.exp: send signal VTALRM
PASS -> FAIL: gdb.base/sigall.exp: send signal WAITING
PASS -> FAIL: gdb.base/sigall.exp: send signal WINCH
PASS -> FAIL: gdb.base/sigall.exp: send signal WIND
PASS -> FAIL: gdb.base/sigall.exp: send signal XCPU
PASS -> FAIL: gdb.base/sigall.exp: send signal XFSZ
new UNRESOLVED: gdb.base/sigaltstack.exp: can't run to main
new UNRESOLVED: gdb.base/sigbpt.exp: can't run to main
PASS -> FAIL: gdb.base/sigchld.exp: SIGCHLD blocked in inferior
PASS -> UNRESOLVED: gdb.base/sigchld.exp: set breakpoint at success exit
new UNRESOLVED: gdb.base/siginfo-addr.exp: can't run to main
new UNRESOLVED: gdb.base/siginfo-obj.exp: can't run to main
new UNRESOLVED: gdb.base/siginfo-thread.exp: can't run to main
new UNRESOLVED: gdb.base/siginfo.exp: can't run to main
new UNRESOLVED: gdb.base/signals-state-child.exp: failed to compile
new UNRESOLVED: gdb.base/signest.exp: could not run to main
new UNRESOLVED: gdb.base/signull.exp: can't run to main
new UNRESOLVED: gdb.base/sigrepeat.exp: can't run to main
PASS -> FAIL: gdb.base/sigstep.exp: continue over handler: performing continue
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue over handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler entry: performing continue
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler entry: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler, nothing in handler, continue from handler: break handler
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, nothing in handler, continue from handler: continue to handler
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, nothing in handler, continue from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler, nothing in handler, next from handler: break handler
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, nothing in handler, next from handler: continue to handler
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, nothing in handler, next from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler, nothing in handler, step from handler: break handler
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, nothing in handler, step from handler: continue to handler
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, nothing in handler, step from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, si+advance in handler, continue from handler: advance in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler, si+advance in handler, continue from handler: break handler
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, si+advance in handler, continue from handler: continue to handler
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, si+advance in handler, continue from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, si+advance in handler, continue from handler: si in handler
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, si+advance in handler, next from handler: advance in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler, si+advance in handler, next from handler: break handler
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, si+advance in handler, next from handler: continue to handler
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, si+advance in handler, next from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, si+advance in handler, next from handler: si in handler
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, si+advance in handler, step from handler: advance in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler, si+advance in handler, step from handler: break handler
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, si+advance in handler, step from handler: continue to handler
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, si+advance in handler, step from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, si+advance in handler, step from handler: si in handler
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler: performing continue
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, no handler: performing continue
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, no handler: set displaced-stepping off
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, no handler: set no_handler
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint, no handler: performing continue
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint, no handler: set displaced-stepping off
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint, no handler: set no_handler
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint, no handler: watch $convenience
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint: performing continue
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint: set displaced-stepping off
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint: watch $convenience
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler: performing continue
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler: set displaced-stepping off
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler entry: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler entry: performing continue
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler entry: set displaced-stepping off
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler entry: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler: performing continue
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler: set displaced-stepping off
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, no handler: performing next
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, no handler: set displaced-stepping off
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, no handler: set no_handler
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint, no handler: performing next
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint, no handler: set displaced-stepping off
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint, no handler: set no_handler
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint, no handler: watch $convenience
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint: performing next
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint: set displaced-stepping off
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint: watch $convenience
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler: performing next
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler: set displaced-stepping off
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler entry: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler entry: performing next
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler entry: set displaced-stepping off
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler entry: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler: performing next
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler: set displaced-stepping off
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, no handler: advanced
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, no handler: get next PC
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, no handler: performing nexti
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, no handler: set displaced-stepping off
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, no handler: set no_handler
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: advanced
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: get next PC
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: performing nexti
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: set displaced-stepping off
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: set no_handler
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: watch $convenience
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint: advanced
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint: get next PC
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint: performing nexti
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint: set displaced-stepping off
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint: watch $convenience
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler: advanced
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler: get next PC
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler: performing nexti
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler: set displaced-stepping off
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, no handler: performing step
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, no handler: set displaced-stepping off
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, no handler: set no_handler
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint, no handler: performing step
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint, no handler: set displaced-stepping off
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint, no handler: set no_handler
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint, no handler: watch $convenience
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint: performing step
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint: set displaced-stepping off
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint: watch $convenience
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler: performing step
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler: set displaced-stepping off
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler entry: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler entry: performing step
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler entry: set displaced-stepping off
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler entry: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler: performing step
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler: set displaced-stepping off
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, no handler: advanced
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, no handler: get next PC
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, no handler: performing stepi
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, no handler: set displaced-stepping off
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, no handler: set no_handler
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: advanced
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: get next PC
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: performing stepi
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: set displaced-stepping off
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: set no_handler
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: watch $convenience
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint: advanced
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint: get next PC
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint: performing stepi
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint: set displaced-stepping off
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint: watch $convenience
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler: advanced
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler: get next PC
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler: performing stepi
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler: set displaced-stepping off
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, no handler: performing continue
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, no handler: set displaced-stepping on
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, no handler: set no_handler
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint, no handler: performing continue
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint, no handler: set displaced-stepping on
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint, no handler: set no_handler
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint, no handler: watch $convenience
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint: performing continue
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint: set displaced-stepping on
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint: watch $convenience
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler: performing continue
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler: set displaced-stepping on
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler entry: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler entry: performing continue
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler entry: set displaced-stepping on
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler entry: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler: performing continue
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler: set displaced-stepping on
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, no handler: performing next
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, no handler: set displaced-stepping on
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, no handler: set no_handler
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint, no handler: performing next
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint, no handler: set displaced-stepping on
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint, no handler: set no_handler
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint, no handler: watch $convenience
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint: performing next
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint: set displaced-stepping on
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint: watch $convenience
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler: performing next
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler: set displaced-stepping on
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler entry: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler entry: performing next
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler entry: set displaced-stepping on
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler entry: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler: performing next
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler: set displaced-stepping on
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, no handler: advanced
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, no handler: get next PC
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, no handler: performing nexti
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, no handler: set displaced-stepping on
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, no handler: set no_handler
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: advanced
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: get next PC
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: performing nexti
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: set displaced-stepping on
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: set no_handler
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: watch $convenience
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint: advanced
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint: get next PC
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint: performing nexti
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint: set displaced-stepping on
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint: watch $convenience
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler: advanced
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler: get next PC
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler: performing nexti
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler: set displaced-stepping on
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, no handler: performing step
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, no handler: set displaced-stepping on
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, no handler: set no_handler
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint, no handler: performing step
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint, no handler: set displaced-stepping on
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint, no handler: set no_handler
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint, no handler: watch $convenience
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint: performing step
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint: set displaced-stepping on
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint: watch $convenience
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler: performing step
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler: set displaced-stepping on
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler entry: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler entry: performing step
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler entry: set displaced-stepping on
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler entry: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler: performing step
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler: set displaced-stepping on
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, no handler: advanced
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, no handler: get next PC
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, no handler: performing stepi
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, no handler: set displaced-stepping on
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, no handler: set no_handler
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: advanced
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: get next PC
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: performing stepi
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: set displaced-stepping on
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: set no_handler
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: watch $convenience
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint: advanced
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint: get next PC
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint: performing stepi
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint: set displaced-stepping on
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint: watch $convenience
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler: advanced
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler: get next PC
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler: performing stepi
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler: set displaced-stepping on
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: finish from handleri: break handler
PASS -> FAIL: gdb.base/sigstep.exp: finish from handleri: continue to handler
PASS -> FAIL: gdb.base/sigstep.exp: finish from handleri: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: finish from handleri: leave signal trampoline
PASS -> FAIL: gdb.base/sigstep.exp: next over handler: performing next
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next over handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: next to handler entry: performing next
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler entry: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, nothing in handler, continue from handler: continue to signal
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, nothing in handler, continue from handler: handle SIGALRM print pass stop
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, nothing in handler, continue from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, nothing in handler, continue from handler: next to handler
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, nothing in handler, next from handler: continue to signal
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, nothing in handler, next from handler: handle SIGALRM print pass stop
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, nothing in handler, next from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, nothing in handler, next from handler: next to handler
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, nothing in handler, step from handler: continue to signal
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, nothing in handler, step from handler: handle SIGALRM print pass stop
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, nothing in handler, step from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, nothing in handler, step from handler: next to handler
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, si+advance in handler, continue from handler: advance in handler
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, si+advance in handler, continue from handler: continue to signal
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, si+advance in handler, continue from handler: handle SIGALRM print pass stop
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, si+advance in handler, continue from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, si+advance in handler, continue from handler: next to handler
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, si+advance in handler, continue from handler: si in handler
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, si+advance in handler, next from handler: advance in handler
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, si+advance in handler, next from handler: continue to signal
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, si+advance in handler, next from handler: handle SIGALRM print pass stop
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, si+advance in handler, next from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, si+advance in handler, next from handler: next to handler
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, si+advance in handler, next from handler: si in handler
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, si+advance in handler, step from handler: advance in handler
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, si+advance in handler, step from handler: continue to signal
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, si+advance in handler, step from handler: handle SIGALRM print pass stop
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, si+advance in handler, step from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, si+advance in handler, step from handler: next to handler
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, si+advance in handler, step from handler: si in handler
PASS -> FAIL: gdb.base/sigstep.exp: next to handler: performing next
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti from handleri: break handler
PASS -> FAIL: gdb.base/sigstep.exp: nexti from handleri: continue to handler
PASS -> FAIL: gdb.base/sigstep.exp: nexti from handleri: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: nexti from handleri: leave signal trampoline
PASS -> FAIL: gdb.base/sigstep.exp: nexti over handler: advanced
PASS -> FAIL: gdb.base/sigstep.exp: nexti over handler: get next PC
PASS -> FAIL: gdb.base/sigstep.exp: nexti over handler: performing nexti
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti over handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler entry: performing nexti
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler entry: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, nothing in handler, continue from handler: continue to signal
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, continue from handler: handle SIGALRM print pass stop
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, nothing in handler, continue from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, nothing in handler, continue from handler: nexti to handler
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, nothing in handler, next from handler: continue to signal
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, next from handler: handle SIGALRM print pass stop
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, nothing in handler, next from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, nothing in handler, next from handler: nexti to handler
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, nothing in handler, step from handler: continue to signal
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, step from handler: handle SIGALRM print pass stop
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, nothing in handler, step from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, nothing in handler, step from handler: nexti to handler
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, continue from handler: advance in handler
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, continue from handler: continue to signal
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, continue from handler: handle SIGALRM print pass stop
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, continue from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, continue from handler: nexti to handler
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, continue from handler: si in handler
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, next from handler: advance in handler
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, next from handler: continue to signal
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, next from handler: handle SIGALRM print pass stop
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, next from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, next from handler: nexti to handler
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, next from handler: si in handler
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, step from handler: advance in handler
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, step from handler: continue to signal
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, step from handler: handle SIGALRM print pass stop
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, step from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, step from handler: nexti to handler
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, step from handler: si in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: return from handleri: break handler
PASS -> FAIL: gdb.base/sigstep.exp: return from handleri: continue to handler
PASS -> FAIL: gdb.base/sigstep.exp: return from handleri: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: return from handleri: leave signal trampoline
PASS -> FAIL: gdb.base/sigstep.exp: step over handler: performing step
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step over handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: step to handler entry: performing step
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler entry: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, nothing in handler, continue from handler: continue to signal
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, nothing in handler, continue from handler: handle SIGALRM print pass stop
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, nothing in handler, continue from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, nothing in handler, continue from handler: step to handler
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, nothing in handler, next from handler: continue to signal
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, nothing in handler, next from handler: handle SIGALRM print pass stop
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, nothing in handler, next from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, nothing in handler, next from handler: step to handler
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, nothing in handler, step from handler: continue to signal
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, nothing in handler, step from handler: handle SIGALRM print pass stop
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, nothing in handler, step from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, nothing in handler, step from handler: step to handler
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, si+advance in handler, continue from handler: advance in handler
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, si+advance in handler, continue from handler: continue to signal
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, si+advance in handler, continue from handler: handle SIGALRM print pass stop
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, si+advance in handler, continue from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, si+advance in handler, continue from handler: si in handler
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, si+advance in handler, continue from handler: step to handler
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, si+advance in handler, next from handler: advance in handler
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, si+advance in handler, next from handler: continue to signal
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, si+advance in handler, next from handler: handle SIGALRM print pass stop
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, si+advance in handler, next from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, si+advance in handler, next from handler: si in handler
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, si+advance in handler, next from handler: step to handler
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, si+advance in handler, step from handler: advance in handler
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, si+advance in handler, step from handler: continue to signal
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, si+advance in handler, step from handler: handle SIGALRM print pass stop
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, si+advance in handler, step from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, si+advance in handler, step from handler: si in handler
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, si+advance in handler, step from handler: step to handler
PASS -> FAIL: gdb.base/sigstep.exp: step to handler: performing step
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi from handleri: break handler
PASS -> FAIL: gdb.base/sigstep.exp: stepi from handleri: continue to handler
PASS -> FAIL: gdb.base/sigstep.exp: stepi from handleri: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: stepi from handleri: leave signal trampoline
PASS -> FAIL: gdb.base/sigstep.exp: stepi over handler: advanced
PASS -> FAIL: gdb.base/sigstep.exp: stepi over handler: get next PC
PASS -> FAIL: gdb.base/sigstep.exp: stepi over handler: performing stepi
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi over handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler entry: performing stepi
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler entry: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, nothing in handler, continue from handler: continue to signal
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, continue from handler: handle SIGALRM print pass stop
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, nothing in handler, continue from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, nothing in handler, continue from handler: stepi to handler
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, nothing in handler, next from handler: continue to signal
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, next from handler: handle SIGALRM print pass stop
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, nothing in handler, next from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, nothing in handler, next from handler: stepi to handler
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, nothing in handler, step from handler: continue to signal
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, step from handler: handle SIGALRM print pass stop
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, nothing in handler, step from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, nothing in handler, step from handler: stepi to handler
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: advance in handler
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: continue to signal
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: handle SIGALRM print pass stop
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: si in handler
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: stepi to handler
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, next from handler: advance in handler
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, next from handler: continue to signal
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, next from handler: handle SIGALRM print pass stop
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, next from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, next from handler: si in handler
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, next from handler: stepi to handler
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, step from handler: advance in handler
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, step from handler: continue to signal
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, step from handler: handle SIGALRM print pass stop
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, step from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, step from handler: si in handler
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, step from handler: stepi to handler
PASS -> FAIL: gdb.base/sigstep.exp: validate backtrace: backtrace for nexti
PASS -> UNRESOLVED: gdb.base/sigstep.exp: validate backtrace: break handler
PASS -> FAIL: gdb.base/sigstep.exp: validate backtrace: continue to stepi handler
new UNRESOLVED: gdb.base/skip-inline.exp: can't run to main
PASS -> FAIL: gdb.base/skip-solib.exp: bt
new UNRESOLVED: gdb.base/skip-solib.exp: skip tests suppressed
PASS -> FAIL: gdb.base/skip-solib.exp: step
PASS -> FAIL: gdb.base/skip-solib.exp: step after ignoring solib file.
new UNRESOLVED: gdb.base/skip.exp: can't run to main
new UNRESOLVED: gdb.base/so-impl-ld.exp: implicit solibs tests suppressed
PASS -> FAIL: gdb.base/so-impl-ld.exp: step in solib call
PASS -> FAIL: gdb.base/so-impl-ld.exp: step into solib call
PASS -> FAIL: gdb.base/so-impl-ld.exp: step out of solib call
PASS -> FAIL: gdb.base/so-impl-ld.exp: step over solib call
new UNRESOLVED: gdb.base/solib-corrupted.exp: can't run to main
new UNRESOLVED: gdb.base/solib-disc.exp: can't run to main
new UNRESOLVED: gdb.base/solib-probes-nosharedlibrary.exp: could not run to initial instruction
new UNRESOLVED: gdb.base/solib-search.exp: can't run to main
new UNRESOLVED: gdb.base/solib-symbol.exp: can't run to main
new UNRESOLVED: gdb.base/solib-vanish.exp: can't run to main
PASS -> FAIL: gdb.base/solib-weak.exp: run to breakpoint - lib1 debug, lib2 debug, lib1 first
PASS -> FAIL: gdb.base/solib-weak.exp: run to breakpoint - lib1 debug, lib2 debug, lib2 first
PASS -> FAIL: gdb.base/solib-weak.exp: run to breakpoint - lib1 debug, lib2 nodebug, lib1 first
PASS -> FAIL: gdb.base/solib-weak.exp: run to breakpoint - lib1 debug, lib2 nodebug, lib2 first
PASS -> FAIL: gdb.base/solib-weak.exp: run to breakpoint - lib1 nodebug, lib2 debug, lib1 first
PASS -> FAIL: gdb.base/solib-weak.exp: run to breakpoint - lib1 nodebug, lib2 debug, lib2 first
PASS -> FAIL: gdb.base/solib-weak.exp: run to breakpoint - lib1 nodebug, lib2 nodebug, lib1 first
PASS -> FAIL: gdb.base/solib-weak.exp: run to breakpoint - lib1 nodebug, lib2 nodebug, lib2 first
new UNRESOLVED: gdb.base/solib-weak.exp: setting breakpoint at bar
new UNRESOLVED: gdb.base/source-dir.exp: can't run to main
new UNRESOLVED: gdb.base/source-execution.exp: can't run to main
new UNRESOLVED: gdb.base/sss-bp-on-user-bp-2.exp: can't run to main
new UNRESOLVED: gdb.base/sss-bp-on-user-bp.exp: can't run to main
new UNRESOLVED: gdb.base/stack-checking.exp: can't run to main
new UNRESOLVED: gdb.base/stack-protector.exp: protection=-fno-stack-protector: can't run to main
new UNRESOLVED: gdb.base/stack-protector.exp: protection=-fstack-protector-all: can't run to main
new UNRESOLVED: gdb.base/stack-protector.exp: protection=-fstack-protector-strong: can't run to main
new UNRESOLVED: gdb.base/stack-protector.exp: protection=-fstack-protector: can't run to main
new UNRESOLVED: gdb.base/step-break.exp: can't run to main
PASS -> FAIL: gdb.base/step-bt.exp: backtrace after first instruction step
PASS -> FAIL: gdb.base/step-bt.exp: backtrace after second instruction step
PASS -> UNRESOLVED: gdb.base/step-bt.exp: run to hello
new UNRESOLVED: gdb.base/step-line.exp: can't run to main
new UNRESOLVED: gdb.base/step-over-exit.exp: can't run to main
new UNRESOLVED: gdb.base/step-over-no-symbols.exp: displaced=auto: couldn't run to main
new UNRESOLVED: gdb.base/step-over-no-symbols.exp: displaced=off: couldn't run to main
new UNRESOLVED: gdb.base/step-over-no-symbols.exp: displaced=on: couldn't run to main
new UNRESOLVED: gdb.base/step-over-syscall.exp: clone: displaced=off: run to main
new UNRESOLVED: gdb.base/step-over-syscall.exp: fork: displaced=off: run to main
new UNRESOLVED: gdb.base/step-over-syscall.exp: run to main
new UNRESOLVED: gdb.base/step-over-syscall.exp: vfork: displaced=off: run to main
PASS -> UNRESOLVED: gdb.base/step-sw-breakpoint-adjust-pc.exp: non_stop=off: displaced_step=off: always_inserted=on: set non-stop off
PASS -> UNRESOLVED: gdb.base/step-sw-breakpoint-adjust-pc.exp: non_stop=off: displaced_step=on: always_inserted=off: set non-stop off
PASS -> UNRESOLVED: gdb.base/step-sw-breakpoint-adjust-pc.exp: non_stop=off: displaced_step=on: always_inserted=on: set non-stop off
PASS -> UNRESOLVED: gdb.base/step-sw-breakpoint-adjust-pc.exp: non_stop=on: displaced_step=off: always_inserted=off: set non-stop on
PASS -> UNRESOLVED: gdb.base/step-sw-breakpoint-adjust-pc.exp: non_stop=on: displaced_step=off: always_inserted=on: set non-stop on
PASS -> UNRESOLVED: gdb.base/step-sw-breakpoint-adjust-pc.exp: non_stop=on: displaced_step=on: always_inserted=off: set non-stop on
PASS -> UNRESOLVED: gdb.base/step-sw-breakpoint-adjust-pc.exp: non_stop=on: displaced_step=on: always_inserted=on: set non-stop on
new UNRESOLVED: gdb.base/step-test.exp: can't run to main
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 1 structs-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 1 structs-td
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 1 structs-tf
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 1 structs-ti
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 1 structs-tl
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 1 structs-tld
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 1 structs-tll
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 1 structs-ts
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-tc-ti
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-tc-tl
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-tc-ts
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-td-tf
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-tf
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-tf-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-tf-td
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-ti
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-ti-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-tl
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-tl-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-ts
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-ts-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 3 structs-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 3 structs-ts
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 4 structs-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 4 structs-ts
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 5 structs-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 6 structs-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 7 structs-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 8 structs-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 1 structs-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 1 structs-td
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 1 structs-tf
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 1 structs-ti
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 1 structs-tl
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 1 structs-tld
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 1 structs-tll
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 1 structs-ts
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-tc-ti
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-tc-tl
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-tc-ts
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-td-tf
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-tf
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-tf-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-tf-td
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-ti
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-ti-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-tl
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-tl-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-ts
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-ts-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 3 structs-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 3 structs-ts
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 4 structs-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 4 structs-ts
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 5 structs-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 6 structs-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 7 structs-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 8 structs-tc
PASS -> FAIL: gdb.base/structs.exp: call Fun<n>
PASS -> UNRESOLVED: gdb.base/structs.exp: continue to breakpoint: chartest-done
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 1 structs-tc
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 1 structs-td
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 1 structs-tf
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 1 structs-ti
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 1 structs-tl
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 1 structs-tld
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 1 structs-tll
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 1 structs-ts
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-tc
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-tc-ti
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-tc-tl
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-tc-ts
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-td-tf
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-tf
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-tf-tc
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-tf-td
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-ti
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-ti-tc
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-tl
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-tl-tc
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-ts
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-ts-tc
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 3 structs-tc
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 3 structs-ts
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 4 structs-tc
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 4 structs-ts
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 5 structs-tc
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 6 structs-tc
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 7 structs-tc
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 8 structs-tc
PASS -> FAIL: gdb.base/structs.exp: p chartest
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 1 structs-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 1 structs-td
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 1 structs-tf
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 1 structs-ti
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 1 structs-tl
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 1 structs-tld
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 1 structs-tll
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 1 structs-ts
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 10 structs-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 11 structs-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 12 structs-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 13 structs-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 14 structs-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 15 structs-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 16 structs-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 17 structs-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tc-td
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tc-tf
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tc-ti
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tc-tl
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tc-tld
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tc-tll
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tc-ts
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-td
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-td-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-td-tf
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tf
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tf-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tf-td
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-ti
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-ti-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tl
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tl-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tld
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tld-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tll
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tll-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-ts
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-ts-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 3 structs-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 3 structs-tc-tf
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 3 structs-tc-ti
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 3 structs-tc-tl
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 3 structs-tc-ts
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 3 structs-tf
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 3 structs-tf-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 3 structs-ti
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 3 structs-ti-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 3 structs-tl
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 3 structs-tl-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 3 structs-ts
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 3 structs-ts-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 4 structs-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 4 structs-tc-tf
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 4 structs-tc-ti
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 4 structs-tc-tl
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 4 structs-tc-ts
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 4 structs-tf-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 4 structs-ti-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 4 structs-tl-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 4 structs-ts
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 4 structs-ts-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 5 structs-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 5 structs-tc-ts
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 5 structs-tf-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 5 structs-ti-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 5 structs-tl-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 5 structs-ts
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 5 structs-ts-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 6 structs-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 6 structs-tc-ts
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 6 structs-tf-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 6 structs-ti-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 6 structs-tl-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 6 structs-ts-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 7 structs-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 7 structs-ts-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 8 structs-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 8 structs-ts-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 9 structs-tc
PASS -> FAIL: gdb.base/structs.exp: p/c fun<n>
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo1; structs-td
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo1; structs-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo1; structs-ti
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo1; structs-tl
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo1; structs-tld
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo1; structs-tll
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo1; structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-tc-td
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-tc-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-tc-ti
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-tc-tl
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-tc-tld
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-tc-tll
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-tc-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-td-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-td-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-tf-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-tf-td
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-ti-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-tl-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-tld-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-tll-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-ts-tc
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 1 structs-tc
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 1 structs-td
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 1 structs-tf
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 1 structs-ti
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 1 structs-tl
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 1 structs-tld
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 1 structs-tll
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 1 structs-ts
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-tc
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-tc-ti
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-tc-tl
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-tc-ts
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-td-tf
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-tf
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-tf-tc
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-tf-td
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-ti
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-ti-tc
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-tl
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-tl-tc
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-ts
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-ts-tc
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 3 structs-tc
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 3 structs-ts
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 4 structs-tc
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 4 structs-ts
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 5 structs-tc
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 6 structs-tc
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 7 structs-tc
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 8 structs-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 1 structs-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 1 structs-td
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 1 structs-tf
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 1 structs-ti
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 1 structs-tl
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 1 structs-tld
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 1 structs-tll
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 1 structs-ts
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-tc-ti
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-tc-tl
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-tc-ts
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-td-tf
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-tf
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-tf-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-tf-td
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-ti
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-ti-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-tl
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-tl-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-ts
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-ts-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 3 structs-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 3 structs-ts
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 4 structs-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 4 structs-ts
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 5 structs-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 6 structs-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 7 structs-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 8 structs-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 1 structs-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 1 structs-td
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 1 structs-tf
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 1 structs-ti
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 1 structs-tl
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 1 structs-tld
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 1 structs-tll
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 1 structs-ts
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-tc-ti
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-tc-tl
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-tc-ts
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-td-tf
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-tf
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-tf-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-tf-td
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-ti
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-ti-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-tl
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-tl-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-ts
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-ts-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 3 structs-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 3 structs-ts
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 4 structs-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 4 structs-ts
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 5 structs-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 6 structs-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 7 structs-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 8 structs-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 1 structs-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 1 structs-td
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 1 structs-tf
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 1 structs-ti
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 1 structs-tl
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 1 structs-tld
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 1 structs-tll
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 1 structs-ts
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-tc-ti
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-tc-tl
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-tc-ts
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-td-tf
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-tf
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-tf-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-tf-td
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-ti
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-ti-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-tl
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-tl-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-ts
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-ts-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 3 structs-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 3 structs-ts
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 4 structs-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 4 structs-ts
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 5 structs-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 6 structs-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 7 structs-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 8 structs-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 1 structs-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 1 structs-td
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 1 structs-tf
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 1 structs-ti
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 1 structs-tl
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 1 structs-tld
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 1 structs-tll
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 1 structs-ts
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-tc-ti
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-tc-tl
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-tc-ts
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-td-tf
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-tf
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-tf-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-tf-td
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-ti
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-ti-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-tl
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-tl-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-ts
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-ts-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 3 structs-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 3 structs-ts
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 4 structs-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 4 structs-ts
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 5 structs-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 6 structs-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 7 structs-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 8 structs-tc
new UNRESOLVED: gdb.base/structs2.exp: can't run to main
new UNRESOLVED: gdb.base/structs3.exp: could not run to main
new UNRESOLVED: gdb.base/style-logging.exp: style tests failed
new UNRESOLVED: gdb.base/style.exp: style tests failed
new UNRESOLVED: gdb.base/sym-file.exp: can't run to main
new UNRESOLVED: gdb.base/symbol-alias.exp: can't run to main
new UNRESOLVED: gdb.base/symlink-sourcefile.exp: could not run to main
new UNRESOLVED: gdb.base/symtab-search-order.exp: can't run to main
new UNRESOLVED: gdb.base/term.exp: can't run to break_here
new UNRESOLVED: gdb.base/type-opaque.exp: can't run to main
new UNRESOLVED: gdb.base/ui-redirect.exp: can't run to main
PASS -> FAIL: gdb.base/unload.exp: continue to shrfunc2
PASS -> FAIL: gdb.base/unload.exp: continuing to unloaded libfile
PASS -> FAIL: gdb.base/unload.exp: continuing to unloaded libfile2
PASS -> FAIL: gdb.base/unload.exp: pending breakpoint info on first run at shrfunc1
PASS -> FAIL: gdb.base/unload.exp: pending breakpoint info on second run at shrfunc1
PASS -> FAIL: gdb.base/unload.exp: pending breakpoint info on second run at shrfunc2
PASS -> FAIL: gdb.base/unload.exp: print y from libfile
PASS -> FAIL: gdb.base/unload.exp: print y from libfile2
PASS -> UNRESOLVED: gdb.base/unload.exp: rerun to shared library breakpoint
PASS -> UNRESOLVED: gdb.base/unload.exp: running program
new UNRESOLVED: gdb.base/until-nodebug.exp: can't run to main
new UNRESOLVED: gdb.base/until.exp: can't run to main
new UNRESOLVED: gdb.base/unwindonsignal.exp: can't run to main
new UNRESOLVED: gdb.base/utf8-identifiers.exp: couldn't run to done
PASS -> FAIL: gdb.base/vdso-warning.exp: core: save a corefile
PASS -> UNRESOLVED: gdb.base/vdso-warning.exp: run: startup
new UNRESOLVED: gdb.base/vla-optimized-out.exp: o1: can't run to f1
new UNRESOLVED: gdb.base/vla-optimized-out.exp: o3: can't run to f1
new UNRESOLVED: gdb.base/vla-optimized-out.exp: o3_strict: can't run to f1
new UNRESOLVED: gdb.base/watch-cond-infcall.exp: hw: run to main
new UNRESOLVED: gdb.base/watch-cond-infcall.exp: sw: run to main
new UNRESOLVED: gdb.base/watch-cond.exp: can't run to main
new UNRESOLVED: gdb.base/watch-non-mem.exp: can't run to main
new UNRESOLVED: gdb.base/watch-read.exp: run to main
new UNRESOLVED: gdb.base/watch-vfork.exp: run to main
new UNRESOLVED: gdb.base/watch_thread_num.exp: run to main
new UNRESOLVED: gdb.base/watchpoint-reuse-slot.exp: can't run to main
new UNRESOLVED: gdb.base/watchpoint-solib.exp:
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to foo
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to foo again
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
PASS -> UNRESOLVED: gdb.base/watchpoint-solib.exp: set pending breakpoint
PASS -> FAIL: gdb.base/watchpoint-solib.exp: set watchpoint on g
new UNRESOLVED: gdb.base/watchpoint-stops-at-right-insn.exp: run to main
new UNRESOLVED: gdb.base/watchpoint-unaligned.exp: could not run to main
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo4
PASS -> FAIL: gdb.base/watchpoint.exp: delete watch w/condition and thread
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: no-hw: continue to breakpoint: func5 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: no-hw: continue to breakpoint: func6 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: no-hw: continue to breakpoint: func7 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: no-hw: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: no-hw: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: no-hw: continue with watch foo4
PASS -> FAIL: gdb.base/watchpoint.exp: no-hw: delete watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: no-hw: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: no-hw: reenable watchpoint `$pc'
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: no-hw: run to marker1 in test_disabling_watchpoints
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: no-hw: run to marker1 in test_simple_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: no-hw: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: no-hw: watch -location .x
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: no-hw: watch buf
PASS -> FAIL: gdb.base/watchpoint.exp: no-hw: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: no-hw: watchpoint on buf hit
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: run to marker1 in test_disabling_watchpoints
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: run to marker1 in test_simple_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: set slow condition watch w/thread
PASS -> FAIL: gdb.base/watchpoint.exp: trigger slow conditional watch
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: watch buf
new UNRESOLVED: gdb.base/watchpoint.exp: watch tests suppressed
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
new UNRESOLVED: gdb.base/whatis-ptype-typedefs.exp: lang=c++: can't run to main
new UNRESOLVED: gdb.base/whatis-ptype-typedefs.exp: lang=c: can't run to main
new UNRESOLVED: gdb.base/with.exp: run control: cannot run to main
new UNRESOLVED: gdb.base/wrong_frame_bt_full.exp: could not run to opaque_routine
new UNRESOLVED: gdb.compile/compile-cplus-anonymous.exp: could not run to main
new UNRESOLVED: gdb.compile/compile-cplus-array-decay.exp: could not run to main
new UNRESOLVED: gdb.compile/compile-cplus-inherit.exp: could not run to main
new UNRESOLVED: gdb.compile/compile-cplus-member.exp: could not run to main
new UNRESOLVED: gdb.compile/compile-cplus-method.exp: could not run to main
new UNRESOLVED: gdb.compile/compile-cplus-namespace.exp: could not run to main
new UNRESOLVED: gdb.compile/compile-cplus-nested.exp: could not run to main
new UNRESOLVED: gdb.compile/compile-cplus-virtual.exp: could not run to main
new UNRESOLVED: gdb.compile/compile-tls.exp: can't run to main
new UNRESOLVED: gdb.cp/abstract-origin.exp: abstract-origin
new UNRESOLVED: gdb.cp/baseenum.exp: could not run to main
PASS -> FAIL: gdb.cp/bool.exp: print return_false
PASS -> UNRESOLVED: gdb.cp/bool.exp: print return_true
PASS -> UNRESOLVED: gdb.cp/call-c.exp: b 42
PASS -> FAIL: gdb.cp/call-c.exp: continue to bp
PASS -> FAIL: gdb.cp/call-c.exp: print foo
PASS -> FAIL: gdb.cp/call-c.exp: print handle->func
PASS -> FAIL: gdb.cp/call-c.exp: print rf->func
new UNRESOLVED: gdb.cp/cplabel.exp: could not run to main
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: set language c++
new UNRESOLVED: gdb.cp/destrprint.exp: destrprint
new UNRESOLVED: gdb.cp/ena-dis-br-range.exp: run to marker
new UNRESOLVED: gdb.cp/except-multi-location.exp: static_lib=0: static_bin=0: can't run to main
new UNRESOLVED: gdb.cp/except-multi-location.exp: static_lib=0: static_bin=1: can't run to main
new UNRESOLVED: gdb.cp/except-multi-location.exp: static_lib=1: static_bin=0: can't run to main
new UNRESOLVED: gdb.cp/except-multi-location.exp: static_lib=1: static_bin=1: can't run to main
PASS -> UNRESOLVED: gdb.cp/exception.exp: run to main
PASS -> FAIL: gdb.cp/extern-c.exp: continue to breakpoint: c_func
PASS -> FAIL: gdb.cp/extern-c.exp: continue to breakpoint: c_funcs_1
PASS -> FAIL: gdb.cp/extern-c.exp: continue to breakpoint: c_funcs_2
PASS -> UNRESOLVED: gdb.cp/extern-c.exp: setting breakpoint at c_func
PASS -> FAIL: gdb.cp/extern-c.exp: verify counter at first breakpoint
PASS -> FAIL: gdb.cp/extern-c.exp: verify counter at second breakpoint
PASS -> FAIL: gdb.cp/formatted-ref.exp: print s.x == 13
PASS -> FAIL: gdb.cp/formatted-ref.exp: print/x &e
PASS -> FAIL: gdb.cp/formatted-ref.exp: print/x &i
PASS -> FAIL: gdb.cp/formatted-ref.exp: print/x &s
PASS -> FAIL: gdb.cp/formatted-ref.exp: print/x *
PASS -> FAIL: gdb.cp/formatted-ref.exp: print/x e
PASS -> FAIL: gdb.cp/formatted-ref.exp: print/x i
PASS -> UNRESOLVED: gdb.cp/formatted-ref.exp: print/x s
FAIL -> UNRESOLVED: gdb.cp/infcall-nodebug.exp: l=c++: s=debug: can't run to main
FAIL -> UNRESOLVED: gdb.cp/infcall-nodebug.exp: l=c++: s=nodebug: can't run to main
FAIL -> UNRESOLVED: gdb.cp/infcall-nodebug.exp: l=c: s=debug: can't run to main
FAIL -> UNRESOLVED: gdb.cp/infcall-nodebug.exp: l=c: s=nodebug: can't run to main
new UNRESOLVED: gdb.cp/local-static.exp: c++: couldn't run to breakpoint
new UNRESOLVED: gdb.cp/local-static.exp: c: couldn't run to breakpoint
new UNRESOLVED: gdb.cp/mb-inline.exp: can't run to main for multi_line_foo tests.
PASS -> UNRESOLVED: gdb.cp/mb-inline.exp: disabling location: run to breakpoint
PASS -> UNRESOLVED: gdb.cp/mb-inline.exp: run to breakpoint
PASS -> FAIL: gdb.cp/mb-inline.exp: run to breakpoint 2
new UNRESOLVED: gdb.cp/mb-templates.exp: can't run to main for multi_line_foo tests.
new UNRESOLVED: gdb.cp/mb-templates.exp: disable breakpoint: run to breakpoint
new UNRESOLVED: gdb.cp/mb-templates.exp: disabling location: run to breakpoint
PASS -> UNRESOLVED: gdb.cp/mb-templates.exp: initial condition: run to breakpoint
new FAIL: gdb.cp/mb-templates.exp: initial condition: run to breakpoint 2
new UNRESOLVED: gdb.cp/mb-templates.exp: instantiation: run to breakpoint
new FAIL: gdb.cp/mb-templates.exp: instantiation: run to breakpoint 2
new UNRESOLVED: gdb.cp/mb-templates.exp: separate condition: run to breakpoint
new FAIL: gdb.cp/mb-templates.exp: separate condition: run to breakpoint 2
PASS -> UNRESOLVED: gdb.cp/misc.exp: deduced language is C++, after full symbols
PASS -> FAIL: gdb.cp/misc.exp: expression using block qualifier
PASS -> FAIL: gdb.cp/misc.exp: set a bool array elem
PASS -> FAIL: gdb.cp/misc.exp: set a bool var
PASS -> UNRESOLVED: gdb.cp/parse-lang.exp: breakpoint hit
new UNRESOLVED: gdb.cp/pass-by-ref-2.exp: failed to run to main
new UNRESOLVED: gdb.cp/pass-by-ref.exp: failed to run to main
new UNRESOLVED: gdb.cp/pr10687.exp: can't run to main
new UNRESOLVED: gdb.cp/pr9167.exp: can't run to main
PASS -> KFAIL: gdb.cp/re-set-overloaded.exp: breakpoint resolved
PASS -> UNRESOLVED: gdb.cp/re-set-overloaded.exp: start
PASS -> FAIL: gdb.cp/ref-params.exp: print f1
PASS -> FAIL: gdb.cp/ref-params.exp: print mf1
PASS -> FAIL: gdb.cp/ref-params.exp: print mf2
PASS -> UNRESOLVED: gdb.cp/ref-params.exp: print value of Child& in f2
PASS -> UNRESOLVED: gdb.cp/ref-params.exp: print value of Parent& in f1
PASS -> UNRESOLVED: gdb.cp/ref-params.exp: print value of a Child in main
PASS -> UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on
PASS -> FAIL: gdb.cp/ref-params.exp: print value of f1 on Child in main
PASS -> FAIL: gdb.cp/ref-params.exp: print value of f1 on Child& in f2
PASS -> UNRESOLVED: gdb.cp/ref-params.exp: print value of f2 on
PASS -> FAIL: gdb.cp/ref-params.exp: print value of f2 on Child in main
new UNRESOLVED: gdb.cp/rvalue-ref-casts.exp: couldn't run to main
new UNRESOLVED: gdb.cp/rvalue-ref-overload.exp: couldn't run to marker1
PASS -> UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print f1
PASS -> UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print mf1
PASS -> UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print mf2
PASS -> UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Child&& in f2
PASS -> UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Parent&& in f1
PASS -> UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f1 on
PASS -> FAIL: gdb.cp/rvalue-ref-params.exp: print value of f1 on Child&& in f2
PASS -> UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f2 on
new UNRESOLVED: gdb.cp/rvalue-ref-types.exp: couldn't run to breakpoint
new UNRESOLVED: gdb.cp/save-bp-qualified.exp: save: could not run to main
new UNRESOLVED: gdb.cp/scope-err.exp: can't run to main
new UNRESOLVED: gdb.cp/static-typedef-print.exp: could not run to main
PASS -> UNRESOLVED: gdb.cp/templates.exp: b 770
PASS -> FAIL: gdb.cp/templates.exp: continue to line 770
PASS -> FAIL: gdb.cp/templates.exp: print fint
PASS -> FAIL: gdb.cp/templates.exp: print fvpchar
PASS -> UNRESOLVED: gdb.cp/templates.exp: ptype T5<int>
PASS -> FAIL: gdb.cp/templates.exp: ptype bazint
PASS -> FAIL: gdb.cp/templates.exp: ptype bazint2
PASS -> FAIL: gdb.cp/templates.exp: ptype bint
PASS -> FAIL: gdb.cp/templates.exp: ptype bint2
PASS -> FAIL: gdb.cp/templates.exp: ptype fchar
PASS -> FAIL: gdb.cp/templates.exp: ptype fint
KFAIL -> FAIL: gdb.cp/templates.exp: ptype fvpchar
PASS -> FAIL: gdb.cp/templates.exp: ptype quxint
PASS -> FAIL: gdb.cp/templates.exp: ptype siip
new UNRESOLVED: gdb.cp/typedef-base.exp: could not run to main
new UNRESOLVED: gdb.cp/typeid.exp: typeid
PASS -> UNRESOLVED: gdb.cp/using-crash.exp: reload file
new UNRESOLVED: gdb.cp/wide_char_types.exp: with program: lang=c++03: can't run to main
new UNRESOLVED: gdb.cp/wide_char_types.exp: with program: lang=c++11: can't run to main
new UNRESOLVED: gdb.cp/wide_char_types.exp: with program: lang=c: can't run to main
PASS -> UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: p testvar
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: continue to func01
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: create varobj for ptr
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: get children of var1
PASS -> UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: mi: run to main
PASS -> UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: mi: set print object on
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access array member
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access integer member
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access pointer member
PASS -> UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: hi-cold: get integer valueof "sizeof
PASS -> UNRESOLVED: gdb.dwarf2/dw2-ranges.exp: info line main
PASS -> UNRESOLVED: gdb.dwarf2/dw2-regno-invalid.exp: p bregx
PASS -> UNRESOLVED: gdb.dwarf2/dwzbuildid.exp: fallback: set debug-file-directory
PASS -> UNRESOLVED: gdb.dwarf2/dwzbuildid.exp: mismatch: set debug-file-directory
PASS -> FAIL: gdb.linespec/break-ask.exp: continue to breakpoint: body_elsewhere
PASS -> FAIL: gdb.linespec/break-ask.exp: continue to breakpoint: body_elsewhere other
PASS -> UNRESOLVED: gdb.linespec/break-ask.exp: expect breakpoint
PASS -> UNRESOLVED: gdb.linespec/break-ask.exp: expect breakpoint other
PASS -> FAIL: gdb.linespec/break-ask.exp: info source
PASS -> FAIL: gdb.linespec/break-ask.exp: info source other
new UNRESOLVED: gdb.linespec/keywords.exp: can't run to main
new UNRESOLVED: gdb.linespec/ls-errs.exp: lang=C++: can't run to main
new UNRESOLVED: gdb.linespec/ls-errs.exp: lang=C: can't run to main
new UNRESOLVED: gdb.linespec/thread.exp: can't run to main
PASS -> UNRESOLVED: gdb.mi/dw2-ref-missing-frame.exp: test func_loopfb_var
PASS -> UNRESOLVED: gdb.mi/dw2-ref-missing-frame.exp: test func_nofb_marker
PASS -> FAIL: gdb.mi/gdb2549.exp: register values d
PASS -> FAIL: gdb.mi/gdb2549.exp: register values f
PASS -> FAIL: gdb.mi/gdb2549.exp: register values o
PASS -> FAIL: gdb.mi/gdb2549.exp: register values t
PASS -> UNRESOLVED: gdb.mi/gdb2549.exp: register values x
PASS -> FAIL: gdb.mi/gdb669.exp: -thread-list-ids
PASS -> FAIL: gdb.mi/gdb669.exp: -thread_list_ids
PASS -> FAIL: gdb.mi/gdb669.exp: next, try 0
PASS -> FAIL: gdb.mi/gdb669.exp: next, try 1
PASS -> FAIL: gdb.mi/gdb669.exp: next, try 2
PASS -> FAIL: gdb.mi/gdb669.exp: next, try 3
PASS -> FAIL: gdb.mi/gdb701.exp: create fooPtr
PASS -> FAIL: gdb.mi/gdb701.exp: list children of fooPtr
PASS -> FAIL: gdb.mi/gdb701.exp: list children of fooPtr.x
PASS -> FAIL: gdb.mi/gdb701.exp: list children of fooPtr.y
PASS -> FAIL: gdb.mi/gdb701.exp: list children of fooPtr.z
PASS -> FAIL: gdb.mi/gdb701.exp: step over "foo = 0"
PASS -> UNRESOLVED: gdb.mi/gdb792.exp: create var for class A
PASS -> FAIL: gdb.mi/gdb792.exp: create var for class C which has baseclass A
PASS -> FAIL: gdb.mi/gdb792.exp: list children of A.private
PASS -> FAIL: gdb.mi/gdb792.exp: list children of A.protected
PASS -> FAIL: gdb.mi/gdb792.exp: list children of A.protected.b
PASS -> FAIL: gdb.mi/gdb792.exp: list children of A.protected.b.private
PASS -> FAIL: gdb.mi/gdb792.exp: list children of A.protected.b.public
PASS -> FAIL: gdb.mi/gdb792.exp: list children of A.public
PASS -> FAIL: gdb.mi/gdb792.exp: list children of class A
PASS -> FAIL: gdb.mi/gdb792.exp: list children of class C
PASS -> FAIL: gdb.mi/mi-async-run.exp: expect interrupt
PASS -> UNRESOLVED: gdb.mi/mi-async-run.exp: send interrupt command
new FAIL: gdb.mi/mi-break.exp: mi-mode=main: breakpoint commands: continue
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: breakpoint commands: insert breakpoint at basics.c:callee2, again
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=main: create varobj for function call
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=main: intermediate stop and continue, bp commands
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=main: intermediate stop and continue, mi running
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: run to breakpoint with ignore count
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=main: test hitting breakpoint with commands
new FAIL: gdb.mi/mi-break.exp: mi-mode=separate: breakpoint commands: continue
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=separate: breakpoint commands: insert breakpoint at basics.c:callee2, again
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=separate: create varobj for function call
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=separate: intermediate stop and continue, bp commands
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=separate: intermediate stop and continue, mi running
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=separate: run to breakpoint with ignore count
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=separate: test hitting breakpoint with commands
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-changed.exp: test_insert_delete_modify: change command
PASS -> FAIL: gdb.mi/mi-breakpoint-changed.exp: test_pending_resolved: pending resolved:
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-changed.exp: test_pending_resolved: pending resolved: breakpoint on pendfunc1 resolved
PASS -> FAIL: gdb.mi/mi-breakpoint-changed.exp: test_pending_resolved: pending resolved: breakpoint on pendfunc3 pending again
PASS -> FAIL: gdb.mi/mi-breakpoint-changed.exp: test_pending_resolved: pending resolved: breakpoint on pendfunc3 resolved
PASS -> FAIL: gdb.mi/mi-breakpoint-changed.exp: test_pending_resolved: pending resolved: continue to marker 1
PASS -> FAIL: gdb.mi/mi-breakpoint-changed.exp: test_pending_resolved: pending resolved: continue to marker 2
PASS -> FAIL: gdb.mi/mi-breakpoint-changed.exp: test_pending_resolved: pending resolved: continue to pendfunc1 breakpoint
new FAIL: gdb.mi/mi-breakpoint-changed.exp: test_pending_resolved: pending resolved: continuing execution to marker
new FAIL: gdb.mi/mi-breakpoint-changed.exp: test_pending_resolved: pending resolved: continuing to exit
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=0: -break-info
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=0: break add
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=1: -break-info
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=1: send -fix-multi-location-breakpoint-output
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=0: -break-info
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=0: break add
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=1: -break-info
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=1: send -fix-multi-location-breakpoint-output
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=0: -break-info
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=0: break add
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=1: -break-info
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=1: send -fix-multi-location-breakpoint-output
PASS -> UNRESOLVED: gdb.mi/mi-catch-cpp-exceptions.exp: -catch-catch: break before exiting program
PASS -> FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: -catch-catch: check previous frame: catch 1
PASS -> FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: -catch-catch: check previous frame: catch 2
PASS -> FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: -catch-catch: check previous frame: catch 3
PASS -> FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: -catch-catch: check previous frame: catch 4
PASS -> FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: -catch-catch: check previous frame: catch 5
PASS -> FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: -catch-catch: check previous frame: catch 6
new FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: -catch-catch: exec-continue
new FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: -catch-catch: exec-continue to main
PASS -> FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: -catch-catch: run until an exception is caught: catch 1
PASS -> FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: -catch-catch: run until an exception is caught: catch 2
PASS -> FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: -catch-catch: run until an exception is caught: catch 3
PASS -> FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: -catch-catch: run until an exception is caught: catch 4
PASS -> FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: -catch-catch: run until an exception is caught: catch 5
PASS -> FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: -catch-catch: run until an exception is caught: catch 6
PASS -> FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: -catch-catch: run until breakpoint in main
PASS -> UNRESOLVED: gdb.mi/mi-catch-cpp-exceptions.exp: -catch-rethrow: break before exiting program
PASS -> FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: -catch-rethrow: check previous frame: rethrow 1
PASS -> FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: -catch-rethrow: check previous frame: rethrow 2
new FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: -catch-rethrow: exec-continue
new FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: -catch-rethrow: exec-continue to main
PASS -> FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: -catch-rethrow: run until an exception is caught: rethrow 1
PASS -> FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: -catch-rethrow: run until an exception is caught: rethrow 2
PASS -> FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: -catch-rethrow: run until breakpoint in main
PASS -> UNRESOLVED: gdb.mi/mi-catch-cpp-exceptions.exp: -catch-throw: break before exiting program
PASS -> UNRESOLVED: gdb.mi/mi-catch-cpp-exceptions.exp: -catch-throw: breakpoint at main
PASS -> FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: -catch-throw: check previous frame: throw 1
PASS -> FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: -catch-throw: check previous frame: throw 2
PASS -> FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: -catch-throw: check previous frame: throw 3
PASS -> FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: -catch-throw: check previous frame: throw 4
new FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: -catch-throw: exec-continue
new FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: -catch-throw: exec-continue to main
PASS -> FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: -catch-throw: run until an exception is caught: throw 1
PASS -> FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: -catch-throw: run until an exception is caught: throw 2
PASS -> FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: -catch-throw: run until an exception is caught: throw 3
PASS -> FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: -catch-throw: run until an exception is caught: throw 4
PASS -> FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: -catch-throw: run until breakpoint in main
PASS -> UNRESOLVED: gdb.mi/mi-catch-cpp-exceptions.exp: all with -t: break before exiting program
PASS -> FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: all with -t: check previous frame: catch 1
PASS -> FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: all with -t: check previous frame: rethrow 1
PASS -> FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: all with -t: check previous frame: throw 1
new FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: all with -t: exec-continue
new FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: all with -t: exec-continue to main
PASS -> FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: all with -t: run until an exception is caught: catch 1
PASS -> FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: all with -t: run until an exception is caught: rethrow 1
PASS -> FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: all with -t: run until an exception is caught: throw 1
PASS -> FAIL: gdb.mi/mi-catch-cpp-exceptions.exp: all with -t: run until breakpoint in main
new FAIL: gdb.mi/mi-catch-load.exp:
PASS -> UNRESOLVED: gdb.mi/mi-catch-load.exp: catch-load: auto-solib-add on
new FAIL: gdb.mi/mi-catch-load.exp: catch-load: continue
PASS -> UNRESOLVED: gdb.mi/mi-catch-load.exp: catch-unload: auto-solib-add on
new FAIL: gdb.mi/mi-catch-load.exp: catch-unload: continue
PASS -> FAIL: gdb.mi/mi-cli.exp: -exec-continue to line $line_main_callme_2
new FAIL: gdb.mi/mi-cli.exp: -exec-continue to line $line_main_hello
new FAIL: gdb.mi/mi-cli.exp: -exec-step to line $line_callee4_next_step
PASS -> FAIL: gdb.mi/mi-cli.exp: -interpreter-exec console "down"
PASS -> FAIL: gdb.mi/mi-cli.exp: -interpreter-exec console "frame 2"
PASS -> FAIL: gdb.mi/mi-cli.exp: -interpreter-exec console "list" at basics.c:$line_main_callme_2
PASS -> FAIL: gdb.mi/mi-cli.exp: -interpreter-exec console "list" at basics.c:$line_main_return
PASS -> FAIL: gdb.mi/mi-cli.exp: -interpreter-exec console "set $pc=0x0"
PASS -> UNRESOLVED: gdb.mi/mi-cli.exp: -interpreter-exec console "set args foobar"
PASS -> FAIL: gdb.mi/mi-cli.exp: -interpreter-exec console "up"
PASS -> FAIL: gdb.mi/mi-cli.exp: -stack-select-frame 0
PASS -> FAIL: gdb.mi/mi-cli.exp: 34 next: CLI output
PASS -> FAIL: gdb.mi/mi-cli.exp: 34 next: run
PASS -> FAIL: gdb.mi/mi-cli.exp: 34 next: stop
PASS -> FAIL: gdb.mi/mi-cli.exp: CLI finish: check CLI output
PASS -> FAIL: gdb.mi/mi-cli.exp: CLI finish: check MI output
new FAIL: gdb.mi/mi-cli.exp: CLI finish: collect CLI output
new FAIL: gdb.mi/mi-cli.exp: CLI finish: send CLI command
PASS -> FAIL: gdb.mi/mi-cli.exp: breakpoint hit produces CLI output
PASS -> FAIL: gdb.mi/mi-cli.exp: check *stopped from CLI command
PASS -> FAIL: gdb.mi/mi-cli.exp: check *stopped from CLI command 2
new FAIL: gdb.mi/mi-cli.exp: collect CLI output for -exec-step
new FAIL: gdb.mi/mi-cli.exp: collect CLI output for breakpoint hit
PASS -> FAIL: gdb.mi/mi-cli.exp: continue to callee4
PASS -> FAIL: gdb.mi/mi-cli.exp: temporary breakpoint output hit in MI
PASS -> UNRESOLVED: gdb.mi/mi-complete.exp: -complete br
PASS -> UNRESOLVED: gdb.mi/mi-condbreak-call-thr-state.exp: mt: insert conditional breakpoint
PASS -> FAIL: gdb.mi/mi-condbreak-call-thr-state.exp: mt: no spurious *running notifications
PASS -> UNRESOLVED: gdb.mi/mi-condbreak-call-thr-state.exp: st: insert conditional breakpoint
PASS -> FAIL: gdb.mi/mi-condbreak-call-thr-state.exp: st: no spurious *running notifications
PASS -> UNRESOLVED: gdb.mi/mi-console.exp: Testing console output
PASS -> FAIL: gdb.mi/mi-console.exp: finished step over hello
PASS -> UNRESOLVED: gdb.mi/mi-detach.exp: detach
PASS -> UNRESOLVED: gdb.mi/mi-disassemble.exp: data-disassemble from pc to pc+12 assembly only
PASS -> FAIL: gdb.mi/mi-disassemble.exp: data-disassemble from pc to pc+12 assembly with opcodes
PASS -> FAIL: gdb.mi/mi-disassemble.exp: data-disassemble function around pc assembly only
PASS -> FAIL: gdb.mi/mi-disassemble.exp: data-disassemble mix different args
PASS -> FAIL: gdb.mi/mi-disassemble.exp: data-disassemble range assembly mixed
PASS -> FAIL: gdb.mi/mi-disassemble.exp: data-disassemble range assembly mixed with opcodes
PASS -> UNRESOLVED: gdb.mi/mi-dprintf-pending.exp: mi dprintf
PASS -> FAIL: gdb.mi/mi-dprintf-pending.exp: mi dprintf stop
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: call: mi 1st dprintf
PASS -> FAIL: gdb.mi/mi-dprintf.exp: call: mi 1st dprintf stop
PASS -> FAIL: gdb.mi/mi-dprintf.exp: call: mi 2nd dprintf
new FAIL: gdb.mi/mi-dprintf.exp: call: mi 2nd dprintf continue
PASS -> FAIL: gdb.mi/mi-dprintf.exp: call: mi 2nd dprintf stop
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: fprintf: mi 1st dprintf
PASS -> FAIL: gdb.mi/mi-dprintf.exp: fprintf: mi 1st dprintf stop
PASS -> FAIL: gdb.mi/mi-dprintf.exp: fprintf: mi 2nd dprintf
new FAIL: gdb.mi/mi-dprintf.exp: fprintf: mi 2nd dprintf continue
PASS -> FAIL: gdb.mi/mi-dprintf.exp: fprintf: mi 2nd dprintf stop
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: gdb: mi 1st dprintf
PASS -> FAIL: gdb.mi/mi-dprintf.exp: gdb: mi 1st dprintf stop
PASS -> FAIL: gdb.mi/mi-dprintf.exp: gdb: mi 2nd dprintf
new FAIL: gdb.mi/mi-dprintf.exp: gdb: mi 2nd dprintf continue
PASS -> FAIL: gdb.mi/mi-dprintf.exp: gdb: mi 2nd dprintf stop
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: mi insert without location
PASS -> FAIL: gdb.mi/mi-eval.exp: eval &A
PASS -> FAIL: gdb.mi/mi-eval.exp: eval A
PASS -> FAIL: gdb.mi/mi-eval.exp: eval A + 3
PASS -> FAIL: gdb.mi/mi-eval.exp: eval A+3
PASS -> FAIL: gdb.mi/mi-eval.exp: next at callee4
PASS -> FAIL: gdb.mi/mi-exit-code.exp: first run: -list-thread-groups after exit shows exit-code
PASS -> UNRESOLVED: gdb.mi/mi-exit-code.exp: first run: -list-thread-groups during run shows no exit-code
new FAIL: gdb.mi/mi-exit-code.exp: first run: continuing to inferior exit
PASS -> FAIL: gdb.mi/mi-exit-code.exp: first run: exit normally
PASS -> FAIL: gdb.mi/mi-exit-code.exp: second run: -list-thread-groups after exit shows exit-code
PASS -> FAIL: gdb.mi/mi-exit-code.exp: second run: -list-thread-groups during run shows no exit-code
new FAIL: gdb.mi/mi-exit-code.exp: second run: continuing to inferior exit
PASS -> FAIL: gdb.mi/mi-exit-code.exp: second run: exit with code
PASS -> UNRESOLVED: gdb.mi/mi-exit-code.exp: second run: write exit code
PASS -> FAIL: gdb.mi/mi-fill-memory.exp: memory successfully filled
PASS -> FAIL: gdb.mi/mi-fill-memory.exp: memory successfully written
PASS -> FAIL: gdb.mi/mi-fill-memory.exp: next at main
PASS -> FAIL: gdb.mi/mi-fill-memory.exp: pattern correctly read from memory
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: breakpoint hit in callee3
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: create varobj for $pc in frame 0
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: create varobj for $pc in frame 1
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: create varobj for $pc in frame 2
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: create varobj for $pc in frame 3
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: create varobj for 'global_zero + $pc' in frame 0
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: create varobj for 'global_zero + $pc' in frame 1
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: create varobj for 'global_zero + $pc' in frame 2
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: create varobj for 'global_zero + $pc' in frame 3
PASS -> UNRESOLVED: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: insert breakpoint at basics.c:callee3
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: next instruction in callee3
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: varobj var1 has changed
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: varobj var2 has changed
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: varobj var3 has not changed
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: varobj var4 has not changed
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: varobj var5 has not changed
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: varobj var6 has not changed
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: varobj var7 has not changed
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: varobj var8 has not changed
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_floating_varobj_test: -var-update for frame 1
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_floating_varobj_test: breakpoint hit in callee1
PASS -> UNRESOLVED: gdb.mi/mi-frame-regs.exp: do_floating_varobj_test: create varobj for pc in frame 0
new FAIL: gdb.mi/mi-inheritance-syntax-error.exp: -data-evaluate-expression kill\n
PASS -> FAIL: gdb.mi/mi-inheritance-syntax-error.exp: -var-info-path-expression var1.A
PASS -> UNRESOLVED: gdb.mi/mi-inheritance-syntax-error.exp: create var for THIS
PASS -> FAIL: gdb.mi/mi-inheritance-syntax-error.exp: list children of THIS
PASS -> FAIL: gdb.mi/mi-linespec-err-cp.exp: breakpoint hit
PASS -> UNRESOLVED: gdb.mi/mi-linespec-err-cp.exp: set breakpoint
PASS -> FAIL: gdb.mi/mi-memory-changed.exp: change C thru. -data-write-memory-bytes
PASS -> FAIL: gdb.mi/mi-memory-changed.exp: change C thru. varobj
PASS -> UNRESOLVED: gdb.mi/mi-memory-changed.exp: continue to callee4
PASS -> FAIL: gdb.mi/mi-memory-changed.exp: create objvar for C
PASS -> FAIL: gdb.mi/mi-memory-changed.exp: set var C = 4
PASS -> UNRESOLVED: gdb.mi/mi-pending.exp: Run till MI pending breakpoint on pendfunc1
PASS -> FAIL: gdb.mi/mi-pending.exp: Run till MI pending breakpoint on pendfunc1 a second time
PASS -> FAIL: gdb.mi/mi-pending.exp: Run till MI pending breakpoint on pendfunc2 with x==4
PASS -> FAIL: gdb.mi/mi-pending.exp: Run till MI pending breakpoint on thread_func
new FAIL: gdb.mi/mi-pending.exp: continuing execution to conditional bp
new FAIL: gdb.mi/mi-pending.exp: continuing execution to skip conditional bp
new FAIL: gdb.mi/mi-pending.exp: continuing execution to thread condition
new FAIL: gdb.mi/mi-pending.exp: continuing execution to thread creation
PASS -> FAIL: gdb.mi/mi-pending.exp: run till MI pending breakpoint on pendfunc3 on thread 2
PASS -> UNRESOLVED: gdb.mi/mi-pthreads.exp: -thread_list_ids
PASS -> FAIL: gdb.mi/mi-read-memory.exp: 3x2, one byte
PASS -> FAIL: gdb.mi/mi-read-memory.exp: 3x2, one byte offset by -6
PASS -> FAIL: gdb.mi/mi-read-memory.exp: ascii and data
PASS -> FAIL: gdb.mi/mi-read-memory.exp: decimal
PASS -> FAIL: gdb.mi/mi-read-memory.exp: expression in quotes
PASS -> FAIL: gdb.mi/mi-read-memory.exp: next at main
PASS -> FAIL: gdb.mi/mi-read-memory.exp: octal
PASS -> UNRESOLVED: gdb.mi/mi-record-changed.exp: record
PASS -> FAIL: gdb.mi/mi-record-changed.exp: record end
PASS -> FAIL: gdb.mi/mi-record-changed.exp: target record
PASS -> UNRESOLVED: gdb.mi/mi-return.exp: delete all breakpoints
PASS -> FAIL: gdb.mi/mi-return.exp: return from callee4 now
PASS -> UNRESOLVED: gdb.mi/mi-reverse.exp: Turn on process record
PASS -> FAIL: gdb.mi/mi-simplerun.exp: continue to end
PASS -> FAIL: gdb.mi/mi-simplerun.exp: exec-finish
PASS -> FAIL: gdb.mi/mi-simplerun.exp: next at main
PASS -> UNRESOLVED: gdb.mi/mi-simplerun.exp: run to main
PASS -> FAIL: gdb.mi/mi-simplerun.exp: step at main
PASS -> FAIL: gdb.mi/mi-simplerun.exp: step to callee4
PASS -> FAIL: gdb.mi/mi-solib.exp: test_file_list_shared_libraries: get the list of shared libraries
PASS -> FAIL: gdb.mi/mi-solib.exp: test_file_list_shared_libraries: mi runto main
PASS -> UNRESOLVED: gdb.mi/mi-solib.exp: test_stop_on_solib_events: CLI prints solib event
PASS -> FAIL: gdb.mi/mi-solib.exp: test_stop_on_solib_events: check for solib event
PASS -> FAIL: gdb.mi/mi-stack.exp: next's in callee4
PASS -> UNRESOLVED: gdb.mi/mi-stack.exp: run to 27
PASS -> FAIL: gdb.mi/mi-stack.exp: selected frame listing
PASS -> FAIL: gdb.mi/mi-stack.exp: stack args listing 0
PASS -> FAIL: gdb.mi/mi-stack.exp: stack args listing 0 1 1
PASS -> FAIL: gdb.mi/mi-stack.exp: stack args listing 0 1 3
PASS -> FAIL: gdb.mi/mi-stack.exp: stack args listing 1
PASS -> FAIL: gdb.mi/mi-stack.exp: stack args listing 1 1 1
PASS -> FAIL: gdb.mi/mi-stack.exp: stack args listing 1 1 3
PASS -> FAIL: gdb.mi/mi-stack.exp: stack args listing 1 1 300
PASS -> FAIL: gdb.mi/mi-stack.exp: stack frame listing
PASS -> FAIL: gdb.mi/mi-stack.exp: stack frame listing 1 1
PASS -> FAIL: gdb.mi/mi-stack.exp: stack frame listing 1 3
PASS -> FAIL: gdb.mi/mi-stack.exp: stack frame listing 1 300
PASS -> FAIL: gdb.mi/mi-stack.exp: stack info-depth
PASS -> FAIL: gdb.mi/mi-stack.exp: stack info-depth 3
PASS -> FAIL: gdb.mi/mi-stack.exp: stack info-depth 99
PASS -> FAIL: gdb.mi/mi-stack.exp: stack locals for same frame
PASS -> FAIL: gdb.mi/mi-stack.exp: stack locals listing for new frame
PASS -> FAIL: gdb.mi/mi-stack.exp: stack locals listing of names
PASS -> FAIL: gdb.mi/mi-stack.exp: stack locals listing of names and values
PASS -> FAIL: gdb.mi/mi-stack.exp: stack locals listing, simple types: names and values, complex type: names and types
PASS -> FAIL: gdb.mi/mi-stack.exp: stack select frame 1
new FAIL: gdb.mi/mi-stack.exp: wait for stop
PASS -> FAIL: gdb.mi/mi-stepi.exp: next-instruction at main
PASS -> FAIL: gdb.mi/mi-stepi.exp: next-instruction at main 2
PASS -> FAIL: gdb.mi/mi-stepi.exp: step-instruction at main
PASS -> UNRESOLVED: gdb.mi/mi-sym-info.exp: List all functions from debug information only
PASS -> FAIL: gdb.mi/mi-syn-frame.exp: backtrace from inferior function at exception
PASS -> FAIL: gdb.mi/mi-syn-frame.exp: backtrace from inferior function stopped at bp, showing gdb dummy frame
PASS -> FAIL: gdb.mi/mi-syn-frame.exp: call inferior function which raises exception
PASS -> FAIL: gdb.mi/mi-syn-frame.exp: call inferior's function with a breakpoint set in it
PASS -> FAIL: gdb.mi/mi-syn-frame.exp: data evaluate expression
PASS -> FAIL: gdb.mi/mi-syn-frame.exp: finished exec continue
PASS -> UNRESOLVED: gdb.mi/mi-syn-frame.exp: insert breakpoint foo
PASS -> FAIL: gdb.mi/mi-syn-frame.exp: list stack frames
new FAIL: gdb.mi/mi-syn-frame.exp: testing exec continue
PASS -> UNRESOLVED: gdb.mi/mi-threads-interrupt.exp: check thread states
new FAIL: gdb.mi/mi-threads-interrupt.exp: continue
PASS -> FAIL: gdb.mi/mi-threads-interrupt.exp: interrupt reported
PASS -> UNRESOLVED: gdb.mi/mi-until.exp: run to main
PASS -> FAIL: gdb.mi/mi-until.exp: until after current function
KFAIL -> FAIL: gdb.mi/mi-until.exp: until after while loop
PASS -> FAIL: gdb.mi/mi-until.exp: until line number
PASS -> FAIL: gdb.mi/mi-until.exp: until line number:file
PASS -> UNRESOLVED: gdb.mi/mi-var-block.exp: create local variable cb
PASS -> FAIL: gdb.mi/mi-var-block.exp: create local variable foo
PASS -> FAIL: gdb.mi/mi-var-block.exp: create local variable foo2
PASS -> FAIL: gdb.mi/mi-var-block.exp: create local variable inner_foo
PASS -> FAIL: gdb.mi/mi-var-block.exp: delete var cb
PASS -> FAIL: gdb.mi/mi-var-block.exp: delete var foo 2
PASS -> FAIL: gdb.mi/mi-var-block.exp: delete var foo2
PASS -> FAIL: gdb.mi/mi-var-block.exp: delete var inner_foo
PASS -> FAIL: gdb.mi/mi-var-block.exp: step at do_block_test 1
PASS -> FAIL: gdb.mi/mi-var-block.exp: step at do_block_test 2
PASS -> FAIL: gdb.mi/mi-var-block.exp: step at do_block_test 3
PASS -> FAIL: gdb.mi/mi-var-block.exp: step at do_block_test 4
PASS -> FAIL: gdb.mi/mi-var-block.exp: step at do_block_test 5
PASS -> FAIL: gdb.mi/mi-var-block.exp: step at do_block_test 6
PASS -> FAIL: gdb.mi/mi-var-block.exp: update all vars: cb foo changed
PASS -> FAIL: gdb.mi/mi-var-block.exp: update cb
PASS -> FAIL: gdb.mi/mi-var-block.exp: update foo: did not change
new FAIL: gdb.mi/mi-var-child.exp: child_deletion: go to line 339
new FAIL: gdb.mi/mi-var-child.exp: child_deletion: step over 339
PASS -> FAIL: gdb.mi/mi-var-child.exp: create local variable  psnp->char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: create local variable  psnp->long_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: create local variable  psnp->ptrs
PASS -> FAIL: gdb.mi/mi-var-child.exp: create local variable struct_declarations
PASS -> FAIL: gdb.mi/mi-var-child.exp: create local variable weird
PASS -> FAIL: gdb.mi/mi-var-child.exp: create local variable weird->int_ptr_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: delete var struct_declarations
PASS -> FAIL: gdb.mi/mi-var-child.exp: delete var weird
PASS -> FAIL: gdb.mi/mi-var-child.exp: delete var weird->int_ptr_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of psnp->char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of psnp->char_ptr.*psnp->char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr.***psnp->char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr.***psnp->char_ptr.****psnp->char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of psnp->long_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of psnp->long_ptr.*psnp->long_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr.***psnp->long_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr.***psnp->long_ptr.****psnp->long_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of psnp->ptrs
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of psnp->ptrs.0
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of psnp->ptrs.0.next
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of psnp->ptrs.0.next.char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of psnp->ptrs.0.next.char_ptr.*char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of psnp->ptrs.0.next.char_ptr.*char_ptr.**char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of psnp->ptrs.0.next.char_ptr.*char_ptr.**char_ptr.***char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of psnp->ptrs.0.next.next
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of psnp->ptrs.0.next.next.ptrs
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.character
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.func_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.func_ptr_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.func_ptr_struct
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.int_ptr_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.int_ptr_ptr.*int_ptr_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.integer
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array.1
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array.2
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array.3
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array.4
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array.5
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array.6
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array.7
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array.8
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array.9
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_int
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.g
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.h
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.i
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2.f
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2.u1s1
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2.u1s1.d
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2.u1s1.e
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2.u1s1.foo
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2.u1s1.func
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2.u1s2
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2.u1s2.array_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2.u1s2.func
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.u1
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.u1.a
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.u1.b
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.u1.c
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.u1.d
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of weird
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of weird->int_ptr_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of weird->int_ptr_ptr.*weird->int_ptr_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of weird->int_ptr_ptr.*weird->int_ptr_ptr.**weird->int_ptr_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of weird.int_ptr_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of weird.int_ptr_ptr.*int_ptr_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of weird.long_array
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->char_ptr.*psnp->char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr.***psnp->char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr.***psnp->char_ptr.****psnp->char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->long_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->long_ptr.*psnp->long_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr.***psnp->long_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr.***psnp->long_ptr.****psnp->long_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->ptrs
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->ptrs.0
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->ptrs.0.next
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->ptrs.0.next.char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->ptrs.0.next.char_ptr.*char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->ptrs.0.next.char_ptr.*char_ptr.**char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->ptrs.0.next.char_ptr.*char_ptr.**char_ptr.***char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.character
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.func_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.func_ptr_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.func_ptr_struct
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.int_ptr_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.int_ptr_ptr.*int_ptr_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.integer
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array.1
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array.2
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array.3
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array.4
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array.5
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array.6
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array.7
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array.8
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array.9
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_int
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.g
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.h
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.i
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2.f
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1.d
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1.e
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1.foo
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1.func
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2.u1s2
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2.u1s2.array_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2.u1s2.func
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.u1
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.u1.a
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.u1.b
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.u1.c
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.u1.d
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of weird
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of weird->int_ptr_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of weird->int_ptr_ptr.*weird->int_ptr_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of weird->int_ptr_ptr.*weird->int_ptr_ptr.**weird->int_ptr_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of weird.int_ptr_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of weird.int_ptr_ptr.*int_ptr_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of weird.long_array
PASS -> FAIL: gdb.mi/mi-var-child.exp: is struct_declarations editable
PASS -> FAIL: gdb.mi/mi-var-child.exp: is struct_declarations.long_array editable
PASS -> FAIL: gdb.mi/mi-var-child.exp: is struct_declarations.long_array.0 editable
PASS -> FAIL: gdb.mi/mi-var-child.exp: is struct_declarations.u1.a editable
PASS -> FAIL: gdb.mi/mi-var-child.exp: is struct_declarations.u1.b editable
PASS -> FAIL: gdb.mi/mi-var-child.exp: is struct_declarations.u1.c editable
PASS -> FAIL: gdb.mi/mi-var-child.exp: is weird editable
PASS -> FAIL: gdb.mi/mi-var-child.exp: is weird->int_ptr_ptr editable
PASS -> FAIL: gdb.mi/mi-var-child.exp: is weird.int_ptr_ptr.*int_ptr_ptr editable
PASS -> FAIL: gdb.mi/mi-var-child.exp: is weird.int_ptr_ptr.*int_ptr_ptr.**int_ptr_ptr editable
PASS -> FAIL: gdb.mi/mi-var-child.exp: is weird.s2 editable
PASS -> FAIL: gdb.mi/mi-var-child.exp: is weird.u1 editable
PASS -> FAIL: gdb.mi/mi-var-child.exp: listing of children, simple types: names, type and values, complex types: names and types
PASS -> FAIL: gdb.mi/mi-var-child.exp: listing of names and values of children
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: run to 229
PASS -> FAIL: gdb.mi/mi-var-child.exp: step $line_dct_123 + 1
PASS -> FAIL: gdb.mi/mi-var-child.exp: step $line_dct_123 + 4
PASS -> FAIL: gdb.mi/mi-var-child.exp: step $line_dct_123 + 5
PASS -> FAIL: gdb.mi/mi-var-child.exp: step $line_dct_123 + 6
PASS -> FAIL: gdb.mi/mi-var-child.exp: step $line_dct_123 + 7
PASS -> FAIL: gdb.mi/mi-var-child.exp: step $line_dct_123 + 8
PASS -> FAIL: gdb.mi/mi-var-child.exp: step $line_dct_a0_0
PASS -> FAIL: gdb.mi/mi-var-child.exp: step $line_dct_nothing
PASS -> FAIL: gdb.mi/mi-var-child.exp: step $line_dct_nothing + 1
PASS -> FAIL: gdb.mi/mi-var-child.exp: step $line_dct_nothing + 2
PASS -> FAIL: gdb.mi/mi-var-child.exp: step $line_dct_nothing + 3
PASS -> FAIL: gdb.mi/mi-var-child.exp: step $line_dct_nothing + 4
PASS -> FAIL: gdb.mi/mi-var-child.exp: step $line_dct_snp0 + 1
PASS -> FAIL: gdb.mi/mi-var-child.exp: step $line_dct_snp0 + 2
PASS -> FAIL: gdb.mi/mi-var-child.exp: step $line_dct_snp0 + 3
PASS -> FAIL: gdb.mi/mi-var-child.exp: step $line_dct_snp0 + 4
PASS -> FAIL: gdb.mi/mi-var-child.exp: step $line_dct_snp0 + 5
PASS -> FAIL: gdb.mi/mi-var-child.exp: step $line_dct_snp0 + 6
PASS -> FAIL: gdb.mi/mi-var-child.exp: step $line_dct_snp0 + 7
PASS -> FAIL: gdb.mi/mi-var-child.exp: step to line $line_dct_123
PASS -> FAIL: gdb.mi/mi-var-child.exp: update all vars int_ptr_ptr and children changed
PASS -> FAIL: gdb.mi/mi-var-child.exp: update all vars psnp->char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: update all vars psnp->long_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: update all vars psnp->next->char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: update all vars psnp->next->next->char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: update all vars psnp->next->next->long_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: update all vars struct_declarations.char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: update all vars struct_declarations.func_ptr changed
PASS -> FAIL: gdb.mi/mi-var-child.exp: update all vars struct_declarations.func_ptr_ptr changed
PASS -> FAIL: gdb.mi/mi-var-child.exp: update all vars struct_declarations.func_ptr_struct changed
PASS -> FAIL: gdb.mi/mi-var-child.exp: update all vars struct_declarations.integer
PASS -> FAIL: gdb.mi/mi-var-child.exp: update all vars struct_declarations.long_array.0 changed
PASS -> FAIL: gdb.mi/mi-var-child.exp: update all vars struct_declarations.long_array.1 changed
PASS -> FAIL: gdb.mi/mi-var-child.exp: update all vars struct_declarations.long_array.10 changed, don't print values.
PASS -> FAIL: gdb.mi/mi-var-child.exp: update all vars struct_declarations.long_array.11 changed, print values.
PASS -> FAIL: gdb.mi/mi-var-child.exp: update all vars struct_declarations.long_array.2 changed
PASS -> FAIL: gdb.mi/mi-var-child.exp: update all vars struct_declarations.long_array.3-9 changed
new FAIL: gdb.mi/mi-var-child.exp: wait for stop
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: assign array to pointer
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: assign to func
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: assign to lcharacter
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: assign to ldouble
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: assign to lfloat
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: assign to linteger
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: assign to linteger again, same value
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: assign to llong
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: assign to lpfloat
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: assign to lpinteger
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: assign to lplong
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: assign to lsimple->integer
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: assign to lsimple.character
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: assign to lsimple.integer
new FAIL: gdb.mi/mi-var-cmd.exp: bitfield: go to line 526
new FAIL: gdb.mi/mi-var-cmd.exp: bitfield: step over 526
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: check F inside callee
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: continue to where i is initialized
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create i
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create l
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create local variable func
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create local variable lcharacter
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create local variable ldouble
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create local variable lfloat
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create local variable linteger
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create local variable llong
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create local variable lpcharacter
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create local variable lpdouble
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create local variable lpfloat
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create local variable lpinteger
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create local variable lplong
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create local variable lpsimple
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create local variable lsimple
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create lsimple->integer
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create lsimple.character
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create lsimple.integer
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create selected_a
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: delete selected_a
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: delete var  lsimple->integer
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: delete var func
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: delete var i
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: delete var l
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: delete var lcharacter
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: delete var ldouble
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: delete var lfloat
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: delete var linteger
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: delete var llong
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: delete var lpcharacter
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: delete var lpdouble
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: delete var lpfloat
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: delete var lpinteger
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: delete var lplong
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: delete var lpsimple
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: delete var lsimple
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: delete var lsimple.character
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: delete var lsimple.integer
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: eval lcharacter
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: eval lfloat
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: eval linteger
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: eval llong
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: eval lpinteger
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: eval lplong
new FAIL: gdb.mi/mi-var-cmd.exp: floating: go to line 469
new FAIL: gdb.mi/mi-var-cmd.exp: floating: step over 469
new FAIL: gdb.mi/mi-var-cmd.exp: frozen: go to line 367
new FAIL: gdb.mi/mi-var-cmd.exp: frozen: step over 367
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: in-and-out-of-scope: check initial value
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: in-and-out-of-scope: create varobj
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: in-and-out-of-scope: in scope now
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: in-and-out-of-scope: in scope now, not changed
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: in-and-out-of-scope: out of scope now
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: in-and-out-of-scope: out of scope now, not changed
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: kill program before endvar
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: mi runto do_locals_tests
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: mi runto do_special_tests
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: mi runto incr_a
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: mi runto subroutine1
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: next out of subroutine1
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: return from incr_a to do_special_tests
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: run to 148
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: step a line in incr_a
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: step at do_locals_test
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: step at do_locals_tests
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: step at subroutine1
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: update F inside callee
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: update all vars: all now out of scope
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: update all vars: func and lpsimple changed
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: update all vars: i changed
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: update all vars: lcharacter changed
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: update all vars: linteger changed
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: update all vars: linteger changed after assign
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: update all vars: llong changed
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: update all vars: lpcharacter changed
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: update all vars: lpinteger changed
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: update all vars: lpinteger changed after assign
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: update all vars: lsimple and others changed
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: update all vars: many changed
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: update selected_a in do_special_tests
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: update selected_a in incr_a
new FAIL: gdb.mi/mi-var-cmd.exp: wait for stop
PASS -> FAIL: gdb.mi/mi-var-cp.exp: VT: create root varobj for a
PASS -> FAIL: gdb.mi/mi-var-cp.exp: VT: list children of a1
PASS -> FAIL: gdb.mi/mi-var-cp.exp: VT: list children of a1.public
PASS -> FAIL: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.0_anonymous
PASS -> FAIL: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.0_anonymous.public
PASS -> FAIL: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.1_anonymous
PASS -> FAIL: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.1_anonymous.public
PASS -> FAIL: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous
PASS -> FAIL: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous.public
PASS -> FAIL: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous.public.1_anonymous
PASS -> FAIL: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous.public.1_anonymous.public
PASS -> FAIL: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous.public.1_anonymous.public.1_anonymous
PASS -> FAIL: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public
PASS -> FAIL: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous
PASS -> FAIL: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous.public
PASS -> FAIL: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous.public.1_anonymous.public.2_anonymous
PASS -> FAIL: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous.public.1_anonymous.public.2_anonymous.public
new FAIL: gdb.mi/mi-var-cp.exp: base_in_reference: go to line 45
new FAIL: gdb.mi/mi-var-cp.exp: base_in_reference: step over 45
PASS -> FAIL: gdb.mi/mi-var-cp.exp: continue to anonymous_structs breakpoint
PASS -> FAIL: gdb.mi/mi-var-cp.exp: expression for a1
PASS -> FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public
PASS -> FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.0_anonymous
PASS -> FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.0_anonymous.public
PASS -> FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.0_anonymous.public.b
PASS -> FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.1_anonymous
PASS -> FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.1_anonymous.public
PASS -> FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.1_anonymous.public.c
PASS -> FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous
PASS -> FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public
PASS -> FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous
PASS -> FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public
PASS -> FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous
PASS -> FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public
PASS -> FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous
PASS -> FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous.public
PASS -> FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous.public.g
PASS -> FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous.public.h
PASS -> FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.f
PASS -> FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.2_anonymous
PASS -> FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.2_anonymous.public
PASS -> FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.2_anonymous.public.i
PASS -> FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.2_anonymous.public.j
PASS -> FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.e
PASS -> FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.d
PASS -> FAIL: gdb.mi/mi-var-cp.exp: path expression for a1
PASS -> FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public
PASS -> FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.0_anonymous
PASS -> FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.0_anonymous.public
PASS -> FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.0_anonymous.public.b
PASS -> FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.1_anonymous
PASS -> FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.1_anonymous.public
PASS -> FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.1_anonymous.public.c
PASS -> FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous
PASS -> FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public
PASS -> FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous
PASS -> FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public
PASS -> FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous
PASS -> FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public
PASS -> FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous
PASS -> FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous.public
PASS -> FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous.public.g
PASS -> FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous.public.h
PASS -> FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.f
PASS -> FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.2_anonymous
PASS -> FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.2_anonymous.public
PASS -> FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.2_anonymous.public.i
PASS -> FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.2_anonymous.public.j
PASS -> FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.e
PASS -> FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.d
new FAIL: gdb.mi/mi-var-cp.exp: path_expression: go to line 144
new FAIL: gdb.mi/mi-var-cp.exp: path_expression: step over 144
new FAIL: gdb.mi/mi-var-cp.exp: reference_to_pointer: go to line 81
new FAIL: gdb.mi/mi-var-cp.exp: reference_to_pointer: step over 81
new FAIL: gdb.mi/mi-var-cp.exp: reference_to_struct: go to line 104
new FAIL: gdb.mi/mi-var-cp.exp: reference_to_struct: step over 104
new FAIL: gdb.mi/mi-var-cp.exp: reference_update: go to line 19
new FAIL: gdb.mi/mi-var-cp.exp: reference_update: step over 19
new UNRESOLVED: gdb.mi/mi-var-cp.exp: wait for stop
PASS -> UNRESOLVED: gdb.mi/mi-var-create-rtti.exp: -var-create sp1 * $sp
PASS -> FAIL: gdb.mi/mi-var-create-rtti.exp: -var-create sp2 @ $sp
PASS -> FAIL: gdb.mi/mi-var-display.exp: assing to variable bar
PASS -> FAIL: gdb.mi/mi-var-display.exp: assing to variable foo
PASS -> FAIL: gdb.mi/mi-var-display.exp: continue to do_special_tests
PASS -> FAIL: gdb.mi/mi-var-display.exp: create duplicate local variable anone
PASS -> FAIL: gdb.mi/mi-var-display.exp: create local variable a1
PASS -> FAIL: gdb.mi/mi-var-display.exp: create local variable anone
PASS -> FAIL: gdb.mi/mi-var-display.exp: create local variable anons
PASS -> FAIL: gdb.mi/mi-var-display.exp: create local variable anonu
PASS -> FAIL: gdb.mi/mi-var-display.exp: create local variable e
PASS -> FAIL: gdb.mi/mi-var-display.exp: create local variable foo
PASS -> FAIL: gdb.mi/mi-var-display.exp: create local variable s
PASS -> FAIL: gdb.mi/mi-var-display.exp: create local variable u
PASS -> FAIL: gdb.mi/mi-var-display.exp: create local variable weird
PASS -> FAIL: gdb.mi/mi-var-display.exp: delete var foo
PASS -> FAIL: gdb.mi/mi-var-display.exp: delete var weird
PASS -> FAIL: gdb.mi/mi-var-display.exp: eval variable -f decimal foo
PASS -> FAIL: gdb.mi/mi-var-display.exp: eval variable -f nat foo
PASS -> FAIL: gdb.mi/mi-var-display.exp: eval variable -f octal foo
PASS -> FAIL: gdb.mi/mi-var-display.exp: eval variable anone
PASS -> FAIL: gdb.mi/mi-var-display.exp: eval variable anons
PASS -> FAIL: gdb.mi/mi-var-display.exp: eval variable anonu
PASS -> FAIL: gdb.mi/mi-var-display.exp: eval variable bar
PASS -> FAIL: gdb.mi/mi-var-display.exp: eval variable bar with new format
PASS -> FAIL: gdb.mi/mi-var-display.exp: eval variable bar with new value
PASS -> FAIL: gdb.mi/mi-var-display.exp: eval variable e
PASS -> FAIL: gdb.mi/mi-var-display.exp: eval variable foo in binary
PASS -> FAIL: gdb.mi/mi-var-display.exp: eval variable foo in decimal
PASS -> FAIL: gdb.mi/mi-var-display.exp: eval variable foo in hex
PASS -> FAIL: gdb.mi/mi-var-display.exp: eval variable foo in natural
PASS -> FAIL: gdb.mi/mi-var-display.exp: eval variable foo in octal
PASS -> FAIL: gdb.mi/mi-var-display.exp: eval variable s
PASS -> FAIL: gdb.mi/mi-var-display.exp: eval variable u
PASS -> FAIL: gdb.mi/mi-var-display.exp: get children local variable weird
PASS -> FAIL: gdb.mi/mi-var-display.exp: get children of anone
PASS -> FAIL: gdb.mi/mi-var-display.exp: get children of anons
PASS -> FAIL: gdb.mi/mi-var-display.exp: get children of anonu
PASS -> FAIL: gdb.mi/mi-var-display.exp: get children of e
PASS -> FAIL: gdb.mi/mi-var-display.exp: get children of s
PASS -> FAIL: gdb.mi/mi-var-display.exp: get children of u
PASS -> FAIL: gdb.mi/mi-var-display.exp: get number of children of anone
PASS -> FAIL: gdb.mi/mi-var-display.exp: get number of children of anons
PASS -> FAIL: gdb.mi/mi-var-display.exp: get number of children of anonu
PASS -> FAIL: gdb.mi/mi-var-display.exp: get number of children of e
PASS -> FAIL: gdb.mi/mi-var-display.exp: get number of children of s
PASS -> FAIL: gdb.mi/mi-var-display.exp: get number of children of u
PASS -> FAIL: gdb.mi/mi-var-display.exp: info type variable anone
PASS -> FAIL: gdb.mi/mi-var-display.exp: info type variable anons
PASS -> FAIL: gdb.mi/mi-var-display.exp: info type variable anonu
PASS -> FAIL: gdb.mi/mi-var-display.exp: info type variable bar
PASS -> FAIL: gdb.mi/mi-var-display.exp: info type variable e
PASS -> FAIL: gdb.mi/mi-var-display.exp: info type variable foo
PASS -> FAIL: gdb.mi/mi-var-display.exp: info type variable s
PASS -> FAIL: gdb.mi/mi-var-display.exp: info type variable u
PASS -> FAIL: gdb.mi/mi-var-display.exp: is anone editable
PASS -> FAIL: gdb.mi/mi-var-display.exp: is anons editable
PASS -> FAIL: gdb.mi/mi-var-display.exp: is anonu editable
PASS -> FAIL: gdb.mi/mi-var-display.exp: is e editable
PASS -> FAIL: gdb.mi/mi-var-display.exp: is s editable
PASS -> FAIL: gdb.mi/mi-var-display.exp: is u editable
PASS -> FAIL: gdb.mi/mi-var-display.exp: mi runto incr_a
PASS -> FAIL: gdb.mi/mi-var-display.exp: print FP register
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: run to main
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable bar in decimal
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable bar in hex
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable bar in zero-padded hexadecimal
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable foo decimal
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable foo in octal
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable weird
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable weird.char_ptr
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable weird.character
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable weird.func_ptr in hex
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable weird.func_ptr in zero-padded hex
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable weird.func_ptr_ptr in hex
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable weird.func_ptr_ptr in natural
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable weird.func_ptr_ptr in zero-padded hex
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable weird.func_ptr_struct
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable weird.int_ptr_ptr
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable weird.integer
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable weird.long_array
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable weird.long_int
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable weird.s2
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable weird.u1
PASS -> FAIL: gdb.mi/mi-var-display.exp: show format variable foo after eval in binary
PASS -> FAIL: gdb.mi/mi-var-display.exp: show format variable foo after eval in decimal
PASS -> FAIL: gdb.mi/mi-var-display.exp: show format variable foo after eval in hex
PASS -> FAIL: gdb.mi/mi-var-display.exp: show format variable foo after eval in natural
PASS -> FAIL: gdb.mi/mi-var-display.exp: show format variable foo after eval in octal
PASS -> FAIL: gdb.mi/mi-var-display.exp: show format variable foo in natural
PASS -> FAIL: gdb.mi/mi-var-display.exp: show format variable foo in octal
PASS -> FAIL: gdb.mi/mi-var-display.exp: show format variable weird.func_ptr
PASS -> FAIL: gdb.mi/mi-var-display.exp: show format variable weird.func_ptr_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-invalidate.exp: create local variable linteger
PASS -> FAIL: gdb.mi/mi-var-invalidate.exp: linteger not anymore in scope due to binary changes
PASS -> FAIL: gdb.mi/mi-var-invalidate.exp: linteger not valid anymore due to binary changes
PASS -> FAIL: gdb.mi/mi-var-invalidate.exp: no type for invalid variable linteger
PASS -> UNRESOLVED: gdb.mi/mi-var-invalidate.exp: set format variable float_simple
PASS -> FAIL: gdb.mi/mi-var-list-children-invalid-grandchild.exp: create variable object
PASS -> FAIL: gdb.mi/mi-var-list-children-invalid-grandchild.exp: list children #1
PASS -> FAIL: gdb.mi/mi-var-list-children-invalid-grandchild.exp: list children #2
PASS -> UNRESOLVED: gdb.mi/mi-var-list-children-invalid-grandchild.exp: run to 41
PASS -> FAIL: gdb.mi/mi-var-list-children-invalid-grandchild.exp: update variable object
new FAIL: gdb.mi/mi-var-list-children-invalid-grandchild.exp: wait for stop
new FAIL: gdb.mi/mi-var-rtti.exp: skip_type_update_when_not_use_rtti: go to line 306
new FAIL: gdb.mi/mi-var-rtti.exp: skip_type_update_when_not_use_rtti: step over 306
new FAIL: gdb.mi/mi-var-rtti.exp: type_update_when_use_rtti: go to line 250
new FAIL: gdb.mi/mi-var-rtti.exp: type_update_when_use_rtti: step over 250
new FAIL: gdb.mi/mi-var-rtti.exp: use_rtti_for_ptr: go to line 36
new FAIL: gdb.mi/mi-var-rtti.exp: use_rtti_for_ptr: step over 36
new FAIL: gdb.mi/mi-var-rtti.exp: use_rtti_for_ptr_child: go to line 93
new FAIL: gdb.mi/mi-var-rtti.exp: use_rtti_for_ptr_child: step over 93
new FAIL: gdb.mi/mi-var-rtti.exp: use_rtti_for_ref: go to line 63
new FAIL: gdb.mi/mi-var-rtti.exp: use_rtti_for_ref: step over 63
new FAIL: gdb.mi/mi-var-rtti.exp: use_rtti_for_ref_child: go to line 148
new FAIL: gdb.mi/mi-var-rtti.exp: use_rtti_for_ref_child: step over 148
new FAIL: gdb.mi/mi-var-rtti.exp: use_rtti_with_multiple_inheritence: go to line 201
new FAIL: gdb.mi/mi-var-rtti.exp: use_rtti_with_multiple_inheritence: step over 201
new UNRESOLVED: gdb.mi/mi-var-rtti.exp: wait for stop
PASS -> FAIL: gdb.mi/mi-vla-c99.exp: create local variable vla
PASS -> FAIL: gdb.mi/mi-vla-c99.exp: eval variable vla
PASS -> FAIL: gdb.mi/mi-vla-c99.exp: evaluate complete vla
PASS -> FAIL: gdb.mi/mi-vla-c99.exp: evaluate vla[0]
PASS -> FAIL: gdb.mi/mi-vla-c99.exp: evaluate vla[2]
PASS -> FAIL: gdb.mi/mi-vla-c99.exp: evaluate vla[4]
PASS -> FAIL: gdb.mi/mi-vla-c99.exp: get children of vla
PASS -> FAIL: gdb.mi/mi-vla-c99.exp: info type variable vla
PASS -> UNRESOLVED: gdb.mi/mi-vla-c99.exp: run to breakpoint at line 28
PASS -> FAIL: gdb.mi/mi-vla-c99.exp: show format variable vla
PASS -> UNRESOLVED: gdb.mi/mi-watch.exp: mi-mode=main: wp-type=hw: break-watch operation
PASS -> FAIL: gdb.mi/mi-watch.exp: mi-mode=main: wp-type=hw: list of watchpoints
PASS -> FAIL: gdb.mi/mi-watch.exp: mi-mode=main: wp-type=hw: watchpoint trigger
PASS -> UNRESOLVED: gdb.mi/mi-watch.exp: mi-mode=main: wp-type=sw: break-watch operation
PASS -> FAIL: gdb.mi/mi-watch.exp: mi-mode=main: wp-type=sw: list of watchpoints
PASS -> FAIL: gdb.mi/mi-watch.exp: mi-mode=main: wp-type=sw: watchpoint trigger
PASS -> UNRESOLVED: gdb.mi/mi-watch.exp: mi-mode=separate: wp-type=hw: break-watch operation
PASS -> FAIL: gdb.mi/mi-watch.exp: mi-mode=separate: wp-type=hw: list of watchpoints
PASS -> FAIL: gdb.mi/mi-watch.exp: mi-mode=separate: wp-type=hw: watchpoint trigger
PASS -> UNRESOLVED: gdb.mi/mi-watch.exp: mi-mode=separate: wp-type=sw: break-watch operation
PASS -> FAIL: gdb.mi/mi-watch.exp: mi-mode=separate: wp-type=sw: list of watchpoints
PASS -> FAIL: gdb.mi/mi-watch.exp: mi-mode=separate: wp-type=sw: watchpoint trigger
PASS -> FAIL: gdb.mi/mi2-cli-display.exp: check display and source line x=24
PASS -> FAIL: gdb.mi/mi2-cli-display.exp: check display and source line x=25
PASS -> UNRESOLVED: gdb.mi/mi2-cli-display.exp: display x
new FAIL: gdb.mi/mi2-cli-display.exp: exec-next
PASS -> FAIL: gdb.mi/mi2-cli-display.exp: next
PASS -> FAIL: gdb.mi/mi2-var-child.exp: Run till MI stops in do_nested_struct_union_tests
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: create root varobj for ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: create root varobj for ss_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: create root varobj for v
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: create root varobj for var
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: create root varobj for var2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ptr1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.2_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.h
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.h.*h
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.c
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.3_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.3_anonymous.a2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.3_anonymous.b2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.a1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.b1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.u1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.u1.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.u1.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.u2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.u2.a3
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.u2.b3
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of v1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of v1.1_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of v1.2_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var1.3_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var1.3_anonymous.a2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var1.3_anonymous.b2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var1.a1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var1.b1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var1.u1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var1.u1.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var1.u1.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var1.u2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var1.u2.a3
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var1.u2.b3
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var21
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var21.ab
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var21.ab.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var21.ab.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: continue to do_anonymous_type_tests breakpoint
new FAIL: gdb.mi/mi2-var-child.exp: continuing execution to enter do_nested_struct_union_tests
PASS -> FAIL: gdb.mi/mi2-var-child.exp: create local variable  psnp->char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: create local variable  psnp->long_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: create local variable  psnp->ptrs
PASS -> FAIL: gdb.mi/mi2-var-child.exp: create local variable struct_declarations
PASS -> FAIL: gdb.mi/mi2-var-child.exp: create local variable weird
PASS -> FAIL: gdb.mi/mi2-var-child.exp: create local variable weird->int_ptr_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: delete var struct_declarations
PASS -> FAIL: gdb.mi/mi2-var-child.exp: delete var weird
PASS -> FAIL: gdb.mi/mi2-var-child.exp: delete var weird->int_ptr_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.g
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.h
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.h.*h
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.h.*h.**h
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.0
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.3
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.4
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.5
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.6
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.7
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.8
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.9
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.char_ptr.*char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.character
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.integer
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.signed_character
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.unsigned_integer
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.d
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.e
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.f
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.c
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.c.*c
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.3_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.3_anonymous.a2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.3_anonymous.a2.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.3_anonymous.b2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.3_anonymous.b2.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.a1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.a1.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.b1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.b1.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u1.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u1.a.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u1.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u1.b.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u2.a3
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u2.a3.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u2.b3
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u2.b3.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for v1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for v1.1_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for v1.1_anonymous.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for v1.2_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for v1.2_anonymous.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for v1.x
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1.3_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1.3_anonymous.a2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1.3_anonymous.a2.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1.3_anonymous.b2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1.3_anonymous.b2.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1.a1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1.a1.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1.b1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1.b1.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1.u1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1.u1.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1.u1.a.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1.u1.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1.u1.b.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1.u2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1.u2.a3
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1.u2.a3.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1.u2.b3
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1.u2.b3.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var21
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var21.ab
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var21.ab.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var21.ab.a.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var21.ab.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var21.ab.b.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->char_ptr.*psnp->char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr.***psnp->char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr.***psnp->char_ptr.****psnp->char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->long_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->long_ptr.*psnp->long_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr.***psnp->long_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr.***psnp->long_ptr.****psnp->long_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->ptrs
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->ptrs.0
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->ptrs.0.next
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->ptrs.0.next.char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->ptrs.0.next.char_ptr.*char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->ptrs.0.next.char_ptr.*char_ptr.**char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->ptrs.0.next.char_ptr.*char_ptr.**char_ptr.***char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->ptrs.0.next.next
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->ptrs.0.next.next.ptrs
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.character
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.func_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.func_ptr_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.func_ptr_struct
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.int_ptr_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.int_ptr_ptr.*int_ptr_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.integer
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array.1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array.2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array.3
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array.4
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array.5
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array.6
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array.7
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array.8
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array.9
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_int
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.g
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.h
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.i
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2.f
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2.u1s1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2.u1s1.d
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2.u1s1.e
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2.u1s1.foo
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2.u1s1.func
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2.u1s2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2.u1s2.array_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2.u1s2.func
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.u1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.u1.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.u1.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.u1.c
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.u1.d
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of weird
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of weird->int_ptr_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of weird->int_ptr_ptr.*weird->int_ptr_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of weird->int_ptr_ptr.*weird->int_ptr_ptr.**weird->int_ptr_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of weird.int_ptr_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of weird.int_ptr_ptr.*int_ptr_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of weird.long_array
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->char_ptr.*psnp->char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr.***psnp->char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr.***psnp->char_ptr.****psnp->char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->long_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->long_ptr.*psnp->long_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr.***psnp->long_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr.***psnp->long_ptr.****psnp->long_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->ptrs
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->ptrs.0
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->ptrs.0.next
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->ptrs.0.next.char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->ptrs.0.next.char_ptr.*char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->ptrs.0.next.char_ptr.*char_ptr.**char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->ptrs.0.next.char_ptr.*char_ptr.**char_ptr.***char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.character
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.func_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.func_ptr_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.func_ptr_struct
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.int_ptr_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.int_ptr_ptr.*int_ptr_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.integer
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array.1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array.2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array.3
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array.4
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array.5
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array.6
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array.7
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array.8
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array.9
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_int
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.g
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.h
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.i
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2.f
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1.d
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1.e
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1.foo
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1.func
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2.u1s2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2.u1s2.array_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2.u1s2.func
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.u1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.u1.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.u1.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.u1.c
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.u1.d
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of weird
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of weird->int_ptr_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of weird->int_ptr_ptr.*weird->int_ptr_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of weird->int_ptr_ptr.*weird->int_ptr_ptr.**weird->int_ptr_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of weird.int_ptr_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of weird.int_ptr_ptr.*int_ptr_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of weird.long_array
PASS -> FAIL: gdb.mi/mi2-var-child.exp: is struct_declarations editable
PASS -> FAIL: gdb.mi/mi2-var-child.exp: is struct_declarations.long_array editable
PASS -> FAIL: gdb.mi/mi2-var-child.exp: is struct_declarations.long_array.0 editable
PASS -> FAIL: gdb.mi/mi2-var-child.exp: is struct_declarations.u1.a editable
PASS -> FAIL: gdb.mi/mi2-var-child.exp: is struct_declarations.u1.b editable
PASS -> FAIL: gdb.mi/mi2-var-child.exp: is struct_declarations.u1.c editable
PASS -> FAIL: gdb.mi/mi2-var-child.exp: is weird editable
PASS -> FAIL: gdb.mi/mi2-var-child.exp: is weird->int_ptr_ptr editable
PASS -> FAIL: gdb.mi/mi2-var-child.exp: is weird.int_ptr_ptr.*int_ptr_ptr editable
PASS -> FAIL: gdb.mi/mi2-var-child.exp: is weird.int_ptr_ptr.*int_ptr_ptr.**int_ptr_ptr editable
PASS -> FAIL: gdb.mi/mi2-var-child.exp: is weird.s2 editable
PASS -> FAIL: gdb.mi/mi2-var-child.exp: is weird.u1 editable
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.g
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.h
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.h.*h
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.h.*h.**h
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.0
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.3
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.4
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.5
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.6
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.7
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.8
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.9
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.char_ptr.*char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.character
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.integer
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.signed_character
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.unsigned_integer
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.d
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.e
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.f
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.c
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.c.*c
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.3_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.3_anonymous.a2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.3_anonymous.a2.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.3_anonymous.b2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.3_anonymous.b2.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.a1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.a1.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.b1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.b1.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u1.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u1.a.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u1.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u1.b.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u2.a3
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u2.a3.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u2.b3
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u2.b3.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for v1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for v1.1_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for v1.1_anonymous.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for v1.2_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for v1.2_anonymous.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for v1.x
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.3_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.3_anonymous.a2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.3_anonymous.a2.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.3_anonymous.b2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.3_anonymous.b2.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.a1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.a1.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.b1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.b1.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.u1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.u1.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.u1.a.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.u1.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.u1.b.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.u2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.u2.a3
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.u2.a3.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.u2.b3
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.u2.b3.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var21
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var21.ab
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var21.ab.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var21.ab.a.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var21.ab.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var21.ab.b.b
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: run to 251
PASS -> FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_123 + 1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_123 + 4
PASS -> FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_123 + 5
PASS -> FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_123 + 6
PASS -> FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_123 + 7
PASS -> FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_123 + 8
PASS -> FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_nothing
PASS -> FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_nothing + 1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_snp0 + 1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_snp0 + 2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_snp0 + 3
PASS -> FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_snp0 + 4
PASS -> FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_snp0 + 5
PASS -> FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_snp0 + 6
PASS -> FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_snp0 + 7
PASS -> FAIL: gdb.mi/mi2-var-child.exp: step to line $line_dct_123
PASS -> FAIL: gdb.mi/mi2-var-child.exp: update all vars int_ptr_ptr and children changed
PASS -> FAIL: gdb.mi/mi2-var-child.exp: update all vars psnp->char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: update all vars psnp->long_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: update all vars psnp->next->char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: update all vars psnp->next->next->char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: update all vars psnp->next->next->long_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: update all vars struct_declarations.char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: update all vars struct_declarations.func_ptr changed
PASS -> FAIL: gdb.mi/mi2-var-child.exp: update all vars struct_declarations.integer
PASS -> FAIL: gdb.mi/mi2-var-child.exp: update all vars struct_declarations.long_array.0 changed
PASS -> FAIL: gdb.mi/mi2-var-child.exp: update all vars struct_declarations.long_array.1 changed
PASS -> FAIL: gdb.mi/mi2-var-child.exp: update all vars struct_declarations.long_array.2 changed
PASS -> FAIL: gdb.mi/mi2-var-child.exp: update all vars struct_declarations.long_array.3-9 changed
new FAIL: gdb.mi/mi2-var-child.exp: wait for stop
PASS -> UNRESOLVED: gdb.mi/new-ui-mi-sync.exp: sync-command=continue: breakpoint at main
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit 2
PASS -> UNRESOLVED: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": set breakpoint
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": set x
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit 2
PASS -> UNRESOLVED: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": set breakpoint
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": set x
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2
new UNRESOLVED: gdb.modula2/max-depth.exp: can't run to main
PASS -> UNRESOLVED: gdb.multi/multi-re-run.exp: re_run_inf=1: running to all_started in runto
FAIL -> UNRESOLVED: gdb.multi/multi-re-run.exp: re_run_inf=2: running to all_started in runto
new UNRESOLVED: gdb.multi/remove-inferiors.exp: couldn't run to main.
new UNRESOLVED: gdb.multi/watchpoint-multi-exit.exp: dispose=detach: can't run to child_function
new UNRESOLVED: gdb.multi/watchpoint-multi-exit.exp: dispose=exit: can't run to child_function
new UNRESOLVED: gdb.multi/watchpoint-multi-exit.exp: dispose=kill: can't run to child_function
new UNRESOLVED: gdb.opt/clobbered-registers-O2.exp: run to start_sequence
new UNRESOLVED: gdb.opt/inline-break.exp: cmd=break: could not run to main
new UNRESOLVED: gdb.opt/inline-bt.exp: skipping inline frame tests
new UNRESOLVED: gdb.opt/inline-cmds.exp: skipping inline frame tests
new UNRESOLVED: gdb.opt/inline-locals.exp: inline-bt.exp
new UNRESOLVED: gdb.python/lib-types.exp: can't run to main
new UNRESOLVED: gdb.python/py-as-string.exp: couldn't run to main.
new UNRESOLVED: gdb.python/py-bad-printers.exp: can't run to main
new UNRESOLVED: gdb.python/py-block.exp: can't run to main
new UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_basic: cannot run to main.
new UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_cond_and_cmds: cannot run to main.
new UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_deletion: cannot run to main.
new UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: cannot run to main.
new UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_explicit_loc: cannot run to main.
new UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_internal: cannot run to main.
new UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_invisible: cannot run to main.
new UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_qualified: cannot run to main.
new UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_temporary: cannot run to main.
new UNRESOLVED: gdb.python/py-breakpoint.exp: test_watchpoints: cannot run to main.
new UNRESOLVED: gdb.python/py-cmd.exp: cannot run to main.
PASS -> FAIL: gdb.python/py-evthreads.exp: continue thread 1
PASS -> FAIL: gdb.python/py-evthreads.exp: reached breakpoint 2
PASS -> FAIL: gdb.python/py-evthreads.exp: reached breakpoint 3
PASS -> UNRESOLVED: gdb.python/py-evthreads.exp: run to breakpoint 1
PASS -> FAIL: gdb.python/py-evthreads.exp: thread 2
PASS -> FAIL: gdb.python/py-evthreads.exp: thread 3
PASS -> FAIL: gdb.python/py-evthreads.exp: thread 3 was signaled
new UNRESOLVED: gdb.python/py-finish-breakpoint.exp: cannot run to main.
new UNRESOLVED: gdb.python/py-finish-breakpoint2.exp: cannot run to main.
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option 12
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option format='xd'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option invalid=True
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option raw='hello'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option raw=True, format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option unions: unions=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option pretty_structs=True, unions=False
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option symbols=False, format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option array_indexes=True, pretty_arrays=True
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: disable pretty-printer '' test_lookup_function: a_point_t with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: disable pretty-printer '' test_lookup_function: a_point_t with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: disable pretty-printer '' test_lookup_function: a_point_t with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: disable pretty-printer '' test_lookup_function: a_point_t with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: disable pretty-printer '' test_lookup_function: a_point_t: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: disable pretty-printer '' test_lookup_function: a_point_t: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='d': a_big_string with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='d': a_binary_string with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='d': a_binary_string_array with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='d': a_point_t with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='d': a_point_t_pointer with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='d': a_string with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='d': a_struct_with_union with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='d': a_symbol_pointer with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='d': an_array with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='d': an_array_with_repetition with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='d': an_enum with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='d': another_point with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='x': a_big_string with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='x': a_binary_string with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='x': a_binary_string_array with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='x': a_point_t with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='x': a_point_t_pointer with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='x': a_string with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='x': a_struct_with_union with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='x': a_symbol_pointer with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='x': an_array with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='x': an_array_with_repetition with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='x': an_enum with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='x': another_point with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_depth=-1: a_struct_with_union with option max_depth=-1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_depth=0: a_struct_with_union with option max_depth=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_depth=1: a_struct_with_union with option max_depth=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_depth=2: a_struct_with_union with option max_depth=2
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=0: a_big_string with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=0: a_binary_string with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=0: a_binary_string_array with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=0: a_point_t with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=0: a_point_t_pointer with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=0: a_string with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=0: a_struct_with_union with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=0: a_symbol_pointer with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=0: an_array with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=0: an_array_with_repetition with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=0: an_enum with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=0: another_point with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=1000: a_big_string with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=1000: a_binary_string with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=1000: a_binary_string_array with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=1000: a_point_t with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=1000: a_point_t_pointer with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=1000: a_string with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=1000: a_struct_with_union with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=1000: a_symbol_pointer with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=1000: an_array with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=1000: an_array_with_repetition with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=1000: an_enum with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=1000: another_point with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=200: a_big_string with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=200: a_binary_string with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=200: a_binary_string_array with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=200: a_point_t with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=200: a_point_t_pointer with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=200: a_string with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=200: a_struct_with_union with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=200: a_symbol_pointer with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=200: an_array with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=200: an_array_with_repetition with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=200: an_enum with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=200: another_point with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=3: a_big_string with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=3: a_binary_string with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=3: a_binary_string_array with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=3: a_point_t with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=3: a_point_t_pointer with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=3: a_string with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=3: a_struct_with_union with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=3: a_symbol_pointer with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=3: an_array with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=3: an_array_with_repetition with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=3: an_enum with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=3: another_point with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=0: a_big_string with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=0: a_binary_string with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=0: a_binary_string_array with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=0: a_point_t with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=0: a_point_t_pointer with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=0: a_string with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=0: a_struct_with_union with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=0: a_symbol_pointer with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=0: an_array with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=0: an_array_with_repetition with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=0: an_enum with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=0: another_point with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=100: a_big_string with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=100: a_binary_string with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=100: a_binary_string_array with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=100: a_point_t with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=100: a_point_t_pointer with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=100: a_string with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=100: a_struct_with_union with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=100: a_symbol_pointer with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=100: an_array with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=100: an_array_with_repetition with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=100: an_enum with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=100: another_point with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=10: a_big_string with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=10: a_binary_string with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=10: a_binary_string_array with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=10: a_point_t with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=10: a_point_t_pointer with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=10: a_string with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=10: a_struct_with_union with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=10: a_symbol_pointer with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=10: an_array with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=10: an_array_with_repetition with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=10: an_enum with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=10: another_point with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=1: a_big_string with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=1: a_binary_string with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=1: a_binary_string_array with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=1: a_point_t with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=1: a_point_t_pointer with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=1: a_string with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=1: a_struct_with_union with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=1: a_symbol_pointer with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=1: an_array with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=1: an_array_with_repetition with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=1: an_enum with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=1: another_point with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=3: a_big_string with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=3: a_binary_string with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=3: a_binary_string_array with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=3: a_point_t with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=3: a_point_t_pointer with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=3: a_string with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=3: a_struct_with_union with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=3: a_symbol_pointer with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=3: an_array with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=3: an_array_with_repetition with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=3: an_enum with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=3: another_point with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array on: an_array with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array on: an_array with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array on: an_array: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array on: an_array: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array on: an_array_with_repetition with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array on: an_array_with_repetition with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array on: an_array_with_repetition: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array on: an_array_with_repetition: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array-indexes on: an_array with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array-indexes on: an_array with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array-indexes on: an_array: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array-indexes on: an_array: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array-indexes on: an_array_with_repetition with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array-indexes on: an_array_with_repetition with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array-indexes on: an_array_with_repetition: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array-indexes on: an_array_with_repetition: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print elements 4: a_binary_string with option
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print elements 4: a_binary_string_array with option
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print elements 4: a_string with option
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print elements 4: an_array_with_repetition with option
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print repeats 1: an_array_with_repetition with option
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print structs on: a_struct_with_union with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print structs on: a_struct_with_union with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print structs on: a_struct_with_union: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print structs on: a_struct_with_union: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print symbol off: a_symbol_pointer with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print symbol off: a_symbol_pointer with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print symbol off: a_symbol_pointer: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print symbol off: a_symbol_pointer: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print union off: a_struct_with_union with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print union off: a_struct_with_union with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print union off: a_struct_with_union: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print union off: a_struct_with_union: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option deref_refs=True, static_members=False
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option 12
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option format='xd'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option invalid=True
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option raw='hello'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option raw=True, format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option unions: unions=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option deref_refs=True, actual_objects=True, raw=True
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option pretty_structs=True, unions=False
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option symbols=False, format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option array_indexes=True, pretty_arrays=True
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: disable pretty-printer '' test_lookup_function: a_point_t with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: disable pretty-printer '' test_lookup_function: a_point_t with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: disable pretty-printer '' test_lookup_function: a_point_t with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: disable pretty-printer '' test_lookup_function: a_point_t with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: disable pretty-printer '' test_lookup_function: a_point_t: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: disable pretty-printer '' test_lookup_function: a_point_t: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': a_base_ref with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': a_big_string with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': a_binary_string with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': a_binary_string_array with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': a_point_t with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': a_point_t_pointer with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': a_point_t_ref with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': a_string with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': a_struct_with_union with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': a_symbol_pointer with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': an_array with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': an_array_with_repetition with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': an_enum with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': another_point with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': a_base_ref with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': a_big_string with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': a_binary_string with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': a_binary_string_array with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': a_point_t with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': a_point_t_pointer with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': a_point_t_ref with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': a_string with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': a_struct_with_union with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': a_symbol_pointer with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': an_array with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': an_array_with_repetition with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': an_enum with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': another_point with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_depth=-1: a_struct_with_union with option max_depth=-1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_depth=0: a_struct_with_union with option max_depth=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_depth=1: a_struct_with_union with option max_depth=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_depth=2: a_struct_with_union with option max_depth=2
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: a_base_ref with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: a_big_string with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: a_binary_string with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: a_binary_string_array with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: a_point_t with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: a_point_t_pointer with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: a_point_t_ref with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: a_string with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: a_struct_with_union with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: a_symbol_pointer with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: an_array with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: an_array_with_repetition with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: an_enum with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: another_point with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: a_base_ref with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: a_big_string with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: a_binary_string with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: a_binary_string_array with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: a_point_t with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: a_point_t_pointer with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: a_point_t_ref with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: a_string with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: a_struct_with_union with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: a_symbol_pointer with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: an_array with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: an_array_with_repetition with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: an_enum with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: another_point with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: a_base_ref with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: a_big_string with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: a_binary_string with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: a_binary_string_array with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: a_point_t with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: a_point_t_pointer with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: a_point_t_ref with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: a_string with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: a_struct_with_union with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: a_symbol_pointer with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: an_array with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: an_array_with_repetition with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: an_enum with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: another_point with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: a_base_ref with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: a_big_string with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: a_binary_string with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: a_binary_string_array with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: a_point_t with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: a_point_t_pointer with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: a_point_t_ref with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: a_string with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: a_struct_with_union with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: a_symbol_pointer with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: an_array with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: an_array_with_repetition with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: an_enum with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: another_point with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: a_base_ref with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: a_big_string with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: a_binary_string with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: a_binary_string_array with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: a_point_t with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: a_point_t_pointer with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: a_point_t_ref with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: a_string with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: a_struct_with_union with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: a_symbol_pointer with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: an_array with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: an_array_with_repetition with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: an_enum with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: another_point with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: a_base_ref with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: a_big_string with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: a_binary_string with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: a_binary_string_array with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: a_point_t with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: a_point_t_pointer with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: a_point_t_ref with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: a_string with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: a_struct_with_union with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: a_symbol_pointer with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: an_array with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: an_array_with_repetition with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: an_enum with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: another_point with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: a_base_ref with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: a_big_string with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: a_binary_string with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: a_binary_string_array with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: a_point_t with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: a_point_t_pointer with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: a_point_t_ref with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: a_string with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: a_struct_with_union with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: a_symbol_pointer with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: an_array with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: an_array_with_repetition with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: an_enum with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: another_point with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: a_base_ref with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: a_big_string with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: a_binary_string with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: a_binary_string_array with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: a_point_t with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: a_point_t_pointer with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: a_point_t_ref with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: a_string with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: a_struct_with_union with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: a_symbol_pointer with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: an_array with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: an_array_with_repetition with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: an_enum with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: another_point with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: a_base_ref with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: a_big_string with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: a_binary_string with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: a_binary_string_array with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: a_point_t with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: a_point_t_pointer with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: a_point_t_ref with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: a_string with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: a_struct_with_union with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: a_symbol_pointer with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: an_array with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: an_array_with_repetition with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: an_enum with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: another_point with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array on: an_array with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array on: an_array with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array on: an_array: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array on: an_array: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array on: an_array_with_repetition with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array on: an_array_with_repetition with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array on: an_array_with_repetition: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array on: an_array_with_repetition: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array-indexes on: an_array with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array-indexes on: an_array with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array-indexes on: an_array: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array-indexes on: an_array: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array-indexes on: an_array_with_repetition with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array-indexes on: an_array_with_repetition with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array-indexes on: an_array_with_repetition: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array-indexes on: an_array_with_repetition: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print elements 4: a_binary_string with option
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print elements 4: a_binary_string_array with option
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print elements 4: a_string with option
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print elements 4: an_array_with_repetition with option
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print object on: a_base_ref with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print object on: a_base_ref with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print object on: a_base_ref: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print object on: a_base_ref: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print object on: a_point_t_ref with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print object on: a_point_t_ref with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print object on: a_point_t_ref: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print object on: a_point_t_ref: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print repeats 1: an_array_with_repetition with option
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print static-members off: a_base_ref with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print static-members off: a_base_ref with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print static-members off: a_base_ref: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print static-members off: a_base_ref: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print static-members off: a_point_t_ref with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print static-members off: a_point_t_ref with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print static-members off: a_point_t_ref: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print static-members off: a_point_t_ref: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print structs on: a_struct_with_union with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print structs on: a_struct_with_union with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print structs on: a_struct_with_union: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print structs on: a_struct_with_union: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print symbol off: a_symbol_pointer with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print symbol off: a_symbol_pointer with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print symbol off: a_symbol_pointer: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print symbol off: a_symbol_pointer: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print union off: a_struct_with_union with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print union off: a_struct_with_union with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print union off: a_struct_with_union: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print union off: a_struct_with_union: str
new UNRESOLVED: gdb.python/py-frame-inline.exp: can't run to function f
new UNRESOLVED: gdb.python/py-frame.exp: can't run to main
PASS -> FAIL: gdb.python/py-framefilter-mi.exp: filtered stack list 0 3
PASS -> FAIL: gdb.python/py-framefilter-mi.exp: filtered stack list 22 24
PASS -> FAIL: gdb.python/py-framefilter-mi.exp: filtered stack listing
PASS -> UNRESOLVED: gdb.python/py-framefilter-mi.exp: load python file
PASS -> FAIL: gdb.python/py-framefilter-mi.exp: stack-list-arguments --no-frame-filters 0
PASS -> FAIL: gdb.python/py-framefilter-mi.exp: stack-list-arguments --no-frame-filters 1
PASS -> FAIL: gdb.python/py-framefilter-mi.exp: stack-list-arguments --no-frame-filters 2
PASS -> FAIL: gdb.python/py-framefilter-mi.exp: stack-list-arguments --no-frame-filters 2 22 27
PASS -> FAIL: gdb.python/py-framefilter-mi.exp: stack-list-arguments 0
PASS -> FAIL: gdb.python/py-framefilter-mi.exp: stack-list-arguments 0 0 3
PASS -> FAIL: gdb.python/py-framefilter-mi.exp: stack-list-arguments 0 22 27
PASS -> FAIL: gdb.python/py-framefilter-mi.exp: stack-list-arguments 1
PASS -> FAIL: gdb.python/py-framefilter-mi.exp: stack-list-arguments 1 0 3
PASS -> FAIL: gdb.python/py-framefilter-mi.exp: stack-list-arguments 1 22 27
PASS -> FAIL: gdb.python/py-framefilter-mi.exp: stack-list-arguments 2
PASS -> FAIL: gdb.python/py-framefilter-mi.exp: stack-list-arguments 2 0 3
PASS -> FAIL: gdb.python/py-framefilter-mi.exp: stack-list-arguments 2 22 27
PASS -> FAIL: gdb.python/py-framefilter-mi.exp: stack-list-locals --all-values
PASS -> FAIL: gdb.python/py-framefilter-mi.exp: stack-list-locals --all-values frame filters enabled
PASS -> FAIL: gdb.python/py-framefilter-mi.exp: stack-list-locals --no-frame-filters --all-values
PASS -> FAIL: gdb.python/py-framefilter-mi.exp: stack-list-locals --no-frame-filters --no-values
PASS -> FAIL: gdb.python/py-framefilter-mi.exp: stack-list-locals --no-frame-filters --simple-values
PASS -> FAIL: gdb.python/py-framefilter-mi.exp: stack-list-locals --no-frame-filters 0
PASS -> FAIL: gdb.python/py-framefilter-mi.exp: stack-list-locals --no-frame-filters 1
PASS -> FAIL: gdb.python/py-framefilter-mi.exp: stack-list-locals --no-frame-filters 2
PASS -> FAIL: gdb.python/py-framefilter-mi.exp: stack-list-locals 0
PASS -> FAIL: gdb.python/py-framefilter-mi.exp: stack-list-locals 1
PASS -> FAIL: gdb.python/py-framefilter-mi.exp: stack-list-locals 2
PASS -> FAIL: gdb.python/py-framefilter-mi.exp: stack-list-variables --no-frame-filters 0
PASS -> FAIL: gdb.python/py-framefilter-mi.exp: stack-list-variables 0
new FAIL: gdb.python/py-framefilter-mi.exp: wait for stop
new UNRESOLVED: gdb.python/py-inferior.exp: can't run to main
new UNRESOLVED: gdb.python/py-infthread.exp: can't run to main
PASS -> FAIL: gdb.python/py-mi-events.exp: continue
PASS -> FAIL: gdb.python/py-mi-events.exp: python continue handler ran
PASS -> FAIL: gdb.python/py-mi-events.exp: python stop handler ran
PASS -> UNRESOLVED: gdb.python/py-mi-events.exp: register events
PASS -> FAIL: gdb.python/py-mi-var-info-path-expression.exp: -var-create c1 * &c1
PASS -> FAIL: gdb.python/py-mi-var-info-path-expression.exp: -var-info-path-expression c1
PASS -> FAIL: gdb.python/py-mi-var-info-path-expression.exp: -var-list-children c1
PASS -> FAIL: gdb.python/py-mi-var-info-path-expression.exp: -var-list-children c1.car
PASS -> FAIL: gdb.python/py-mi-var-info-path-expression.exp: -var-list-children c1.car.atom
PASS -> FAIL: gdb.python/py-mi-var-info-path-expression.exp: -var-list-children c1.cdr
PASS -> UNRESOLVED: gdb.python/py-mi-var-info-path-expression.exp: run to 61
new FAIL: gdb.python/py-mi-var-info-path-expression.exp: wait for stop
PASS -> FAIL: gdb.python/py-mi.exp: Install visualizer on a cplus_fake_child
PASS -> FAIL: gdb.python/py-mi.exp: check tsrvw expression value
PASS -> FAIL: gdb.python/py-mi.exp: check tsrvw varobj value
PASS -> FAIL: gdb.python/py-mi.exp: choose array visualizer for c
PASS -> FAIL: gdb.python/py-mi.exp: choose default visualizer
PASS -> FAIL: gdb.python/py-mi.exp: choose visualizer using expression
PASS -> FAIL: gdb.python/py-mi.exp: clear visualizer
PASS -> FAIL: gdb.python/py-mi.exp: create container varobj
PASS -> FAIL: gdb.python/py-mi.exp: create container varobj, no pretty-printing
PASS -> FAIL: gdb.python/py-mi.exp: create estring varobj
PASS -> FAIL: gdb.python/py-mi.exp: create fake varobj
PASS -> FAIL: gdb.python/py-mi.exp: create me varobj
PASS -> FAIL: gdb.python/py-mi.exp: create nscont varobj, no pretty-printing
PASS -> FAIL: gdb.python/py-mi.exp: create nstype varobj
PASS -> FAIL: gdb.python/py-mi.exp: create nstype2 varobj
PASS -> FAIL: gdb.python/py-mi.exp: create outer varobj
PASS -> FAIL: gdb.python/py-mi.exp: create second container varobj
PASS -> FAIL: gdb.python/py-mi.exp: create tsrvw varobj
PASS -> FAIL: gdb.python/py-mi.exp: create varobj for c
PASS -> FAIL: gdb.python/py-mi.exp: delete varobj
PASS -> FAIL: gdb.python/py-mi.exp: evaluate me varobj
PASS -> FAIL: gdb.python/py-mi.exp: examine container children=0
PASS -> FAIL: gdb.python/py-mi.exp: examine container children=0, no pretty-printing
PASS -> FAIL: gdb.python/py-mi.exp: examine nscont children=0, no pretty-printing
PASS -> FAIL: gdb.python/py-mi.exp: list children after listing selected range
PASS -> FAIL: gdb.python/py-mi.exp: list children after setting exception flag
PASS -> FAIL: gdb.python/py-mi.exp: list children after setting update range
PASS -> FAIL: gdb.python/py-mi.exp: list children fake.private
PASS -> FAIL: gdb.python/py-mi.exp: list children of c
PASS -> FAIL: gdb.python/py-mi.exp: list children of fake
PASS -> FAIL: gdb.python/py-mi.exp: list children of outer
PASS -> FAIL: gdb.python/py-mi.exp: list children of outer.s
PASS -> FAIL: gdb.python/py-mi.exp: list selected children after setting range
PASS -> FAIL: gdb.python/py-mi.exp: list varobj children after resetting child range
PASS -> FAIL: gdb.python/py-mi.exp: list varobj children after selecting child range
PASS -> FAIL: gdb.python/py-mi.exp: next over change of array element
PASS -> FAIL: gdb.python/py-mi.exp: next over outer update
PASS -> FAIL: gdb.python/py-mi.exp: next over update 1
PASS -> FAIL: gdb.python/py-mi.exp: next over update 2
PASS -> FAIL: gdb.python/py-mi.exp: next over update 3
PASS -> FAIL: gdb.python/py-mi.exp: next over update 4
PASS -> FAIL: gdb.python/py-mi.exp: next over update 5
PASS -> FAIL: gdb.python/py-mi.exp: next over update 6
PASS -> FAIL: gdb.python/py-mi.exp: printer whose children are returned as a list
PASS -> UNRESOLVED: gdb.python/py-mi.exp: run to 359
PASS -> UNRESOLVED: gdb.python/py-mi.exp: run to 382
PASS -> FAIL: gdb.python/py-mi.exp: set update range
PASS -> FAIL: gdb.python/py-mi.exp: set update range with non-zero start
PASS -> FAIL: gdb.python/py-mi.exp: update after next with restricted range
PASS -> FAIL: gdb.python/py-mi.exp: update after type change
PASS -> FAIL: gdb.python/py-mi.exp: update after updating element of outer
PASS -> FAIL: gdb.python/py-mi.exp: update string varobj after assignment
PASS -> FAIL: gdb.python/py-mi.exp: update varobj 2, no children requested
PASS -> FAIL: gdb.python/py-mi.exp: update varobj after element change
PASS -> FAIL: gdb.python/py-mi.exp: update varobj with change outside selected range
PASS -> FAIL: gdb.python/py-mi.exp: update varobj, no children requested
PASS -> FAIL: gdb.python/py-mi.exp: varobj update 1
PASS -> FAIL: gdb.python/py-mi.exp: varobj update 2
PASS -> FAIL: gdb.python/py-mi.exp: varobj update after choosing default
PASS -> FAIL: gdb.python/py-mi.exp: varobj update after choosing via expression
PASS -> FAIL: gdb.python/py-mi.exp: varobj update after clearing
new FAIL: gdb.python/py-mi.exp: wait for stop
new UNRESOLVED: gdb.python/py-objfile.exp: can't run to main
new UNRESOLVED: gdb.python/py-pp-maint.exp: can't run to main
new UNRESOLVED: gdb.python/py-pp-registration.exp: can't run to main
new UNRESOLVED: gdb.python/py-progspace.exp: can't run to main
new UNRESOLVED: gdb.python/py-rbreak.exp: can't run to main
new UNRESOLVED: gdb.python/py-record-full.exp: can't run to main
new UNRESOLVED: gdb.python/py-recurse-unwind.exp: can't run to main
new UNRESOLVED: gdb.python/py-rvalue-ref-value-cc.exp: couldn't run to main
new UNRESOLVED: gdb.python/py-shared.exp: can't run to main
new UNRESOLVED: gdb.python/py-symbol.exp: can't run to main
new UNRESOLVED: gdb.python/py-symtab.exp: can't run to main
PASS -> FAIL: gdb.python/py-thrhandle.exp: Pass overly large object to thread_from_handle
PASS -> FAIL: gdb.python/py-thrhandle.exp: Pass too small of an object to thread_from_handle
PASS -> FAIL: gdb.python/py-thrhandle.exp: TypeError when passing a symbol object to thread_from_handle
PASS -> UNRESOLVED: gdb.python/py-thrhandle.exp: breakpoint on after_mc_barrier
PASS -> FAIL: gdb.python/py-thrhandle.exp: info threads
PASS -> FAIL: gdb.python/py-thrhandle.exp: print thread id for thrs[0]
PASS -> FAIL: gdb.python/py-thrhandle.exp: print thread id for thrs[1]
PASS -> FAIL: gdb.python/py-thrhandle.exp: print thread id for thrs[2]
PASS -> FAIL: gdb.python/py-thrhandle.exp: run to after_mc_barrier
PASS -> FAIL: gdb.python/py-thrhandle.exp: run to do_something
PASS -> FAIL: gdb.python/py-thrhandle.exp: thread 0: fetch thread handle from thread
PASS -> FAIL: gdb.python/py-thrhandle.exp: thread 0: verify that handles are the same
PASS -> FAIL: gdb.python/py-thrhandle.exp: thread 1: fetch thread handle from thread
PASS -> FAIL: gdb.python/py-thrhandle.exp: thread 1: verify that handles are the same
PASS -> FAIL: gdb.python/py-thrhandle.exp: thread 2: fetch thread handle from thread
PASS -> FAIL: gdb.python/py-thrhandle.exp: thread 2: verify that handles are the same
PASS -> FAIL: gdb.python/py-type.exp: lang_c: continue to breakpoint: break to inspect struct and array.
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_enum: Check enum fields items list
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_enum: Check num fields iteration over values
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_enum: check enum field lookup by name
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_enum: check enum field[0] name
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_enum: check enum field[1]name
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_enum: check the number of enum fields
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_enum: check the number of type fields
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: Check fields items list
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: Check fields iteration over values
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: Check ss_fields[0].name
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: Check ss_fields[1].name
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: Check that dir includes name
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: cast to array with one argument
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: cast to array with two arguments
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: cast to vector with one argument
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: cast to vector with two arguments
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: check array field type
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: check field name exists test
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: check field name nonexists test
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: check fields lookup by name
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: check length of ss_fields
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: check number of fields
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: check structure field a name
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: check structure field b name
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: check the number of fields
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: check type.objfile
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: get fields from ss.type
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: get fields from st.type
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: init ss
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: python print
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: set vec1
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: set vec2
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: set vec3
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: continue to breakpoint: break to inspect struct and array.
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_base_class: check the number of fields
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_enum: Check enum fields items list
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_enum: Check num fields iteration over values
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_enum: check enum field lookup by name
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_enum: check enum field[0] name
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_enum: check enum field[1]name
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_enum: check the number of enum fields
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_enum: check the number of type fields
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: Check fields items list
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: Check fields iteration over values
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: Check ss_fields[0].name
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: Check ss_fields[1].name
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: Check that dir includes name
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: cast to array with one argument
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: cast to array with two arguments
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: cast to vector with one argument
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: cast to vector with two arguments
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: check array field type
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: check class field c name
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: check class field d name
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: check conversion to bool
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: check field name exists test
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: check field name nonexists test
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: check fields lookup by name
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: check length of ss_fields
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: check number of fields
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: check structure field a name
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: check structure field b name
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: check the number of fields
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: check type.objfile
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: get fields from c.type
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: get fields from ss.type
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: get fields from st.type
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: init ss
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: python print
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: set vec1
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: set vec2
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: set vec3
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_range: on ranged type: check range high bound
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_range: on ranged type: check range low bound
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_range: on ranged value: check correct tuple length
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_range: on ranged value: check range high bound
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_range: on ranged value: check range low bound
new UNRESOLVED: gdb.python/py-unwind-maint.exp: can't run to main
new UNRESOLVED: gdb.python/py-value.exp: can't run to main
new UNRESOLVED: gdb.python/python.exp: can't run to main
PASS -> FAIL: gdb.reverse/break-precsave.exp: continue to breakpoint: bar backward
PASS -> FAIL: gdb.reverse/break-precsave.exp: continue to breakpoint: bar forward after restore
PASS -> FAIL: gdb.reverse/break-precsave.exp: continue to breakpoint: bar forward again
PASS -> FAIL: gdb.reverse/break-precsave.exp: continue to breakpoint: foo backward
PASS -> FAIL: gdb.reverse/break-precsave.exp: continue to breakpoint: foo forward after restore
PASS -> FAIL: gdb.reverse/break-precsave.exp: continue to breakpoint: foo forward again
PASS -> FAIL: gdb.reverse/break-precsave.exp: end of record log
PASS -> FAIL: gdb.reverse/break-precsave.exp: go to end of main forward
PASS -> FAIL: gdb.reverse/break-precsave.exp: main backward
PASS -> FAIL: gdb.reverse/break-precsave.exp: reload precord save file
PASS -> FAIL: gdb.reverse/break-precsave.exp: run to end of main
PASS -> FAIL: gdb.reverse/break-precsave.exp: save process recfile
PASS -> FAIL: gdb.reverse/break-precsave.exp: set forward
PASS -> FAIL: gdb.reverse/break-precsave.exp: set reverse
PASS -> UNRESOLVED: gdb.reverse/break-precsave.exp: turn on process record
PASS -> FAIL: gdb.reverse/break-reverse.exp: continue to breakpoint: bar backward
PASS -> FAIL: gdb.reverse/break-reverse.exp: continue to breakpoint: bar forward again
PASS -> FAIL: gdb.reverse/break-reverse.exp: continue to breakpoint: bar forward, the first time
PASS -> FAIL: gdb.reverse/break-reverse.exp: continue to breakpoint: end forward, the first time
PASS -> FAIL: gdb.reverse/break-reverse.exp: continue to breakpoint: foo backward
PASS -> FAIL: gdb.reverse/break-reverse.exp: continue to breakpoint: foo forward again
PASS -> FAIL: gdb.reverse/break-reverse.exp: continue to breakpoint: foo forward, the first time
PASS -> FAIL: gdb.reverse/break-reverse.exp: end of record log
PASS -> FAIL: gdb.reverse/break-reverse.exp: main backward
PASS -> FAIL: gdb.reverse/break-reverse.exp: set forward
PASS -> FAIL: gdb.reverse/break-reverse.exp: set reverse
PASS -> UNRESOLVED: gdb.reverse/break-reverse.exp: turn on process record
PASS -> FAIL: gdb.reverse/consecutive-precsave.exp: continue to breakpoint in foo
PASS -> FAIL: gdb.reverse/consecutive-precsave.exp: get breakpoint address for foo
PASS -> FAIL: gdb.reverse/consecutive-precsave.exp: reload precord save file
PASS -> FAIL: gdb.reverse/consecutive-precsave.exp: run to end of main
PASS -> FAIL: gdb.reverse/consecutive-precsave.exp: save process recfile
PASS -> FAIL: gdb.reverse/consecutive-precsave.exp: set bp, 2nd instr
PASS -> FAIL: gdb.reverse/consecutive-precsave.exp: set reverse execution
PASS -> FAIL: gdb.reverse/consecutive-precsave.exp: stopped at bp in reverse, 1st instr
PASS -> FAIL: gdb.reverse/consecutive-precsave.exp: stopped at bp, 2nd instr
PASS -> UNRESOLVED: gdb.reverse/consecutive-precsave.exp: turn on process record
PASS -> FAIL: gdb.reverse/consecutive-reverse.exp: continue to breakpoint in foo
PASS -> FAIL: gdb.reverse/consecutive-reverse.exp: get breakpoint address for foo
PASS -> FAIL: gdb.reverse/consecutive-reverse.exp: set bp, 2nd instr
PASS -> FAIL: gdb.reverse/consecutive-reverse.exp: set reverse execution
PASS -> FAIL: gdb.reverse/consecutive-reverse.exp: stopped at bp in reverse, 1st instr
PASS -> FAIL: gdb.reverse/consecutive-reverse.exp: stopped at bp, 2nd instr
PASS -> UNRESOLVED: gdb.reverse/consecutive-reverse.exp: turn on process record
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func backward
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func backward
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func backward
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_long_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_long_func backward
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func backward
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func backward
PASS -> FAIL: gdb.reverse/finish-precsave.exp: finish from char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: finish from int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: finish from long_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: finish from long_long_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: finish from short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: finish from void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: reload precord save file
PASS -> FAIL: gdb.reverse/finish-precsave.exp: reverse finish from char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: reverse finish from int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: reverse finish from long_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: reverse finish from long_long_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: reverse finish from short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: reverse finish from void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: run to end of main
PASS -> FAIL: gdb.reverse/finish-precsave.exp: save process recfile
PASS -> FAIL: gdb.reverse/finish-precsave.exp: set reverse execution
PASS -> UNRESOLVED: gdb.reverse/finish-precsave.exp: turn on process record
new UNRESOLVED: gdb.reverse/finish-reverse-bkpt.exp: can't run to main
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func backward
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func backward
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func backward
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_long_func backward
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func backward
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func backward
PASS -> FAIL: gdb.reverse/finish-reverse.exp: finish from char_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: finish from int_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: finish from long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: finish from long_long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: finish from short_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: finish from void_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: reverse finish from char_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: reverse finish from int_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: reverse finish from long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: reverse finish from long_long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: reverse finish from short_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: reverse finish from void_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: set reverse execution
PASS -> UNRESOLVED: gdb.reverse/finish-reverse.exp: turn on process record
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: continue to breakpoint: marker2
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: reverse to marker1
PASS -> UNRESOLVED: gdb.reverse/fstatat-reverse.exp: turn on process record
PASS -> FAIL: gdb.reverse/getresuid-reverse.exp: continue to breakpoint: marker2
PASS -> FAIL: gdb.reverse/getresuid-reverse.exp: reverse to marker1
PASS -> UNRESOLVED: gdb.reverse/getresuid-reverse.exp: turn on process record
new UNRESOLVED: gdb.reverse/insn-reverse.exp: run to main
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: auto var forward
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: auto var forward step-to
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: auto var forward-breakpoint
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: auto var reverse-breakpoint
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: auto var reverse-step
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: auto var step post-change
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: forward to 33
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: forward to 45
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: forward to 57
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: forward to 71
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: forward to 85
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: function static forward
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: function static forward step-to
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: function static forward-breakpoint
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: function static reverse-breakpoint
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: function static reverse-step
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: function static step post-change
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: go to end of main forward
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: module global forward past bp
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: module global step post-change
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: module static forward
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: module static step post-change
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: register var forward step-to
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: register var forward-breakpoint
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: register var reverse step-to
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: register var reverse-breakpoint
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: register var step post-change, first time
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: register var step post-change, second time
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: reload prec save file
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: reverse to 33
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: reverse to 45
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: reverse to 57
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: reverse to 71
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: reverse to 85
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: reverse to main
new FAIL: gdb.reverse/machinestate-precsave.exp: reverse-step
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: run to end of main
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: save process recfile
new FAIL: gdb.reverse/machinestate-precsave.exp: step
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: turn on process record
PASS -> FAIL: gdb.reverse/machinestate.exp: auto var forward
PASS -> FAIL: gdb.reverse/machinestate.exp: auto var forward step-to
PASS -> FAIL: gdb.reverse/machinestate.exp: auto var forward-breakpoint
PASS -> FAIL: gdb.reverse/machinestate.exp: auto var reverse-breakpoint
PASS -> FAIL: gdb.reverse/machinestate.exp: auto var reverse-step
PASS -> FAIL: gdb.reverse/machinestate.exp: auto var step post-change
PASS -> FAIL: gdb.reverse/machinestate.exp: continue to breakpoint: end of main
PASS -> FAIL: gdb.reverse/machinestate.exp: forward to 33
PASS -> FAIL: gdb.reverse/machinestate.exp: forward to 45
PASS -> FAIL: gdb.reverse/machinestate.exp: forward to 57
PASS -> FAIL: gdb.reverse/machinestate.exp: forward to 71
PASS -> FAIL: gdb.reverse/machinestate.exp: forward to 85
PASS -> FAIL: gdb.reverse/machinestate.exp: function static forward
PASS -> FAIL: gdb.reverse/machinestate.exp: function static forward step-to
PASS -> FAIL: gdb.reverse/machinestate.exp: function static forward-breakpoint
PASS -> FAIL: gdb.reverse/machinestate.exp: function static reverse-breakpoint
PASS -> FAIL: gdb.reverse/machinestate.exp: function static reverse-step
PASS -> FAIL: gdb.reverse/machinestate.exp: function static step post-change
PASS -> FAIL: gdb.reverse/machinestate.exp: module global forward past bp
PASS -> FAIL: gdb.reverse/machinestate.exp: module global step post-change
PASS -> FAIL: gdb.reverse/machinestate.exp: module static forward
PASS -> FAIL: gdb.reverse/machinestate.exp: module static step post-change
PASS -> FAIL: gdb.reverse/machinestate.exp: register var forward step-to
PASS -> FAIL: gdb.reverse/machinestate.exp: register var forward-breakpoint
PASS -> FAIL: gdb.reverse/machinestate.exp: register var reverse step-to, first time
PASS -> FAIL: gdb.reverse/machinestate.exp: register var reverse-breakpoint
PASS -> FAIL: gdb.reverse/machinestate.exp: register var step post-change
PASS -> FAIL: gdb.reverse/machinestate.exp: register var step post-change, second time
PASS -> FAIL: gdb.reverse/machinestate.exp: reverse to 33
PASS -> FAIL: gdb.reverse/machinestate.exp: reverse to 45
PASS -> FAIL: gdb.reverse/machinestate.exp: reverse to 57
PASS -> FAIL: gdb.reverse/machinestate.exp: reverse to 71
PASS -> FAIL: gdb.reverse/machinestate.exp: reverse to 85
PASS -> FAIL: gdb.reverse/machinestate.exp: reverse to main
new FAIL: gdb.reverse/machinestate.exp: reverse-step
new FAIL: gdb.reverse/machinestate.exp: step
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: turn on process record
new UNRESOLVED: gdb.reverse/next-reverse-bkpt-over-sr.exp: can't run to main
PASS -> FAIL: gdb.reverse/pipe-reverse.exp: continue to breakpoint: marker2
PASS -> FAIL: gdb.reverse/pipe-reverse.exp: reverse to marker1
PASS -> UNRESOLVED: gdb.reverse/pipe-reverse.exp: turn on process record
PASS -> FAIL: gdb.reverse/readv-reverse.exp: continue to breakpoint: marker2
PASS -> FAIL: gdb.reverse/readv-reverse.exp: reverse to marker1
PASS -> UNRESOLVED: gdb.reverse/readv-reverse.exp: turn on process record
PASS -> FAIL: gdb.reverse/recvmsg-reverse.exp: continue to breakpoint: marker2
PASS -> FAIL: gdb.reverse/recvmsg-reverse.exp: reverse to marker1
PASS -> UNRESOLVED: gdb.reverse/recvmsg-reverse.exp: turn on process record
PASS -> UNRESOLVED: gdb.reverse/rerun-prec.exp: restarting inferior
PASS -> UNRESOLVED: gdb.reverse/rerun-prec.exp: turn on process record
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: continue to sigall exit
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: get signal TERM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reload precord save file
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_33
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_34
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_35
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_36
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_37
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_38
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_39
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_40
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_41
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_42
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_43
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_44
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_45
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_46
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_47
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_48
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_49
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_50
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_51
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_52
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_53
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_54
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_55
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_56
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_57
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_58
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_59
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_60
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_61
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_62
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_63
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_ABRT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_ALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_BUS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_CHLD
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_CONT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_DANGER
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_EMT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_FPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_GRANT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_HUP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_ILL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_IO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_LOST
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_LWP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_MSG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_PHONE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_PIPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_POLL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_PRIO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_PROF
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_PWR
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_QUIT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_RETRACT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_SAK
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_SEGV
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_SOUND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_SYS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_TERM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_TSTP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_TTIN
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_TTOU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_URG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_USR1
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_USR2
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_VTALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_WAITING
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_WINCH
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_WIND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_XCPU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_XFSZ
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 33
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 34
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 35
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 36
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 37
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 38
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 39
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 40
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 41
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 42
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 43
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 44
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 45
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 46
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 47
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 48
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 49
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 50
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 51
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 52
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 53
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 54
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 55
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 56
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 57
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 58
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 59
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 60
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 61
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 62
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 63
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of ABRT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of ALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of BUS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of CHLD
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of CONT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of DANGER
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of EMT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of FPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of GRANT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of HUP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of ILL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of IO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of LOST
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of LWP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of MSG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of PHONE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of PIPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of POLL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of PRIO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of PROF
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of PWR
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of QUIT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of RETRACT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of SAK
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of SEGV
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of SOUND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of SYS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of TERM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of TSTP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of TTIN
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of TTOU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of URG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of USR1
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of USR2
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of VTALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of WAITING
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of WINCH
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of WIND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of XCPU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of XFSZ
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: run to end of main
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: save process recfile
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal TERM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 33
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 34
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 35
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 36
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 37
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 38
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 39
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 40
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 41
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 42
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 43
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 44
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 45
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 46
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 47
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 48
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 49
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 50
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 51
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 52
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 53
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 54
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 55
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 56
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 57
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 58
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 59
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 60
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 61
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 62
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 63
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to ALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to BUS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to CHLD
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to CONT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to DANGER
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to EMT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to FPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to GRANT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to HUP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to ILL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to IO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to LOST
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to LWP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to MSG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to PHONE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to PIPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to POLL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to PRIO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to PROF
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to PWR
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to QUIT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to RETRACT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to SAK
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to SEGV
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to SOUND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to SYS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to TERM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to TSTP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to TTIN
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to TTOU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to URG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to USR1
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to USR2
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to VTALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to WAITING
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to WINCH
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to WIND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to XCPU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to XFSZ
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 33
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 34
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 35
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 36
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 37
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 38
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 39
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 40
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 41
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 42
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 43
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 44
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 45
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 46
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 47
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 48
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 49
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 50
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 51
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 52
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 53
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 54
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 55
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 56
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 57
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 58
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 59
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 60
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 61
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 62
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 63
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal ABRT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal ALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal BUS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal CHLD
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal CONT
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal DANGER
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal EMT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal FPE
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal GRANT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal HUP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal ILL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal IO
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal LOST
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal LWP
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal MSG
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal PHONE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal PIPE
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal POLL
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal PRIO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal PROF
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal PWR
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal QUIT
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal RETRACT
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal SAK
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal SEGV
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal SOUND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal SYS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal TSTP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal TTIN
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal TTOU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal URG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal USR1
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal USR2
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal VTALRM
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal WAITING
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal WINCH
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal WIND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal XCPU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal XFSZ
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 33
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 34
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 35
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 36
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 37
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 38
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 39
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 40
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 41
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 42
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 43
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 44
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 45
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 46
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 47
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 48
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 49
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 50
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 51
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 52
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 53
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 54
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 55
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 56
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 57
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 58
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 59
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 60
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 61
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 62
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 63
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal ABRT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal ALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal BUS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal CHLD
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal CONT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal DANGER
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal EMT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal FPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal GRANT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal HUP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal ILL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal IO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal LOST
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal LWP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal MSG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal PHONE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal PIPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal POLL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal PRIO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal PROF
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal PWR
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal QUIT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal RETRACT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal SAK
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal SEGV
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal SOUND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal SYS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal TSTP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal TTIN
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal TTOU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal URG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal USR1
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal USR2
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal VTALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal WAITING
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal WINCH
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal WIND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal XCPU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal XFSZ
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 33
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 34
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 35
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 36
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 37
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 38
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 39
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 40
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 41
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 42
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 43
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 44
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 45
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 46
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 47
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 48
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 49
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 50
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 51
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 52
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 53
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 54
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 55
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 56
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 57
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 58
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 59
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 60
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 61
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 62
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 63
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to ALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to BUS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to CHLD
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to CONT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to DANGER
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to EMT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to FPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to GRANT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to HUP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to ILL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to IO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to LOST
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to LWP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to MSG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to PHONE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to PIPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to POLL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to PRIO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to PROF
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to PWR
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to QUIT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to RETRACT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to SAK
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to SEGV
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to SOUND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to SYS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to TERM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to TSTP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to TTIN
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to TTOU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to URG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to USR1
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to USR2
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to VTALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to WAITING
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to WINCH
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to WIND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to XCPU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to XFSZ
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 33
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 34
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 35
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 36
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 37
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 38
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 39
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 40
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 41
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 42
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 43
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 44
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 45
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 46
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 47
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 48
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 49
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 50
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 51
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 52
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 53
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 54
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 55
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 56
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 57
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 58
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 59
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 60
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 61
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 62
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 63
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal ABRT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal ALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal BUS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal CHLD
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal CONT
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal DANGER
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal EMT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal FPE
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal GRANT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal HUP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal ILL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal IO
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal LOST
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal LWP
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal MSG
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal PHONE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal PIPE
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal POLL
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal PRIO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal PROF
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal PWR
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal QUIT
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal RETRACT
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal SAK
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal SEGV
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal SOUND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal SYS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal TSTP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal TTIN
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal TTOU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal URG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal USR1
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal USR2
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal VTALRM
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal WAITING
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal WINCH
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal WIND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal XCPU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal XFSZ
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 33
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 34
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 35
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 36
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 37
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 38
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 39
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 40
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 41
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 42
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 43
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 44
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 45
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 46
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 47
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 48
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 49
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 50
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 51
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 52
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 53
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 54
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 55
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 56
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 57
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 58
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 59
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 60
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 61
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 62
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 63
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal ABRT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal ALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal BUS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal CHLD
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal CONT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal DANGER
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal EMT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal FPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal GRANT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal HUP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal ILL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal IO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal LOST
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal LWP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal MSG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal PHONE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal PIPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal POLL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal PRIO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal PROF
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal PWR
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal QUIT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal RETRACT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal SAK
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal SEGV
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal SOUND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal SYS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal TSTP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal TTIN
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal TTOU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal URG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal USR1
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal USR2
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal VTALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal WAITING
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal WINCH
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal WIND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal XCPU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal XFSZ
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: turn on process record
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: get signal TERM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_33
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_34
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_35
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_36
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_37
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_38
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_39
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_40
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_41
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_42
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_43
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_44
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_45
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_46
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_47
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_48
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_49
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_50
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_51
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_52
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_53
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_54
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_55
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_56
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_57
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_58
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_59
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_60
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_61
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_62
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_63
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_ABRT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_ALRM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_BUS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_CHLD
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_CONT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_DANGER
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_EMT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_FPE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_GRANT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_HUP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_ILL
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_IO
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_LOST
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_LWP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_MSG
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_PHONE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_PIPE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_POLL
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_PRIO
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_PROF
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_PWR
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_QUIT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_RETRACT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_SAK
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_SEGV
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_SOUND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_SYS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_TERM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_TSTP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_TTIN
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_TTOU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_URG
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_USR1
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_USR2
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_VTALRM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_WAITING
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_WINCH
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_WIND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_XCPU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_XFSZ
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 33
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 34
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 35
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 36
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 37
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 38
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 39
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 40
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 41
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 42
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 43
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 44
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 45
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 46
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 47
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 48
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 49
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 50
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 51
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 52
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 53
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 54
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 55
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 56
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 57
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 58
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 59
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 60
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 61
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 62
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 63
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of ABRT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of ALRM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of BUS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of CHLD
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of CONT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of DANGER
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of EMT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of FPE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of GRANT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of HUP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of ILL
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of IO
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of LOST
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of LWP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of MSG
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of PHONE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of PIPE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of POLL
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of PRIO
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of PROF
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of PWR
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of QUIT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of RETRACT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of SAK
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of SEGV
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of SOUND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of SYS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of TERM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of TSTP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of TTIN
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of TTOU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of URG
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of USR1
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of USR2
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of VTALRM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of WAITING
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of WINCH
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of WIND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of XCPU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of XFSZ
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: send signal TERM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 33
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 34
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 35
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 36
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 37
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 38
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 39
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 40
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 41
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 42
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 43
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 44
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 45
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 46
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 47
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 48
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 49
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 50
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 51
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 52
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 53
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 54
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 55
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 56
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 57
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 58
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 59
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 60
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 61
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 62
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 63
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to ALRM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to BUS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to CHLD
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to CONT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to DANGER
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to EMT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to FPE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to GRANT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to HUP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to ILL
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to IO
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to LOST
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to LWP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to MSG
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to PHONE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to PIPE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to POLL
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to PRIO
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to PROF
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to PWR
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to QUIT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to RETRACT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to SAK
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to SEGV
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to SOUND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to SYS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to TERM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to TSTP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to TTIN
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to TTOU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to URG
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to USR1
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to USR2
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to VTALRM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to WAITING
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to WINCH
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to WIND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to XCPU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to XFSZ
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 33
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 34
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 35
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 36
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 37
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 38
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 39
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 40
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 41
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 42
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 43
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 44
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 45
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 46
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 47
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 48
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 49
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 50
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 51
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 52
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 53
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 54
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 55
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 56
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 57
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 58
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 59
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 60
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 61
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 62
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 63
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal ABRT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal ALRM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal BUS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal CHLD
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal CONT
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal DANGER
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal EMT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal FPE
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal GRANT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal HUP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal ILL
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal IO
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal LOST
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal LWP
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal MSG
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal PHONE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal PIPE
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal POLL
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal PRIO
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal PROF
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal PWR
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal QUIT
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal RETRACT
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal SAK
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal SEGV
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal SOUND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal SYS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal TSTP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal TTIN
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal TTOU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal URG
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal USR1
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal USR2
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal VTALRM
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal WAITING
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal WINCH
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal WIND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal XCPU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal XFSZ
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 33
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 34
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 35
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 36
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 37
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 38
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 39
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 40
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 41
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 42
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 43
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 44
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 45
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 46
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 47
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 48
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 49
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 50
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 51
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 52
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 53
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 54
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 55
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 56
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 57
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 58
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 59
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 60
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 61
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 62
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 63
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal ABRT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal ALRM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal BUS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal CHLD
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal CONT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal DANGER
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal EMT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal FPE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal GRANT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal HUP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal ILL
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal IO
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal LOST
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal LWP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal MSG
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal PHONE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal PIPE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal POLL
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal PRIO
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal PROF
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal PWR
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal QUIT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal RETRACT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal SAK
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal SEGV
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal SOUND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal SYS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal TSTP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal TTIN
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal TTOU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal URG
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal USR1
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal USR2
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal VTALRM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal WAITING
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal WINCH
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal WIND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal XCPU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal XFSZ
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 33
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 34
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 35
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 36
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 37
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 38
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 39
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 40
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 41
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 42
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 43
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 44
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 45
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 46
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 47
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 48
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 49
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 50
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 51
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 52
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 53
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 54
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 55
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 56
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 57
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 58
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 59
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 60
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 61
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 62
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 63
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to ALRM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to BUS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to CHLD
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to CONT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to DANGER
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to EMT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to FPE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to GRANT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to HUP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to ILL
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to IO
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to LOST
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to LWP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to MSG
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to PHONE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to PIPE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to POLL
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to PRIO
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to PROF
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to PWR
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to QUIT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to RETRACT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to SAK
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to SEGV
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to SOUND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to SYS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to TERM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to TSTP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to TTIN
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to TTOU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to URG
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to USR1
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to USR2
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to VTALRM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to WAITING
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to WINCH
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to WIND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to XCPU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to XFSZ
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 33
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 34
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 35
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 36
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 37
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 38
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 39
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 40
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 41
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 42
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 43
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 44
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 45
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 46
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 47
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 48
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 49
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 50
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 51
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 52
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 53
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 54
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 55
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 56
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 57
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 58
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 59
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 60
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 61
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 62
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 63
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal ABRT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal ALRM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal BUS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal CHLD
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal CONT
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal DANGER
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal EMT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal FPE
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal GRANT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal HUP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal ILL
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal IO
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal LOST
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal LWP
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal MSG
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal PHONE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal PIPE
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal POLL
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal PRIO
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal PROF
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal PWR
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal QUIT
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal RETRACT
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal SAK
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal SEGV
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal SOUND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal SYS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal TSTP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal TTIN
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal TTOU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal URG
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal USR1
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal USR2
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal VTALRM
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal WAITING
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal WINCH
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal WIND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal XCPU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal XFSZ
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 33
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 34
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 35
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 36
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 37
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 38
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 39
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 40
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 41
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 42
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 43
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 44
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 45
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 46
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 47
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 48
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 49
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 50
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 51
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 52
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 53
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 54
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 55
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 56
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 57
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 58
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 59
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 60
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 61
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 62
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 63
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal ABRT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal ALRM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal BUS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal CHLD
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal CONT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal DANGER
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal EMT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal FPE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal GRANT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal HUP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal ILL
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal IO
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal LOST
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal LWP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal MSG
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal PHONE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal PIPE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal POLL
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal PRIO
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal PROF
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal PWR
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal QUIT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal RETRACT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal SAK
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal SEGV
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal SOUND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal SYS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal TSTP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal TTIN
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal TTOU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal URG
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal USR1
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal USR2
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal VTALRM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal WAITING
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal WINCH
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal WIND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal XCPU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal XFSZ
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: turn on process record
PASS -> FAIL: gdb.reverse/solib-precsave.exp: forward to end part one
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reload core file
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-next first shr1
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-next generic
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-next over solib function one
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-next over solib function two
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-next second shr1
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-next third shr1
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step back to main one
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step back to main two
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step first shr1
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step generic
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step into solib function one
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step into solib function two
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step second shr1
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step third shr1
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step within solib function one
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step within solib function two
PASS -> FAIL: gdb.reverse/solib-precsave.exp: run to end of main
PASS -> FAIL: gdb.reverse/solib-precsave.exp: run until end part one
PASS -> FAIL: gdb.reverse/solib-precsave.exp: run until end part two
PASS -> FAIL: gdb.reverse/solib-precsave.exp: save process recfile
PASS -> UNRESOLVED: gdb.reverse/solib-precsave.exp: turn on process record
PASS -> FAIL: gdb.reverse/solib-reverse.exp: forward to end part one
PASS -> FAIL: gdb.reverse/solib-reverse.exp: reverse-next first shr1
PASS -> FAIL: gdb.reverse/solib-reverse.exp: reverse-next generic
PASS -> FAIL: gdb.reverse/solib-reverse.exp: reverse-next over solib function one
PASS -> FAIL: gdb.reverse/solib-reverse.exp: reverse-next over solib function two
PASS -> FAIL: gdb.reverse/solib-reverse.exp: reverse-next second shr1
PASS -> FAIL: gdb.reverse/solib-reverse.exp: reverse-next third shr1
PASS -> FAIL: gdb.reverse/solib-reverse.exp: reverse-step back to main one
PASS -> FAIL: gdb.reverse/solib-reverse.exp: reverse-step back to main two
PASS -> FAIL: gdb.reverse/solib-reverse.exp: reverse-step first shr1
PASS -> FAIL: gdb.reverse/solib-reverse.exp: reverse-step generic
PASS -> FAIL: gdb.reverse/solib-reverse.exp: reverse-step into solib function one
PASS -> FAIL: gdb.reverse/solib-reverse.exp: reverse-step into solib function two
PASS -> FAIL: gdb.reverse/solib-reverse.exp: reverse-step second shr1
PASS -> FAIL: gdb.reverse/solib-reverse.exp: reverse-step third shr1
PASS -> FAIL: gdb.reverse/solib-reverse.exp: reverse-step within solib function one
PASS -> FAIL: gdb.reverse/solib-reverse.exp: reverse-step within solib function two
PASS -> FAIL: gdb.reverse/solib-reverse.exp: run until end part one
PASS -> FAIL: gdb.reverse/solib-reverse.exp: run until end part two
PASS -> UNRESOLVED: gdb.reverse/solib-reverse.exp: turn on process record
PASS -> FAIL: gdb.reverse/step-precsave.exp: finish out of fn call
PASS -> FAIL: gdb.reverse/step-precsave.exp: next over call
PASS -> FAIL: gdb.reverse/step-precsave.exp: next test 1
PASS -> FAIL: gdb.reverse/step-precsave.exp: next test 2
PASS -> FAIL: gdb.reverse/step-precsave.exp: reload core file
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse next over call
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse next test 1
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse next test 2
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse step into fn call
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse step out of called fn
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse step test 1
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse step test 2
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse stepi from a function call
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse stepi thru function return
PASS -> FAIL: gdb.reverse/step-precsave.exp: run to end of main
PASS -> FAIL: gdb.reverse/step-precsave.exp: save process recfile
PASS -> FAIL: gdb.reverse/step-precsave.exp: set reverse execution
PASS -> FAIL: gdb.reverse/step-precsave.exp: simple reverse stepi
PASS -> FAIL: gdb.reverse/step-precsave.exp: simple stepi
PASS -> FAIL: gdb.reverse/step-precsave.exp: step into call
PASS -> FAIL: gdb.reverse/step-precsave.exp: step test 1
PASS -> FAIL: gdb.reverse/step-precsave.exp: step test 2
PASS -> FAIL: gdb.reverse/step-precsave.exp: step up to call
PASS -> FAIL: gdb.reverse/step-precsave.exp: stepi back from function call
PASS -> FAIL: gdb.reverse/step-precsave.exp: stepi into function call
PASS -> UNRESOLVED: gdb.reverse/step-precsave.exp: turn on process record
PASS -> FAIL: gdb.reverse/step-reverse.exp: finish out of fn call
PASS -> FAIL: gdb.reverse/step-reverse.exp: next over call
PASS -> FAIL: gdb.reverse/step-reverse.exp: next test 1
PASS -> FAIL: gdb.reverse/step-reverse.exp: next test 2
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse next over call
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse next test 1
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse next test 2
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse step into fn call
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse step out of called fn
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse step test 1
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse step test 2
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse stepi from a function call
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse stepi thru function return
PASS -> FAIL: gdb.reverse/step-reverse.exp: set reverse execution
PASS -> FAIL: gdb.reverse/step-reverse.exp: simple reverse stepi
PASS -> FAIL: gdb.reverse/step-reverse.exp: simple stepi
PASS -> FAIL: gdb.reverse/step-reverse.exp: step into call
PASS -> FAIL: gdb.reverse/step-reverse.exp: step test 1
PASS -> FAIL: gdb.reverse/step-reverse.exp: step test 2
PASS -> FAIL: gdb.reverse/step-reverse.exp: step up to call
PASS -> FAIL: gdb.reverse/step-reverse.exp: stepi back from function call
PASS -> FAIL: gdb.reverse/step-reverse.exp: stepi into function call
PASS -> UNRESOLVED: gdb.reverse/step-reverse.exp: turn on process record
PASS -> FAIL: gdb.reverse/until-precsave.exp: advance to factorial
PASS -> FAIL: gdb.reverse/until-precsave.exp: advance to marker2
PASS -> FAIL: gdb.reverse/until-precsave.exp: finish to main
PASS -> FAIL: gdb.reverse/until-precsave.exp: reload core file
PASS -> FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial
PASS -> FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2
PASS -> FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2
PASS -> FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial
PASS -> FAIL: gdb.reverse/until-precsave.exp: run to end of main
PASS -> FAIL: gdb.reverse/until-precsave.exp: save process recfile
PASS -> FAIL: gdb.reverse/until-precsave.exp: set reverse execution
PASS -> UNRESOLVED: gdb.reverse/until-precsave.exp: turn on process record
PASS -> FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function
PASS -> FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame
PASS -> FAIL: gdb.reverse/until-precsave.exp: until line number
PASS -> FAIL: gdb.reverse/until-reverse.exp: advance factorial
PASS -> FAIL: gdb.reverse/until-reverse.exp: advance to marker2
PASS -> FAIL: gdb.reverse/until-reverse.exp: finish to main
PASS -> FAIL: gdb.reverse/until-reverse.exp: reverse-advance to final return of factorial
PASS -> FAIL: gdb.reverse/until-reverse.exp: reverse-advance to marker2
PASS -> FAIL: gdb.reverse/until-reverse.exp: reverse-finish from marker2
PASS -> FAIL: gdb.reverse/until-reverse.exp: reverse-until to entry of factorial
PASS -> FAIL: gdb.reverse/until-reverse.exp: set reverse execution
PASS -> UNRESOLVED: gdb.reverse/until-reverse.exp: turn on process record
PASS -> FAIL: gdb.reverse/until-reverse.exp: until factorial, recursive function
PASS -> FAIL: gdb.reverse/until-reverse.exp: until func, not called by current frame
PASS -> FAIL: gdb.reverse/until-reverse.exp: until line number
PASS -> FAIL: gdb.reverse/waitpid-reverse.exp: continue to breakpoint: marker2
PASS -> FAIL: gdb.reverse/waitpid-reverse.exp: reverse to marker1
PASS -> UNRESOLVED: gdb.reverse/waitpid-reverse.exp: turn on process record
PASS -> FAIL: gdb.reverse/watch-precsave.exp: continue to breakpoint: marker1
PASS -> FAIL: gdb.reverse/watch-precsave.exp: continue to breakpoint: marker2
PASS -> FAIL: gdb.reverse/watch-precsave.exp: reload core file
PASS -> FAIL: gdb.reverse/watch-precsave.exp: replay forward to marker2
PASS -> FAIL: gdb.reverse/watch-precsave.exp: run to end of main
PASS -> FAIL: gdb.reverse/watch-precsave.exp: save process recfile
PASS -> FAIL: gdb.reverse/watch-precsave.exp: set forward
PASS -> FAIL: gdb.reverse/watch-precsave.exp: set reverse, first time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: set reverse, second time
PASS -> UNRESOLVED: gdb.reverse/watch-precsave.exp: turn on process record
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, HW, fifth time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, HW, first time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, HW, fourth time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, HW, second time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, HW, third time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, fifth time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, first time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, fourth time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, second time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, third time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, first time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, forward replay, fifth time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, forward replay, first time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, forward replay, fourth time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, forward replay, second time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, forward replay, third time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, second time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, third time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: continue to breakpoint: marker1
PASS -> FAIL: gdb.reverse/watch-reverse.exp: continue to breakpoint: marker2
PASS -> FAIL: gdb.reverse/watch-reverse.exp: replay forward to marker2
PASS -> FAIL: gdb.reverse/watch-reverse.exp: set forward
PASS -> FAIL: gdb.reverse/watch-reverse.exp: set reverse, first time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: set reverse, second time
PASS -> UNRESOLVED: gdb.reverse/watch-reverse.exp: turn on process record
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, HW, fifth time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, HW, first time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, HW, fourth time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, HW, second time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, HW, third time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, fifth time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, first time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, fourth time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, second time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, third time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, first time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, forward replay, fifth time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, forward replay, first time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, forward replay, fourth time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, forward replay, second time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, forward replay, third time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, second time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, third time
PASS -> UNRESOLVED: gdb.server/ext-restart.exp: set remote exec-file
PASS -> UNRESOLVED: gdb.server/ext-run.exp: set remote exec-file
PASS -> UNRESOLVED: gdb.server/ext-wrapper.exp: set remote exec-file
PASS -> FAIL: gdb.server/file-transfer.exp: compare binary file
PASS -> FAIL: gdb.server/file-transfer.exp: compare intermediate binary file
PASS -> FAIL: gdb.server/file-transfer.exp: compare intermediate text file
PASS -> FAIL: gdb.server/file-transfer.exp: compare text file
PASS -> FAIL: gdb.server/file-transfer.exp: deleted binary file
PASS -> FAIL: gdb.server/file-transfer.exp: deleted text file
PASS -> FAIL: gdb.server/file-transfer.exp: get binary file
PASS -> FAIL: gdb.server/file-transfer.exp: get text file
PASS -> UNRESOLVED: gdb.server/file-transfer.exp: put binary file
PASS -> FAIL: gdb.server/file-transfer.exp: put text file
PASS -> FAIL: gdb.server/no-thread-db.exp: continue to breakpoint: after tls assignment
PASS -> UNRESOLVED: gdb.server/no-thread-db.exp: libthread-db is now unresolvable
PASS -> FAIL: gdb.server/no-thread-db.exp: print foo
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
new FAIL: gdb.server/server-connect.exp: tcp4: start gdbserver: Timeout waiting for gdbserver response.
new FAIL: gdb.server/server-connect.exp: tcp6-with-brackets: start gdbserver: Timeout waiting for gdbserver response.
new FAIL: gdb.server/server-connect.exp: tcp6: start gdbserver: Timeout waiting for gdbserver response.
new FAIL: gdb.server/server-connect.exp: tcp: start gdbserver: Timeout waiting for gdbserver response.
new FAIL: gdb.server/server-connect.exp: udp4: start gdbserver: Timeout waiting for gdbserver response.
new FAIL: gdb.server/server-connect.exp: udp6-with-brackets: start gdbserver: Timeout waiting for gdbserver response.
new FAIL: gdb.server/server-connect.exp: udp6: start gdbserver: Timeout waiting for gdbserver response.
PASS -> FAIL: gdb.server/server-exec-info.exp: info files
PASS -> UNRESOLVED: gdb.server/server-exec-info.exp: set sysroot remote:
PASS -> UNRESOLVED: gdb.server/server-kill.exp: continue to breakpoint: after server_pid assignment
PASS -> FAIL: gdb.server/server-kill.exp: tstatus
PASS -> FAIL: gdb.server/server-mon.exp: monitor
PASS -> UNRESOLVED: gdb.server/server-mon.exp: monitor help
PASS -> FAIL: gdb.server/server-mon.exp: monitor set debug 0
PASS -> FAIL: gdb.server/server-mon.exp: monitor set debug 1
PASS -> FAIL: gdb.server/server-mon.exp: monitor set debug-format all
PASS -> FAIL: gdb.server/server-mon.exp: monitor set debug-format none
PASS -> FAIL: gdb.server/server-mon.exp: monitor set remote-debug 0
PASS -> FAIL: gdb.server/server-mon.exp: monitor set remote-debug 1
PASS -> FAIL: gdb.server/server-run.exp: continue to main
PASS -> UNRESOLVED: gdb.server/server-run.exp: loaded dynamic linker
PASS -> FAIL: gdb.server/unittest.exp: unit tests
new UNRESOLVED: gdb.stabs/gdb11479.exp: can't run to main natural_debug_format
new UNRESOLVED: gdb.threads/async.exp: thread 1: could not run to all_started
new UNRESOLVED: gdb.threads/async.exp: thread 2: could not run to all_started
new UNRESOLVED: gdb.threads/async.exp: thread 3: could not run to all_started
PASS -> UNRESOLVED: gdb.threads/bp_in_thread.exp: breakpoint on noreturn
PASS -> FAIL: gdb.threads/bp_in_thread.exp: run to noreturn
PASS -> UNRESOLVED: gdb.threads/break-while-running.exp: w/ithr: always-inserted off: non-stop: set non-stop on
PASS -> UNRESOLVED: gdb.threads/break-while-running.exp: w/ithr: always-inserted on: all-stop: set non-stop off
PASS -> UNRESOLVED: gdb.threads/break-while-running.exp: w/ithr: always-inserted on: non-stop: set non-stop on
PASS -> UNRESOLVED: gdb.threads/break-while-running.exp: wo/ithr: always-inserted off: all-stop: set non-stop off
PASS -> UNRESOLVED: gdb.threads/break-while-running.exp: wo/ithr: always-inserted off: non-stop: set non-stop on
PASS -> UNRESOLVED: gdb.threads/break-while-running.exp: wo/ithr: always-inserted on: all-stop: set non-stop off
PASS -> UNRESOLVED: gdb.threads/break-while-running.exp: wo/ithr: always-inserted on: non-stop: set non-stop on
new UNRESOLVED: gdb.threads/clone-new-thread-event.exp: could not run to main
new UNRESOLVED: gdb.threads/clone-thread_db.exp: could not run to main
new UNRESOLVED: gdb.threads/continue-pending-status.exp: could not run to main
new UNRESOLVED: gdb.threads/current-lwp-dead.exp: could not run to main
PASS -> FAIL: gdb.threads/execl.exp: continue across exec
PASS -> FAIL: gdb.threads/execl.exp: continue to exec
PASS -> FAIL: gdb.threads/execl.exp: continue until exit
PASS -> FAIL: gdb.threads/execl.exp: info threads before exec
PASS -> UNRESOLVED: gdb.threads/execl.exp: set breakpoint at execl
new UNRESOLVED: gdb.threads/fork-child-threads.exp: can't run to main
new UNRESOLVED: gdb.threads/fork-thread-pending.exp: can't run to main
new UNRESOLVED: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=0: detach_on_fork=on: displaced=off: can't run to main
new UNRESOLVED: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=0: detach_on_fork=on: displaced=on: can't run to main
new UNRESOLVED: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=1: detach_on_fork=on: displaced=off: can't run to main
new UNRESOLVED: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=1: detach_on_fork=on: displaced=on: can't run to main
new UNRESOLVED: gdb.threads/forking-threads-plus-breakpoint.exp: probe displaced-stepping support: can't run to main
new UNRESOLVED: gdb.threads/gcore-thread.exp: could not run to main
new UNRESOLVED: gdb.threads/hand-call-in-threads.exp: can't run to main
new UNRESOLVED: gdb.threads/interrupt-while-step-over.exp: can't run to main
new UNRESOLVED: gdb.threads/interrupted-hand-call.exp: can't run to main
new UNRESOLVED: gdb.threads/kill.exp: non-threaded: run to main
new UNRESOLVED: gdb.threads/kill.exp: threaded: run to main
PASS -> UNRESOLVED: gdb.threads/killed.exp: run program to completion
PASS -> FAIL: gdb.threads/linux-dp.exp: continue to breakpoint: about to create philosopher: 0
PASS -> FAIL: gdb.threads/linux-dp.exp: continue to breakpoint: about to create philosopher: 1
PASS -> FAIL: gdb.threads/linux-dp.exp: continue to breakpoint: about to create philosopher: 2
PASS -> FAIL: gdb.threads/linux-dp.exp: continue to breakpoint: about to create philosopher: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: continue to breakpoint: about to create philosopher: 4
PASS -> FAIL: gdb.threads/linux-dp.exp: continue to breakpoint: main thread's sleep
PASS -> FAIL: gdb.threads/linux-dp.exp: continue to breakpoint: thread 5's print
PASS -> FAIL: gdb.threads/linux-dp.exp: continue to breakpoint: thread 5's print, pass: 0
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 0
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 1
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 2
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 4
PASS -> FAIL: gdb.threads/linux-dp.exp: first thread-specific breakpoint hit
PASS -> FAIL: gdb.threads/linux-dp.exp: found an interesting thread
PASS -> UNRESOLVED: gdb.threads/linux-dp.exp: info threads 1
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads 2
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 0
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 1
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 2
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 4
PASS -> FAIL: gdb.threads/linux-dp.exp: manager thread found
new FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 1
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 5
PASS -> FAIL: gdb.threads/linux-dp.exp: selected thread: 1
PASS -> FAIL: gdb.threads/linux-dp.exp: selected thread: 2
PASS -> FAIL: gdb.threads/linux-dp.exp: selected thread: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: selected thread: 4
PASS -> FAIL: gdb.threads/linux-dp.exp: selected thread: 5
PASS -> FAIL: gdb.threads/linux-dp.exp: selected thread: 6
new FAIL: gdb.threads/linux-dp.exp: setting breakpoint at print_philosopher thread 5
PASS -> FAIL: gdb.threads/linux-dp.exp: thread-specific breakpoint is thread-specific
new UNRESOLVED: gdb.threads/local-watch-wrong-thread.exp: can't run to main
PASS -> FAIL: gdb.threads/manythreads.exp: check thread name
PASS -> FAIL: gdb.threads/manythreads.exp: first continue
PASS -> FAIL: gdb.threads/manythreads.exp: give a name to the thread
PASS -> FAIL: gdb.threads/manythreads.exp: info threads
PASS -> FAIL: gdb.threads/manythreads.exp: second continue
PASS -> UNRESOLVED: gdb.threads/manythreads.exp: shell stty intr '^C'
PASS -> FAIL: gdb.threads/manythreads.exp: stop threads 1
PASS -> FAIL: gdb.threads/manythreads.exp: stop threads 2
PASS -> UNRESOLVED: gdb.threads/multi-create.exp: continue to breakpoint 0
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 1
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 10
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 11
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 12
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 13
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 14
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 15
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 16
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 17
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 18
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 19
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 2
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 20
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 21
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 22
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 23
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 24
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 25
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 26
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 27
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 28
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 29
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 3
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 30
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 31
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 4
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 5
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 6
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 7
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 8
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 9
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: continue: continue
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=off: continue: thread 1
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: next: next
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=off: next: thread 1
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr1: continue to sigusr1_handler
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr1: queue-signal SIGUSR1
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr1: switch back to thread 1
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr1: thread 1
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr2: continue to sigusr1_handler
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr2: queue-signal SIGUSR1
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr2: switch back to thread 1
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr2: thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr3: continue to sigusr1_handler
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr3: queue-signal SIGUSR1
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr3: switch back to thread 1
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr3: thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: step: step
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=off: step: thread 1
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: continue: continue
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=on: continue: thread 1
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: next
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=on: next: thread 1
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: continue to sigusr1_handler
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: queue-signal SIGUSR1
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: switch back to thread 1
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: thread 1
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: continue to sigusr1_handler
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: queue-signal SIGUSR1
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: switch back to thread 1
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: continue to sigusr1_handler
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: queue-signal SIGUSR1
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: switch back to thread 1
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: step: step
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=on: step: thread 1
new UNRESOLVED: gdb.threads/multiple-successive-infcall.exp: can't run to main
new UNRESOLVED: gdb.threads/next-while-other-thread-longjmps.exp: can't run to main
new UNRESOLVED: gdb.threads/non-ldr-exit.exp: can't run to main
new UNRESOLVED: gdb.threads/omp-par-scope.exp: could not run to main
new UNRESOLVED: gdb.threads/pending-step.exp: can't run to main
PASS -> FAIL: gdb.threads/print-threads.exp: all threads ran once
PASS -> UNRESOLVED: gdb.threads/print-threads.exp: break thread_function
PASS -> FAIL: gdb.threads/print-threads.exp: set var slow = 0
PASS -> FAIL: gdb.threads/print-threads.exp: set var slow = 1
new FAIL: gdb.threads/print-threads.exp: setting breakpoint at kill
new UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: detach: can't run to main
new UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: killed outside: can't run to main
new UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: can't run to main
new UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: detach: can't run to main
new UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: killed outside: can't run to main
new UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: can't run to main
new UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: single-process: continue: detach: can't run to main
new UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: single-process: continue: killed outside: can't run to main
new UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: can't run to main
new UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: single-process: detach: detach: can't run to main
new UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: single-process: detach: killed outside: can't run to main
new UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: single-process: detach: watchpoint: can't run to main
new UNRESOLVED: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: can't run to main
new UNRESOLVED: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: can't run to main
new UNRESOLVED: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: can't run to main
new UNRESOLVED: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: can't run to main
PASS -> FAIL: gdb.threads/pthread_cond_wait.exp: backtrace in blocked thread
PASS -> UNRESOLVED: gdb.threads/pthread_cond_wait.exp: breakpoint on break_me
PASS -> FAIL: gdb.threads/pthread_cond_wait.exp: run to break_me
new UNRESOLVED: gdb.threads/queue-signal.exp: can't run to main
new UNRESOLVED: gdb.threads/reconnect-signal.exp: can't run to main
new UNRESOLVED: gdb.threads/schedlock.exp: target does not support scheduler locking
new UNRESOLVED: gdb.threads/signal-command-handle-nopass.exp: step-over no: can't run to main
new UNRESOLVED: gdb.threads/signal-command-handle-nopass.exp: step-over yes: can't run to main
new UNRESOLVED: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock off: can't run to main
new UNRESOLVED: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock on: can't run to main
new UNRESOLVED: gdb.threads/signal-delivered-right-thread.exp: continue: can't run to main
new UNRESOLVED: gdb.threads/signal-delivered-right-thread.exp: signal 0: can't run to main
new UNRESOLVED: gdb.threads/signal-sigtrap.exp: sigtrap thread 1: can't run to thread_function
new UNRESOLVED: gdb.threads/signal-sigtrap.exp: sigtrap thread 2: can't run to thread_function
new UNRESOLVED: gdb.threads/sigthread.exp: can't run to main
new UNRESOLVED: gdb.threads/staticthreads.exp:
PASS -> UNRESOLVED: gdb.threads/staticthreads.exp: break sem_post
PASS -> FAIL: gdb.threads/staticthreads.exp: continue to main's call of sem_post
PASS -> FAIL: gdb.threads/staticthreads.exp: handle SIG32 helps
PASS -> KFAIL: gdb.threads/staticthreads.exp: info threads
new UNRESOLVED: gdb.threads/stop-with-handle.exp: can't run to main
PASS -> UNRESOLVED: gdb.threads/switch-threads.exp: continue to breakpoint: continue to thread_func
PASS -> FAIL: gdb.threads/switch-threads.exp: next
PASS -> UNRESOLVED: gdb.threads/thread-execl.exp: non-stop: set non-stop 1
PASS -> UNRESOLVED: gdb.threads/thread-find.exp: continue to breakpoint: main thread's sleep
PASS -> FAIL: gdb.threads/thread-find.exp: find thread name 1
PASS -> FAIL: gdb.threads/thread-find.exp: find thread name 2
PASS -> FAIL: gdb.threads/thread-find.exp: find thread name 3
PASS -> FAIL: gdb.threads/thread-find.exp: find thread name 4
PASS -> FAIL: gdb.threads/thread-find.exp: find thread name 5
PASS -> FAIL: gdb.threads/thread-find.exp: find thread name 6
PASS -> FAIL: gdb.threads/thread-find.exp: info thread foo
PASS -> FAIL: gdb.threads/thread-find.exp: info thread foo -1
PASS -> FAIL: gdb.threads/thread-find.exp: info threads 2 4 6
PASS -> FAIL: gdb.threads/thread-find.exp: info threads 3-3
PASS -> FAIL: gdb.threads/thread-find.exp: info threads 3-5
PASS -> FAIL: gdb.threads/thread-find.exp: name thread 1
PASS -> FAIL: gdb.threads/thread-find.exp: name thread 2
PASS -> FAIL: gdb.threads/thread-find.exp: name thread 3
PASS -> FAIL: gdb.threads/thread-find.exp: name thread 4
PASS -> FAIL: gdb.threads/thread-find.exp: name thread 5
PASS -> FAIL: gdb.threads/thread-find.exp: name thread 6
PASS -> FAIL: gdb.threads/thread-find.exp: test inverted range
PASS -> FAIL: gdb.threads/thread-find.exp: test regular exp
new UNRESOLVED: gdb.threads/thread-specific-bp.exp: all-stop: could not run to main
new UNRESOLVED: gdb.threads/thread-specific-bp.exp: non-stop: could not run to main
PASS -> UNRESOLVED: gdb.threads/thread-specific.exp: continue to breakpoint: all threads started
PASS -> FAIL: gdb.threads/thread-specific.exp: get threads list
new UNRESOLVED: gdb.threads/thread-unwindonsignal.exp: can't run to main
new UNRESOLVED: gdb.threads/thread_check.exp: can't run to main
new UNRESOLVED: gdb.threads/threadapply.exp: can't run to main
PASS -> UNRESOLVED: gdb.threads/threxit-hop-specific.exp: continue to thread start
PASS -> FAIL: gdb.threads/threxit-hop-specific.exp: get past the thread specific breakpoint
PASS -> FAIL: gdb.threads/threxit-hop-specific.exp: set thread specific breakpoint
new UNRESOLVED: gdb.threads/tid-reuse.exp: can't run to main
PASS -> UNRESOLVED: gdb.threads/tls-core.exp: gcore
new UNRESOLVED: gdb.threads/tls-nodebug.exp: can't run to main
new UNRESOLVED: gdb.threads/tls-shared.exp: can't run to main
new UNRESOLVED: gdb.threads/tls-so_extern.exp: can't run to main
new UNRESOLVED: gdb.threads/tls.exp: can't run to main
new UNRESOLVED: gdb.threads/vfork-follow-child-exec.exp: detach-on-fork=off: can't run to main
new UNRESOLVED: gdb.threads/vfork-follow-child-exec.exp: detach-on-fork=on: can't run to main
new UNRESOLVED: gdb.threads/vfork-follow-child-exit.exp: detach-on-fork=off: can't run to main
new UNRESOLVED: gdb.threads/vfork-follow-child-exit.exp: detach-on-fork=on: can't run to main
PASS -> UNRESOLVED: gdb.threads/watchpoint-fork.exp: child: singlethreaded: show detach-on-fork
new UNRESOLVED: gdb.threads/watchthreads.exp: can't run to main
new UNRESOLVED: gdb.threads/watchthreads2.exp: can't run to main
new UNRESOLVED: gdb.threads/wp-replication.exp: failed to run to main
new UNRESOLVED: gdb.trace/actions-changed.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/actions.exp: can't run to main
PASS -> FAIL: gdb.trace/ax.exp: maint agent
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent 12
PASS -> FAIL: gdb.trace/ax.exp: maint agent-eval &gdb_long_test == &gdb_short_test
PASS -> FAIL: gdb.trace/ax.exp: maint agent-eval 12
new UNRESOLVED: gdb.trace/backtrace.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/change-loc.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/circ.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/collection.exp: current target does not support trace
new UNRESOLVED: gdb.trace/disconnected-tracing.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/entry-values.exp: can't run to main
new UNRESOLVED: gdb.trace/ftrace-lock.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/ftrace.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/infotrace.exp: can't run to main
new UNRESOLVED: gdb.trace/mi-trace-frame-collected.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/mi-trace-unavailable.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/mi-traceframe-changed.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/mi-tracepoint-changed.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/mi-tsv-changed.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/mi-tsv-changed.exp: create delete modify: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/packetlen.exp: current target does not support trace
new UNRESOLVED: gdb.trace/passc-dyn.exp: current target does not support trace
new UNRESOLVED: gdb.trace/pending.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/pr16508.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/qtro.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/range-stepping.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/read-memory.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/report.exp: current target does not support trace
new UNRESOLVED: gdb.trace/signal.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/status-stop.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/tfind.exp: current target does not support trace
new UNRESOLVED: gdb.trace/trace-break.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/trace-buffer-size.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/trace-condition.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/trace-enable-disable.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/trace-mt.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/tspeed.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/tstatus.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/tsv.exp: current target does not support trace
new UNRESOLVED: gdb.trace/unavailable.exp: current target does not support trace
new UNRESOLVED: gdb.trace/while-dyn.exp: current target does not support trace
new UNRESOLVED: gdb.trace/while-stepping.exp: can't run to main
new UNRESOLVED: gdb.tui/tui-layout.exp: execution=1: layout=asm: can't run to main
new UNRESOLVED: gdb.tui/tui-layout.exp: execution=1: layout=reg: can't run to main
new UNRESOLVED: gdb.tui/tui-layout.exp: execution=1: layout=split: can't run to main
new UNRESOLVED: gdb.tui/tui-layout.exp: execution=1: layout=src: can't run to main
==============================================

*** 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/91/919adfe8409211c726c1d05b47ca59890ee648f1//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/91/919adfe8409211c726c1d05b47ca59890ee648f1//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-07 15:53 [binutils-gdb] Add support for the GBZ80 and Z80N variants of the Z80 architecture, and add DWARF debug info support to the Z80 assembler gdb-buildbot
@ 2020-02-07 17:52 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-07 17:52 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/1923

Author:
        Sergey Belyashov <sergey.belyashov@gmail.com>

Commit tested:
        9fc0b501af78bc4a92f53ec712e1aaa123e0224c

Subject of commit:
        Add support for the GBZ80 and Z80N variants of the Z80 architecture, and add DWARF debug info support to the Z80 assembler.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/9f/9fc0b501af78bc4a92f53ec712e1aaa123e0224c/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: pc after stepi matches insn addr after syscall
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/Ubuntu-Aarch64-native-gdbserver-m64/9f/9fc0b501af78bc4a92f53ec712e1aaa123e0224c//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/9f/9fc0b501af78bc4a92f53ec712e1aaa123e0224c//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-07  2:57 [binutils-gdb] ELF: Support the section flag 'o' in .section directive gdb-buildbot
@ 2020-02-07  5:18 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-07  5:18 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/1920

Author:
        H.J. Lu <hjl.tools@gmail.com>

Commit tested:
        b7d072167715829eed0622616f6ae0182900de3e

Subject of commit:
        ELF: Support the section flag 'o' in .section directive

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/b7/b7d072167715829eed0622616f6ae0182900de3e/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/b7/b7d072167715829eed0622616f6ae0182900de3e//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/b7/b7d072167715829eed0622616f6ae0182900de3e//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-06 20:58 [binutils-gdb] gdb: Catch exceptions if the source file is not found gdb-buildbot
@ 2020-02-06 23:32 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-06 23:32 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/1918

Author:
        Shahab Vahedi <shahab@synopsys.com>

Commit tested:
        1d5d29e73f4b5f1af4df5b6e39ccf2fa722acead

Subject of commit:
        gdb: Catch exceptions if the source file is not found

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/1d/1d5d29e73f4b5f1af4df5b6e39ccf2fa722acead/

*** Diff to previous build ***
==============================================
new FAIL: gdb.tui/tui-missing-src.exp: Back in main
new FAIL: gdb.tui/tui-missing-src.exp: checking if inside f2
new FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
==============================================

*** 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/1d/1d5d29e73f4b5f1af4df5b6e39ccf2fa722acead//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/1d/1d5d29e73f4b5f1af4df5b6e39ccf2fa722acead//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-06 19:07 [binutils-gdb] gdb/testsuite: Avoid leaking a port number into results summary gdb-buildbot
@ 2020-02-06 21:25 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-06 21:25 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/1917

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        b0999b9b4574371f4b7682d0ccf5f7dbf1702262

Subject of commit:
        gdb/testsuite: Avoid leaking a port number into results summary

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/b0/b0999b9b4574371f4b7682d0ccf5f7dbf1702262/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: pc after stepi matches insn addr after syscall
==============================================

*** 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/b0/b0999b9b4574371f4b7682d0ccf5f7dbf1702262//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/b0/b0999b9b4574371f4b7682d0ccf5f7dbf1702262//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-05 21:46 [binutils-gdb] Fix base class function call gdb-buildbot
@ 2020-02-06  2:13 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-06  2:13 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/1913

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        c6a42d11acf2d485bf70d76eda76fd005fcd6825

Subject of commit:
        Fix base class function call

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/c6/c6a42d11acf2d485bf70d76eda76fd005fcd6825/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/c6/c6a42d11acf2d485bf70d76eda76fd005fcd6825//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/c6/c6a42d11acf2d485bf70d76eda76fd005fcd6825//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-05 19:45 [binutils-gdb] Fix header guard name in #endif comment gdb-buildbot
@ 2020-02-05 22:38 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-05 22:38 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/1912

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        c8ecdda6b68722c35bfdef56fdd4ba652d77bffc

Subject of commit:
        Fix header guard name in #endif comment

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/c8/c8ecdda6b68722c35bfdef56fdd4ba652d77bffc/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/c8/c8ecdda6b68722c35bfdef56fdd4ba652d77bffc//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/c8/c8ecdda6b68722c35bfdef56fdd4ba652d77bffc//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-05 18:15 [binutils-gdb] RISC-V/Linux/native: Factor out target description determination gdb-buildbot
@ 2020-02-05 20:27 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-05 20:27 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/1911

Author:
        Maciej W. Rozycki <macro@wdc.com>

Commit tested:
        f6480e70001df1c8151362cd4621578bcb293224

Subject of commit:
        RISC-V/Linux/native: Factor out target description determination

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/f6/f6480e70001df1c8151362cd4621578bcb293224/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: server exits
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/Ubuntu-Aarch64-native-gdbserver-m64/f6/f6480e70001df1c8151362cd4621578bcb293224//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/f6/f6480e70001df1c8151362cd4621578bcb293224//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-04 18:25 [binutils-gdb] [gdb/testsuite] Add note to 'Race detection' entry in README gdb-buildbot
@ 2020-02-04 23:19 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-04 23:19 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/1907

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        f8dcc90b6030b641fa7b0b33e4203498bbb0f0e0

Subject of commit:
        [gdb/testsuite] Add note to 'Race detection' entry in README

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/f8/f8dcc90b6030b641fa7b0b33e4203498bbb0f0e0/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/f8/f8dcc90b6030b641fa7b0b33e4203498bbb0f0e0//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/f8/f8dcc90b6030b641fa7b0b33e4203498bbb0f0e0//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-04 17:17 [binutils-gdb] [gdb/testsuite] Make inferior_exited_re match a single line gdb-buildbot
@ 2020-02-04 20:42 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-04 20:42 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/1906

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        f90ac7c2bbd56492f566dbeff2e464a999d03fb8

Subject of commit:
        [gdb/testsuite] Make inferior_exited_re match a single line

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/f9/f90ac7c2bbd56492f566dbeff2e464a999d03fb8/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/f9/f90ac7c2bbd56492f566dbeff2e464a999d03fb8//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/f9/f90ac7c2bbd56492f566dbeff2e464a999d03fb8//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-04 12:16 [binutils-gdb] Minor fix for R_PPC_VLE_ADDR20 gdb-buildbot
@ 2020-02-04 18:18 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-04 18:18 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/1905

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        24872cb30211b650a9360edd2476a6a1dd033cbb

Subject of commit:
        Minor fix for R_PPC_VLE_ADDR20

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/24/24872cb30211b650a9360edd2476a6a1dd033cbb/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/24/24872cb30211b650a9360edd2476a6a1dd033cbb//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/24/24872cb30211b650a9360edd2476a6a1dd033cbb//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-04  8:58 [binutils-gdb] Change ints to bools around thread_info executing/resumed gdb-buildbot
@ 2020-02-04 13:32 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-04 13:32 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/1903

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        719546c44f5777a3902a2f913c70fd15b942461d

Subject of commit:
        Change ints to bools around thread_info executing/resumed

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/71/719546c44f5777a3902a2f913c70fd15b942461d/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/71/719546c44f5777a3902a2f913c70fd15b942461d//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/71/719546c44f5777a3902a2f913c70fd15b942461d//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-04  4:19 [binutils-gdb] gdb: fix powerpc disassembly tests gdb-buildbot
@ 2020-02-04  6:16 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-04  6:16 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/1900

Author:
        Rogerio Alves <rcardoso@linux.ibm.com>

Commit tested:
        5d2e1193286fe6278ee70c2137b3726994f2e28b

Subject of commit:
        gdb: fix powerpc disassembly tests

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/5d/5d2e1193286fe6278ee70c2137b3726994f2e28b/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/5d/5d2e1193286fe6278ee70c2137b3726994f2e28b//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/5d/5d2e1193286fe6278ee70c2137b3726994f2e28b//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-04  2:02 [binutils-gdb] Fixed gdb to print arrays with very high indexes gdb-buildbot
@ 2020-02-04  4:12 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-04  4:12 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/1899

Author:
        Alok Kumar Sharma <AlokKumar.Sharma@amd.com>

Commit tested:
        e409c542cc3cedebf78c7827e976d36955d477bb

Subject of commit:
        Fixed gdb to print arrays with very high indexes

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/e4/e409c542cc3cedebf78c7827e976d36955d477bb/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/e4/e409c542cc3cedebf78c7827e976d36955d477bb//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/e4/e409c542cc3cedebf78c7827e976d36955d477bb//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-03 13:01 [binutils-gdb] RISC-V/Linux/native: Determine FLEN dynamically gdb-buildbot
@ 2020-02-03 16:05 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-03 16:05 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/1898

Author:
        Maciej W. Rozycki <macro@wdc.com>

Commit tested:
        ee98c0daf93476e323134492cf604e71b05ca883

Subject of commit:
        RISC-V/Linux/native: Determine FLEN dynamically

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/ee/ee98c0daf93476e323134492cf604e71b05ca883/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: pc after stepi matches insn addr after syscall
==============================================

*** 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/ee/ee98c0daf93476e323134492cf604e71b05ca883//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/ee/ee98c0daf93476e323134492cf604e71b05ca883//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-03 11:10 [binutils-gdb] Fix compilation error with musl in gdb/testsuite/gdb.base/fileio.c gdb-buildbot
@ 2020-02-03 13:15 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-03 13:15 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/1897

Author:
        Lukas Durfina <ldurfina@tachyum.com>

Commit tested:
        b0029748ca991c64cf9f0851217b7762e4877854

Subject of commit:
        Fix compilation error with musl in gdb/testsuite/gdb.base/fileio.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/b0/b0029748ca991c64cf9f0851217b7762e4877854/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/b0/b0029748ca991c64cf9f0851217b7762e4877854//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/b0/b0029748ca991c64cf9f0851217b7762e4877854//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-03  6:09 [binutils-gdb] ubsan: m32c: left shift of negative value gdb-buildbot
@ 2020-02-03  9:05 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-03  9:05 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/1896

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        44e4546fa278122fb1ad708cf8d4835a5af0a11c

Subject of commit:
        ubsan: m32c: left shift of negative value

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/44/44e4546fa278122fb1ad708cf8d4835a5af0a11c/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
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/44/44e4546fa278122fb1ad708cf8d4835a5af0a11c//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/44/44e4546fa278122fb1ad708cf8d4835a5af0a11c//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-03  3:18 [binutils-gdb] section.c: Fix typo in comments (withe -> with) gdb-buildbot
@ 2020-02-03  6:05 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-03  6:05 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/1895

Author:
        H.J. Lu <hjl.tools@gmail.com>

Commit tested:
        ef4627fabaebd4f4a2bc2c5e92c95d747f388d78

Subject of commit:
        section.c: Fix typo in comments (withe -> with)

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/ef/ef4627fabaebd4f4a2bc2c5e92c95d747f388d78/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/ef/ef4627fabaebd4f4a2bc2c5e92c95d747f388d78//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/ef/ef4627fabaebd4f4a2bc2c5e92c95d747f388d78//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-03  1:44 [binutils-gdb] ELF: Add support for unique section ID to assembler gdb-buildbot
@ 2020-02-03  3:59 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-03  3:59 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/1894

Author:
        H.J. Lu <hjl.tools@gmail.com>

Commit tested:
        a8c4d40b578378be3b12575d127d4c7bd9972f32

Subject of commit:
        ELF: Add support for unique section ID to assembler

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/a8/a8c4d40b578378be3b12575d127d4c7bd9972f32/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: pc after stepi matches insn addr after syscall
==============================================

*** 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/a8/a8c4d40b578378be3b12575d127d4c7bd9972f32//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/a8/a8c4d40b578378be3b12575d127d4c7bd9972f32//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-01 14:47 [binutils-gdb] Move pending obsolete targets onto the definitely obsolete list gdb-buildbot
@ 2020-02-01 18:06 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-01 18:06 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/1892

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        5a9212a11cf50bdf7c3583aa610f745fd97153ea

Subject of commit:
        Move pending obsolete targets onto the definitely obsolete list

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/5a/5a9212a11cf50bdf7c3583aa610f745fd97153ea/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/5a/5a9212a11cf50bdf7c3583aa610f745fd97153ea//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/5a/5a9212a11cf50bdf7c3583aa610f745fd97153ea//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-01 13:37 [binutils-gdb] ubsan: frv: left shift of negative value gdb-buildbot
@ 2020-02-01 15:45 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-01 15:45 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/1891

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        b2b1453ad4305f1a000a514e4dfcc09af49fb3dc

Subject of commit:
        ubsan: frv: left shift of negative value

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/b2/b2b1453ad4305f1a000a514e4dfcc09af49fb3dc/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/b2/b2b1453ad4305f1a000a514e4dfcc09af49fb3dc//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/b2/b2b1453ad4305f1a000a514e4dfcc09af49fb3dc//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-02-01  1:58 [binutils-gdb] gdb: Do not print empty-group regs when printing general ones gdb-buildbot
@ 2020-02-01 13:25 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-02-01 13:25 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/1890

Author:
        Shahab Vahedi <shahab@synopsys.com>

Commit tested:
        aa66aac47b4dd38f9524ddb5546c08cc09930d37

Subject of commit:
        gdb: Do not print empty-group regs when printing general ones

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/aa/aa66aac47b4dd38f9524ddb5546c08cc09930d37/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.trace/unavailable.exp: unavailable registers: ctf: info registers, multiple registers not available
PASS -> FAIL: gdb.trace/unavailable.exp: unavailable registers: info registers, multiple registers not available
PASS -> FAIL: gdb.trace/unavailable.exp: unavailable registers: tfile: info registers, multiple registers not available
==============================================

*** 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/aa/aa66aac47b4dd38f9524ddb5546c08cc09930d37//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/aa/aa66aac47b4dd38f9524ddb5546c08cc09930d37//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-31 18:42 [binutils-gdb] x86: replace EXxmm_mdq by EXVexWdqScalar gdb-buildbot
@ 2020-01-31 23:39 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-31 23:39 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/1887

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        4102be5cf925999e1f3f999c95479360291205de

Subject of commit:
        x86: replace EXxmm_mdq by EXVexWdqScalar

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/41/4102be5cf925999e1f3f999c95479360291205de/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/41/4102be5cf925999e1f3f999c95479360291205de//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/41/4102be5cf925999e1f3f999c95479360291205de//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-31 14:28 [binutils-gdb] aarch64: Fix MOVPRFX markup for bf16 conversions gdb-buildbot
@ 2020-01-31 18:43 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-31 18:43 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/1885

Author:
        Richard Sandiford <richard.sandiford@arm.com>

Commit tested:
        c3036ed0633483325bf37e5cf70d44c7b66bfc61

Subject of commit:
        aarch64: Fix MOVPRFX markup for bf16 conversions

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/c3/c3036ed0633483325bf37e5cf70d44c7b66bfc61/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/c3/c3036ed0633483325bf37e5cf70d44c7b66bfc61//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/c3036ed0633483325bf37e5cf70d44c7b66bfc61//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-31 11:27 [binutils-gdb] Fix ravenscar-thread.c for multi-target gdb-buildbot
@ 2020-01-31 16:08 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-31 16:08 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/1884

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        fd9faca826e6ee9178cf0b1c2486e3c662d6375a

Subject of commit:
        Fix ravenscar-thread.c for multi-target

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/fd/fd9faca826e6ee9178cf0b1c2486e3c662d6375a/

*** 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/fd/fd9faca826e6ee9178cf0b1c2486e3c662d6375a//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/fd/fd9faca826e6ee9178cf0b1c2486e3c662d6375a//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-31  8:07 [binutils-gdb] gdb/tui: Disassembler scrolling of very small programs gdb-buildbot
@ 2020-01-31 14:17 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-31 14:17 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/1883

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        42330a681af23a80d3e1f201d2a65886875e74bd

Subject of commit:
        gdb/tui: Disassembler scrolling of very small programs

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/42/42330a681af23a80d3e1f201d2a65886875e74bd/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: save a corefile
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/42/42330a681af23a80d3e1f201d2a65886875e74bd//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/42/42330a681af23a80d3e1f201d2a65886875e74bd//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-31  5:30 [binutils-gdb] gdb/tui: Update help text for scroll commands gdb-buildbot
@ 2020-01-31 11:20 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-31 11:20 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/1882

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        7a27a45bc66f38cbaee868092f0aaa55ef8d4564

Subject of commit:
        gdb/tui: Update help text for scroll commands

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/7a/7a27a45bc66f38cbaee868092f0aaa55ef8d4564/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: pc after stepi matches insn addr after syscall
==============================================

*** 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/7a/7a27a45bc66f38cbaee868092f0aaa55ef8d4564//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/7a/7a27a45bc66f38cbaee868092f0aaa55ef8d4564//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-31  3:38 [binutils-gdb] Tidy bfd.pot gdb-buildbot
@ 2020-01-31  9:29 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-31  9:29 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/1881

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        72ebe8c528387ac2ecf82f3ce82294f63a855d45

Subject of commit:
        Tidy bfd.pot

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/72/72ebe8c528387ac2ecf82f3ce82294f63a855d45/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
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=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/Ubuntu-Aarch64-native-gdbserver-m64/72/72ebe8c528387ac2ecf82f3ce82294f63a855d45//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/72/72ebe8c528387ac2ecf82f3ce82294f63a855d45//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-31  1:50 [binutils-gdb] OOM in setup_group gdb-buildbot
@ 2020-01-31  7:05 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-31  7:05 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/1880

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        327301a4604da40da264c554daa8c1e97aa2fbe2

Subject of commit:
        OOM in setup_group

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/32/327301a4604da40da264c554daa8c1e97aa2fbe2/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: pc after stepi matches insn addr after syscall
==============================================

*** 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/32/327301a4604da40da264c554daa8c1e97aa2fbe2//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/32/327301a4604da40da264c554daa8c1e97aa2fbe2//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-30 19:14 [binutils-gdb] Add some new PE_IMAGE_DEBUG_TYPE values gdb-buildbot
@ 2020-01-30 23:38 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-30 23:38 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/1877

Author:
        Jon Turney <jon.turney@dronecode.org.uk>

Commit tested:
        1957ab1030b40939544c88c1c4eb1b8a62bd0b5d

Subject of commit:
        Add some new PE_IMAGE_DEBUG_TYPE values

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/19/1957ab1030b40939544c88c1c4eb1b8a62bd0b5d/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/19/1957ab1030b40939544c88c1c4eb1b8a62bd0b5d//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/19/1957ab1030b40939544c88c1c4eb1b8a62bd0b5d//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-30 17:52 [binutils-gdb] Bugfixes for pe_print_debugdata() gdb-buildbot
@ 2020-01-30 21:38 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-30 21:38 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/1876

Author:
        Jon Turney <jon.turney@dronecode.org.uk>

Commit tested:
        87b2920fc54826c2a0015ab3a19b7b873d208653

Subject of commit:
        Bugfixes for pe_print_debugdata()

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/87/87b2920fc54826c2a0015ab3a19b7b873d208653/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/87/87b2920fc54826c2a0015ab3a19b7b873d208653//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/87/87b2920fc54826c2a0015ab3a19b7b873d208653//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-30 15:16 [binutils-gdb] cpu,opcodes,gas: fix neg and neg32 instructions in BPF gdb-buildbot
@ 2020-01-30 19:10 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-30 19:10 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/1875

Author:
        Jose E. Marchesi <jose.marchesi@oracle.com>

Commit tested:
        bd434cc4d94ec3d2f9fc1e7c00c27b074f962bc1

Subject of commit:
        cpu,opcodes,gas: fix neg and neg32 instructions in BPF

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/bd/bd434cc4d94ec3d2f9fc1e7c00c27b074f962bc1/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/bd/bd434cc4d94ec3d2f9fc1e7c00c27b074f962bc1//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/bd/bd434cc4d94ec3d2f9fc1e7c00c27b074f962bc1//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-30 13:57 [binutils-gdb] x86-64: honor vendor specifics for near RET gdb-buildbot
@ 2020-01-30 16:26 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-30 16:26 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/1874

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        aeab2b26dbea33221db4debaf31c97277cfaea5e

Subject of commit:
        x86-64: honor vendor specifics for near RET

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/ae/aeab2b26dbea33221db4debaf31c97277cfaea5e/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: server exits
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/Ubuntu-Aarch64-native-gdbserver-m64/ae/aeab2b26dbea33221db4debaf31c97277cfaea5e//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/ae/aeab2b26dbea33221db4debaf31c97277cfaea5e//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-30  9:00 [binutils-gdb] ubsan: tic4x: left shift cannot be represented in type 'int' gdb-buildbot
@ 2020-01-30 11:46 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-30 11:46 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/1872

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        1bd8ae1004919317e7aa3cc2bb1d5d0d74d9f03e

Subject of commit:
        ubsan: tic4x: left shift cannot be represented in type 'int'

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/1b/1bd8ae1004919317e7aa3cc2bb1d5d0d74d9f03e/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/1b/1bd8ae1004919317e7aa3cc2bb1d5d0d74d9f03e//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/1b/1bd8ae1004919317e7aa3cc2bb1d5d0d74d9f03e//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-30  0:11 [binutils-gdb] Fix -Werror-stringop error on infcmd.c:construct_inferior_arguments gdb-buildbot
@ 2020-01-30  7:18 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-30  7:18 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/1870

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        c47f70e2ce7b347aadbde873aae6c2df92c42180

Subject of commit:
        Fix -Werror-stringop error on infcmd.c:construct_inferior_arguments

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/c4/c47f70e2ce7b347aadbde873aae6c2df92c42180/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/c4/c47f70e2ce7b347aadbde873aae6c2df92c42180//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/c4/c47f70e2ce7b347aadbde873aae6c2df92c42180//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-29 20:47 [binutils-gdb] gdbserver: Fix whitespace configure.srv damage for `i[34567]86-*-mingw*' gdb-buildbot
@ 2020-01-30  0:03 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-30  0: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/1868

Author:
        Maciej W. Rozycki <macro@wdc.com>

Commit tested:
        287c844a33a4d3b513bce17165158dd5fb2d820c

Subject of commit:
        gdbserver: Fix whitespace configure.srv damage for `i[34567]86-*-mingw*'

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/28/287c844a33a4d3b513bce17165158dd5fb2d820c/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
==============================================

*** 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/28/287c844a33a4d3b513bce17165158dd5fb2d820c//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/28/287c844a33a4d3b513bce17165158dd5fb2d820c//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-29 16:39 [binutils-gdb] Test handling of additional brk instruction patterns gdb-buildbot
@ 2020-01-29 19:45 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-29 19:45 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/1866

Author:
        Luis Machado <luis.machado@linaro.org>

Commit tested:
        b62a802857adafecc64bc1de3efd1c2e59059af9

Subject of commit:
        Test handling of additional brk instruction patterns

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/b6/b62a802857adafecc64bc1de3efd1c2e59059af9/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/b6/b62a802857adafecc64bc1de3efd1c2e59059af9//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/b6/b62a802857adafecc64bc1de3efd1c2e59059af9//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-29 10:07 [binutils-gdb] testsuite, cp: add expected failures to pass-by-ref tests for certain compilers gdb-buildbot
@ 2020-01-29 14:47 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-29 14: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/1864

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        5f440116e87a4613b888ab3f42c014468bd625d9

Subject of commit:
        testsuite, cp: add expected failures to pass-by-ref tests for certain compilers

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/5f/5f440116e87a4613b888ab3f42c014468bd625d9/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: pc after stepi matches insn addr after syscall
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/Ubuntu-Aarch64-native-gdbserver-m64/5f/5f440116e87a4613b888ab3f42c014468bd625d9//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/5f/5f440116e87a4613b888ab3f42c014468bd625d9//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-28 12:11 [binutils-gdb] RISC-V: Fix gdbserver problem with handling arch strings gdb-buildbot
@ 2020-01-28 20:13 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-28 20:13 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/1861

Author:
        Jim Wilson <jimw@sifive.com>

Commit tested:
        c35d018b1a5ec604e49a807402c4205530b25ca8

Subject of commit:
        RISC-V: Fix gdbserver problem with handling arch strings.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/c3/c35d018b1a5ec604e49a807402c4205530b25ca8/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/c3/c35d018b1a5ec604e49a807402c4205530b25ca8//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/c35d018b1a5ec604e49a807402c4205530b25ca8//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-28 10:20 [binutils-gdb] Harden gdb.base/step-over-syscall.exp gdb-buildbot
@ 2020-01-28 19:38 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-28 19:38 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/1860

Author:
        Luis Machado <luis.machado@linaro.org>

Commit tested:
        16b10d6e61bfa0940333354e8144b3924dc86e56

Subject of commit:
        Harden gdb.base/step-over-syscall.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/16/16b10d6e61bfa0940333354e8144b3924dc86e56/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : vfork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : vfork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=on: pc after stepi matches insn addr after syscall
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/16/16b10d6e61bfa0940333354e8144b3924dc86e56//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/16/16b10d6e61bfa0940333354e8144b3924dc86e56//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-28  5:10 [binutils-gdb] AArch64: Fix cfinv disassembly issues gdb-buildbot
@ 2020-01-28 10:52 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-28 10:52 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/1857

Author:
        Tamar Christina <tamar.christina@arm.com>

Commit tested:
        7568c93bf95a518797dfb2987b04911164c14a36

Subject of commit:
        AArch64: Fix cfinv disassembly issues

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/75/7568c93bf95a518797dfb2987b04911164c14a36/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/75/7568c93bf95a518797dfb2987b04911164c14a36//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/75/7568c93bf95a518797dfb2987b04911164c14a36//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-28  2:42 [binutils-gdb] Two minor changes in ctfread.c gdb-buildbot
@ 2020-01-28  8:17 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-28  8:17 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/1856

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        168f8c6ba008bed9fcc2fe7098416f608e4419af

Subject of commit:
        Two minor changes in ctfread.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/16/168f8c6ba008bed9fcc2fe7098416f608e4419af/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/16/168f8c6ba008bed9fcc2fe7098416f608e4419af//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/16/168f8c6ba008bed9fcc2fe7098416f608e4419af//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-27 22:58 [binutils-gdb] Virtualize "readin" and "compunit_symtab" gdb-buildbot
@ 2020-01-28  3:57 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-28  3:57 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/1854

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        128a391fe45a234587dc585e03a7726cd6ee0255

Subject of commit:
        Virtualize "readin" and "compunit_symtab"

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/12/128a391fe45a234587dc585e03a7726cd6ee0255/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/12/128a391fe45a234587dc585e03a7726cd6ee0255//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/12/128a391fe45a234587dc585e03a7726cd6ee0255//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-27 11:43 [binutils-gdb] Introduce partial_symtab::read_symtab method gdb-buildbot
@ 2020-01-27 17:52 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-27 17:52 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/1850

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        891813beaab0029c88c9eeec9c1847d68a4d6050

Subject of commit:
        Introduce partial_symtab::read_symtab method

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/89/891813beaab0029c88c9eeec9c1847d68a4d6050/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/89/891813beaab0029c88c9eeec9c1847d68a4d6050//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/891813beaab0029c88c9eeec9c1847d68a4d6050//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ 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
@ 2020-01-27 15:03 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ 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] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-27  6:04 [binutils-gdb] Do not allocate psymtabs via psymtab_storage gdb-buildbot
@ 2020-01-27  9:24 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-27  9:24 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/1845

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        abaa2f2340a400fd19aea2973f705fe813d620d4

Subject of commit:
        Do not allocate psymtabs via psymtab_storage

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/ab/abaa2f2340a400fd19aea2973f705fe813d620d4/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/ab/abaa2f2340a400fd19aea2973f705fe813d620d4//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/ab/abaa2f2340a400fd19aea2973f705fe813d620d4//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-27  0:17 [binutils-gdb] Remove an include from machoread.c gdb-buildbot
@ 2020-01-27  2:33 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-27  2:33 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/1842

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        f6f1cebcbe4dd33cdd65094267cc33395d55ece7

Subject of commit:
        Remove an include from machoread.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/f6/f6f1cebcbe4dd33cdd65094267cc33395d55ece7/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: server exits
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/Ubuntu-Aarch64-native-gdbserver-m64/f6/f6f1cebcbe4dd33cdd65094267cc33395d55ece7//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/f6/f6f1cebcbe4dd33cdd65094267cc33395d55ece7//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-25 12:25 [binutils-gdb] Test 'set exec-file-mismatch ask|warn|off' gdb-buildbot
@ 2020-01-25 17:09 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-25 17:09 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/1839

Author:
        Philippe Waroquiers <philippe.waroquiers@skynet.be>

Commit tested:
        b1468492c69335b023e6e4adf15ba0de0263812e

Subject of commit:
        Test 'set exec-file-mismatch ask|warn|off'.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/b1/b1468492c69335b023e6e4adf15ba0de0263812e/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/b1/b1468492c69335b023e6e4adf15ba0de0263812e//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/b1/b1468492c69335b023e6e4adf15ba0de0263812e//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-25 11:59 [binutils-gdb] Implement 'set/show exec-file-mismatch' gdb-buildbot
@ 2020-01-25 14:51 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-25 14:51 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/1838

Author:
        Philippe Waroquiers <philippe.waroquiers@skynet.be>

Commit tested:
        a2fedca99c622e1b523046d09f573b06de0207a6

Subject of commit:
        Implement 'set/show exec-file-mismatch'.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/a2/a2fedca99c622e1b523046d09f573b06de0207a6/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/argv0-symlink.exp: argv[0] should be available on this target
new FAIL: gdb.base/argv0-symlink.exp: run to main
new FAIL: gdb.base/gdb-caching-proc.exp: argv[0] should be available on this target
new FAIL: gdb.base/gdb-caching-proc.exp: run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tc-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tc-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tc-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ti: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tl: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tll: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ts: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tdc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-ti: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tl: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tll: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-ts: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tfc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ti: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tl-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tl-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tl-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tl: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-ti: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tl: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tll: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-ts: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tldc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tll-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tll-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tll-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tll: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ts-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ts-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ts-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ts: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tc-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tc-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tc-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-tc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-ti: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-tl: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-tll: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-ts: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tdc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-ti: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tl: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tll: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-ts: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tfc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ti-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ti: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tl-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tl-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tl-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tl: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-ti: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tl: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tll: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-ts: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tldc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tll-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tll-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tll-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tll: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ts-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ts-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ts-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ts: can't run to main
new FAIL: gdb.base/info-types.exp: l=c++: can't run to main
new FAIL: gdb.base/info-types.exp: l=c: can't run to main
new FAIL: gdb.base/max-depth.exp: l=c++: can't run to main
new FAIL: gdb.base/max-depth.exp: l=c: can't run to main
new FAIL: gdb.cp/infcall-nodebug.exp: l=c++: s=debug: can't run to main
new FAIL: gdb.cp/infcall-nodebug.exp: l=c++: s=nodebug: can't run to main
new FAIL: gdb.cp/infcall-nodebug.exp: l=c: s=debug: can't run to main
new FAIL: gdb.cp/infcall-nodebug.exp: l=c: s=nodebug: can't run to main
PASS -> FAIL: gdb.multi/multi-re-run.exp: re_run_inf=1: iter=1: running to all_started in runto
PASS -> FAIL: gdb.multi/multi-re-run.exp: re_run_inf=2: running to all_started in runto
==============================================

*** 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/a2/a2fedca99c622e1b523046d09f573b06de0207a6//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/a2/a2fedca99c622e1b523046d09f573b06de0207a6//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-25  0:51 [binutils-gdb] gdb: Include end of sequence markers in the line table gdb-buildbot
@ 2020-01-25  0:44 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-25  0:44 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/1835

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        94a72be7086fa1870eca83d4d6f55cadf48f66b2

Subject of commit:
        gdb: Include end of sequence markers in the line table

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/94/94a72be7086fa1870eca83d4d6f55cadf48f66b2/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
==============================================

*** 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/94/94a72be7086fa1870eca83d4d6f55cadf48f66b2//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/94/94a72be7086fa1870eca83d4d6f55cadf48f66b2//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-24 22:55 [binutils-gdb] RISC-V: Minor cleanup for s extension support gdb-buildbot
@ 2020-01-24 23:30 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-24 23:30 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/1834

Author:
        Jim Wilson <jimw@sifive.com>

Commit tested:
        b5f998b2dd80e673b1506fbe5113e5e4834346bc

Subject of commit:
        RISC-V: Minor cleanup for s extension support.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/b5/b5f998b2dd80e673b1506fbe5113e5e4834346bc/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/b5/b5f998b2dd80e673b1506fbe5113e5e4834346bc//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/b5/b5f998b2dd80e673b1506fbe5113e5e4834346bc//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-24 20:32 [binutils-gdb] Fix re-runs of a second inferior (PR gdb/25410) gdb-buildbot
@ 2020-01-24 20:29 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-24 20:29 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/1833

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        53af73bf5e9bad42a76bcc47cdf44d91bbbc4eb7

Subject of commit:
        Fix re-runs of a second inferior (PR gdb/25410)

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/53/53af73bf5e9bad42a76bcc47cdf44d91bbbc4eb7/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
==============================================

*** 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/53/53af73bf5e9bad42a76bcc47cdf44d91bbbc4eb7//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/53/53af73bf5e9bad42a76bcc47cdf44d91bbbc4eb7//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-24 17:50 [binutils-gdb] Define _KERNTYPES in arm-nbsd-nat.c gdb-buildbot
@ 2020-01-24 18:09 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-24 18:09 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/1830

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        73685c7ededdde511ae6a7f827fa29ec8502892a

Subject of commit:
        Define _KERNTYPES in arm-nbsd-nat.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/73/73685c7ededdde511ae6a7f827fa29ec8502892a/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
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/Ubuntu-Aarch64-native-gdbserver-m64/73/73685c7ededdde511ae6a7f827fa29ec8502892a//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/73/73685c7ededdde511ae6a7f827fa29ec8502892a//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-24 13:32 [binutils-gdb] gdbserver: Remove a stale TAGS recipe for config files gdb-buildbot
@ 2020-01-24 15:32 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-24 15:32 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/1826

Author:
        Maciej W. Rozycki <macro@wdc.com>

Commit tested:
        42ba50eccbb9793a68d19b4f04598ab657201fcc

Subject of commit:
        gdbserver: Remove a stale TAGS recipe for config files

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/42/42ba50eccbb9793a68d19b4f04598ab657201fcc/

*** Diff to previous build ***
==============================================
new KPASS: gdb.cp/cpexprs.exp: p CV::m
new KFAIL: gdb.cp/local.exp: ptype InnerLocal::NestedInnerLocal
new KFAIL: gdb.cp/oranking.exp: p foo0
new KFAIL: gdb.cp/oranking.exp: p foo10
new KFAIL: gdb.cp/oranking.exp: p foo11
new KFAIL: gdb.cp/oranking.exp: p foo13
new KFAIL: gdb.cp/oranking.exp: p foo14
new KFAIL: gdb.cp/oranking.exp: p foo2
new KFAIL: gdb.cp/templates.exp: ptype fvpchar
new KFAIL: gdb.cp/var-tag.exp: global collision: print global
new UNRESOLVED: gdb.dwarf2/dw2-icc-opaque.exp: ptype p_struct
new KFAIL: gdb.dwarf2/dw2-simple-locdesc.exp: p &s.shl
new UNRESOLVED: gdb.gdb/unittest.exp: maintenance check xml-descriptions ${srcdir}/../features
new FAIL: gdb.gdb/unittest.exp: maintenance selftest
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/Ubuntu-Aarch64-native-gdbserver-m64/42/42ba50eccbb9793a68d19b4f04598ab657201fcc//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/42/42ba50eccbb9793a68d19b4f04598ab657201fcc//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ 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:47 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ 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] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-24  3:19 [binutils-gdb] gdb: Enable stdin on exception in execute_gdb_command gdb-buildbot
@ 2020-01-24  3:46 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-24  3:46 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/1823

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        1ba1ac88011703abcd0271e4f5d00927dc69a09a

Subject of commit:
        gdb: Enable stdin on exception in execute_gdb_command

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/1b/1ba1ac88011703abcd0271e4f5d00927dc69a09a/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.linespec/ls-errs.exp: lang=C++: can't run to main
PASS -> UNRESOLVED: gdb.mi/mi-complete.exp: -complete br
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/Ubuntu-Aarch64-native-gdbserver-m64/1b/1ba1ac88011703abcd0271e4f5d00927dc69a09a//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/1b/1ba1ac88011703abcd0271e4f5d00927dc69a09a//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-24  1:36 [binutils-gdb] gdb/tui: asm window handles invalid memory and scrolls better gdb-buildbot
@ 2020-01-24  2:21 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-24  2:21 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/1821

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        733d0a679536628eb1be4b4b8aa6384de24ff1f1

Subject of commit:
        gdb/tui: asm window handles invalid memory and scrolls better

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/73/733d0a679536628eb1be4b4b8aa6384de24ff1f1/

*** Diff to previous build ***
==============================================
new FAIL: gdb.tui/tui-layout-asm.exp: scroll to end of assembler
==============================================

*** 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/73/733d0a679536628eb1be4b4b8aa6384de24ff1f1//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/73/733d0a679536628eb1be4b4b8aa6384de24ff1f1//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-24  1:15 [binutils-gdb] gdb/tui: Prevent exceptions from trying to cross readline gdb-buildbot
@ 2020-01-24  1:30 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-24  1:30 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/1820

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        2f267673f0fdee9287e6d404ecd4f2d29da0d2f2

Subject of commit:
        gdb/tui: Prevent exceptions from trying to cross readline

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/2f/2f267673f0fdee9287e6d404ecd4f2d29da0d2f2/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/2f/2f267673f0fdee9287e6d404ecd4f2d29da0d2f2//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/2f/2f267673f0fdee9287e6d404ecd4f2d29da0d2f2//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-24  0:26 [binutils-gdb] gdb: introduce objfile text_section_offset and data_section_offset methods gdb-buildbot
@ 2020-01-24  0:31 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-24  0:31 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/1819

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        b3b3bada0d514f8e57a04fd333f05d1da94e2304

Subject of commit:
        gdb: introduce objfile text_section_offset and data_section_offset methods

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/b3/b3b3bada0d514f8e57a04fd333f05d1da94e2304/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/b3/b3b3bada0d514f8e57a04fd333f05d1da94e2304//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/b3/b3b3bada0d514f8e57a04fd333f05d1da94e2304//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-23 23:30 [binutils-gdb] gdb: fix variable shadowing error in darwin-nat.c gdb-buildbot
@ 2020-01-23 23:45 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-23 23:45 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/1818

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        ab53f3826242df0f051f9a6fa4b2926687205025

Subject of commit:
        gdb: fix variable shadowing error in darwin-nat.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/ab/ab53f3826242df0f051f9a6fa4b2926687205025/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
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/Ubuntu-Aarch64-native-gdbserver-m64/ab/ab53f3826242df0f051f9a6fa4b2926687205025//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/ab/ab53f3826242df0f051f9a6fa4b2926687205025//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-23 18:35 [binutils-gdb] Cache the text section offset of shared libraries gdb-buildbot
@ 2020-01-23 18:51 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-23 18:51 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/1816

Author:
        Hannes Domani <ssbssa@yahoo.de>

Commit tested:
        c162ed3e66aa985fa2e79d0e7ccd2da80a532c1e

Subject of commit:
        Cache the text section offset of shared libraries

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/c1/c162ed3e66aa985fa2e79d0e7ccd2da80a532c1e/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/c1/c162ed3e66aa985fa2e79d0e7ccd2da80a532c1e//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/c1/c162ed3e66aa985fa2e79d0e7ccd2da80a532c1e//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-23 11:18 [binutils-gdb] PR25444, Floating point exception in _bfd_elf_compute_section_file_positions gdb-buildbot
@ 2020-01-23 11:51 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-23 11:51 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/1814

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        67641dd326e026b84d0e4ce47f32f71132449e27

Subject of commit:
        PR25444, Floating point exception in _bfd_elf_compute_section_file_positions

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/67/67641dd326e026b84d0e4ce47f32f71132449e27/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/67/67641dd326e026b84d0e4ce47f32f71132449e27//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/67/67641dd326e026b84d0e4ce47f32f71132449e27//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-22 22:31 [binutils-gdb] MSP430: Fix simulator execution of RRUX instruction gdb-buildbot
@ 2020-01-22 23:05 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-22 23:05 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/1812

Author:
        Jozef Lawrynowicz <jozef.l@mittosystems.com>

Commit tested:
        b7dcc42dfde12c3a1ccb7149b3cf8ef2f0992ea3

Subject of commit:
        MSP430: Fix simulator execution of RRUX instruction

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/b7/b7dcc42dfde12c3a1ccb7149b3cf8ef2f0992ea3/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
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/Ubuntu-Aarch64-native-gdbserver-m64/b7/b7dcc42dfde12c3a1ccb7149b3cf8ef2f0992ea3//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/b7/b7dcc42dfde12c3a1ccb7149b3cf8ef2f0992ea3//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-21 23:55 [binutils-gdb] gdb: add declaration for _initialize_gdbarch in gdbarch.sh gdb-buildbot
@ 2020-01-22  0:28 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-22  0:28 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/1807

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        a12378729f404ef0b6e9a4e8378dfd747dd5beb6

Subject of commit:
        gdb: add declaration for _initialize_gdbarch in gdbarch.sh

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/a1/a12378729f404ef0b6e9a4e8378dfd747dd5beb6/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/a1/a12378729f404ef0b6e9a4e8378dfd747dd5beb6//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/a1/a12378729f404ef0b6e9a4e8378dfd747dd5beb6//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-21 20:17 [binutils-gdb] Allow use of Pygments to colorize source code gdb-buildbot
@ 2020-01-21 21:02 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-21 21:02 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/1804

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        f6474de9aacec990d44d2d65a337668b389efd99

Subject of commit:
        Allow use of Pygments to colorize source code

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/f6/f6474de9aacec990d44d2d65a337668b389efd99/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/f6/f6474de9aacec990d44d2d65a337668b389efd99//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/f6/f6474de9aacec990d44d2d65a337668b389efd99//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-21 14:43 [binutils-gdb] Add more debugging output to aarch64_displaced_step_fixup gdb-buildbot
@ 2020-01-21 15:15 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-21 15:15 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/1802

Author:
        Luis Machado <luis.machado@linaro.org>

Commit tested:
        1ab139e5bedfec2bb277287574cc0322c21a252b

Subject of commit:
        Add more debugging output to aarch64_displaced_step_fixup

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/1a/1ab139e5bedfec2bb277287574cc0322c21a252b/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/1a/1ab139e5bedfec2bb277287574cc0322c21a252b//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/1a/1ab139e5bedfec2bb277287574cc0322c21a252b//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-21 14:14 [binutils-gdb] Fix step-over-syscall.exp failure gdb-buildbot
@ 2020-01-21 14:32 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-21 14:32 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/1801

Author:
        Luis Machado <luis.machado@linaro.org>

Commit tested:
        0c27188999bfc5bf03536bf44593c4ed8df296c3

Subject of commit:
        Fix step-over-syscall.exp failure

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/0c/0c27188999bfc5bf03536bf44593c4ed8df296c3/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
==============================================

*** 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/0c/0c27188999bfc5bf03536bf44593c4ed8df296c3//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/0c/0c27188999bfc5bf03536bf44593c4ed8df296c3//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-21  8:09 [binutils-gdb] x86: VCVTNEPS2BF16{X,Y} should permit broadcasting gdb-buildbot
@ 2020-01-21  8:38 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-21  8:38 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/1799

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        c906a69a1f30c12074165f5be0027249c643e904

Subject of commit:
        x86: VCVTNEPS2BF16{X,Y} should permit broadcasting

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/c9/c906a69a1f30c12074165f5be0027249c643e904/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/c9/c906a69a1f30c12074165f5be0027249c643e904//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/c9/c906a69a1f30c12074165f5be0027249c643e904//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-20 12:44 [binutils-gdb] PowerPC64 ppc_elf_hash_entry, defined_sym_val, is_tls_get_addr gdb-buildbot
@ 2020-01-20 13:14 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-20 13:14 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/1795

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        ed7007c18a83d0d654c366d507fcf053985c698b

Subject of commit:
        PowerPC64 ppc_elf_hash_entry, defined_sym_val, is_tls_get_addr

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/ed/ed7007c18a83d0d654c366d507fcf053985c698b/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
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/Ubuntu-Aarch64-native-gdbserver-m64/ed/ed7007c18a83d0d654c366d507fcf053985c698b//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/ed/ed7007c18a83d0d654c366d507fcf053985c698b//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-20 11:55 [binutils-gdb] ubsan: hppa: negation of -2147483648 gdb-buildbot
@ 2020-01-20 12:09 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-20 12:09 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/1794

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        4d6cbb644265d565eb743ffa2bd04092c2b05518

Subject of commit:
        ubsan: hppa: negation of -2147483648

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/4d/4d6cbb644265d565eb743ffa2bd04092c2b05518/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/4d/4d6cbb644265d565eb743ffa2bd04092c2b05518//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/4d/4d6cbb644265d565eb743ffa2bd04092c2b05518//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-20  4:28 [binutils-gdb] Replace init_cutu_and_read_dies with a class gdb-buildbot
@ 2020-01-20  4:28 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-20  4:28 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/1789

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        c0ab21c22bb28a2e1a42195d3fe9b9de9e7fd66b

Subject of commit:
        Replace init_cutu_and_read_dies with a class

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/c0/c0ab21c22bb28a2e1a42195d3fe9b9de9e7fd66b/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/c0/c0ab21c22bb28a2e1a42195d3fe9b9de9e7fd66b//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/c0/c0ab21c22bb28a2e1a42195d3fe9b9de9e7fd66b//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-20  3:57 [binutils-gdb] Remove flickering from the TUI gdb-buildbot
@ 2020-01-20  3:57 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-20  3:57 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/1788

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        45bbae5c4b34ef6336cc2a3951f1edf191ff3733

Subject of commit:
        Remove flickering from the TUI

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/45/45bbae5c4b34ef6336cc2a3951f1edf191ff3733/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/45/45bbae5c4b34ef6336cc2a3951f1edf191ff3733//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/45/45bbae5c4b34ef6336cc2a3951f1edf191ff3733//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-18 16:17 [binutils-gdb] Update version to 2.34.50. Regenerate configure and .pot files gdb-buildbot
@ 2020-01-18 16:25 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-18 16:25 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/1781

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        1b1bb2c67bba67bcf0a9382fb6b6c61874e9b089

Subject of commit:
        Update version to 2.34.50.  Regenerate configure and .pot files.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/1b/1b1bb2c67bba67bcf0a9382fb6b6c61874e9b089/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/1b/1b1bb2c67bba67bcf0a9382fb6b6c61874e9b089//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/1b/1b1bb2c67bba67bcf0a9382fb6b6c61874e9b089//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-18 14:20 [binutils-gdb] Update top level config files with copies from the official repository gdb-buildbot
@ 2020-01-18 15:01 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-18 15:01 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/1779

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        4fb3a8daaf140ed94beef556d007013f3c5bd738

Subject of commit:
        Update top level config files with copies from the official repository.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/4f/4fb3a8daaf140ed94beef556d007013f3c5bd738/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
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/Ubuntu-Aarch64-native-gdbserver-m64/4f/4fb3a8daaf140ed94beef556d007013f3c5bd738//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/4f/4fb3a8daaf140ed94beef556d007013f3c5bd738//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-17 20:48 [binutils-gdb] Fix spelling errors gdb-buildbot
@ 2020-01-18 14:01 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-18 14:01 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/1777

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        07f1f3aa536add16b20f2792e1c325fb02b7da2d

Subject of commit:
        Fix spelling errors

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/07/07f1f3aa536add16b20f2792e1c325fb02b7da2d/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
==============================================

*** 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/07/07f1f3aa536add16b20f2792e1c325fb02b7da2d//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/07/07f1f3aa536add16b20f2792e1c325fb02b7da2d//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-17 19:32 [binutils-gdb] Fix a libiberty testsuite failure gdb-buildbot
@ 2020-01-17 23:17 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-17 23:17 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/1776

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        76e29444375e473ca75f0dc554303f55080836ba

Subject of commit:
        Fix a libiberty testsuite failure.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/76/76e29444375e473ca75f0dc554303f55080836ba/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/76/76e29444375e473ca75f0dc554303f55080836ba//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/76/76e29444375e473ca75f0dc554303f55080836ba//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-17 17:58 [binutils-gdb] Fix gdbsupport build gdb-buildbot
@ 2020-01-17 21:21 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-17 21:21 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/1774

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        3684d331fd35f49e4022ac6906dc879552af0442

Subject of commit:
        Fix gdbsupport build

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/36/3684d331fd35f49e4022ac6906dc879552af0442/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/36/3684d331fd35f49e4022ac6906dc879552af0442//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/36/3684d331fd35f49e4022ac6906dc879552af0442//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-17 16:50 [binutils-gdb] gdb: remove uses of iterate_over_inferiors in mi/mi-main.c gdb-buildbot
@ 2020-01-17 18:33 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-17 18:33 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/1771

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        a9ac81b1a7902a4c41f5653032e2971a767accc4

Subject of commit:
        gdb: remove uses of iterate_over_inferiors in mi/mi-main.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/a9/a9ac81b1a7902a4c41f5653032e2971a767accc4/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 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/Ubuntu-Aarch64-native-gdbserver-m64/a9/a9ac81b1a7902a4c41f5653032e2971a767accc4//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/a9/a9ac81b1a7902a4c41f5653032e2971a767accc4//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-17 16:40 [binutils-gdb] gdb: remove use of iterate_over_inferiors in mi/mi-interp.c gdb-buildbot
@ 2020-01-17 17:54 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-17 17:54 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/1770

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        788eca4949d08494109249d35cd599971ce6ec51

Subject of commit:
        gdb: remove use of iterate_over_inferiors in mi/mi-interp.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/78/788eca4949d08494109249d35cd599971ce6ec51/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================

*** 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/78/788eca4949d08494109249d35cd599971ce6ec51//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/78/788eca4949d08494109249d35cd599971ce6ec51//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-17 16:16 [binutils-gdb] gdb: remove use of iterate_over_inferiors in py-inferior.c gdb-buildbot
@ 2020-01-17 17:05 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-17 17:05 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/1769

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        d9bc85b65b3daab0c3579be0efc3b33c1ef24620

Subject of commit:
        gdb: remove use of iterate_over_inferiors in py-inferior.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/d9/d9bc85b65b3daab0c3579be0efc3b33c1ef24620/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
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/Ubuntu-Aarch64-native-gdbserver-m64/d9/d9bc85b65b3daab0c3579be0efc3b33c1ef24620//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/d9/d9bc85b65b3daab0c3579be0efc3b33c1ef24620//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-17 14:39 [binutils-gdb] Update libiberty sources with changes in the gcc mainline gdb-buildbot
@ 2020-01-17 15:26 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-17 15:26 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/1767

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        533da48302a26885a972e4379eccc26b364e5b53

Subject of commit:
        Update libiberty sources with changes in the gcc mainline.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/53/533da48302a26885a972e4379eccc26b364e5b53/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 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/Ubuntu-Aarch64-native-gdbserver-m64/53/533da48302a26885a972e4379eccc26b364e5b53//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/53/533da48302a26885a972e4379eccc26b364e5b53//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-16 23:47 [binutils-gdb] Fix some spelling errors gdb-buildbot
@ 2020-01-16 23:38 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-16 23:38 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/1766

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        40c940992759aba79013a2c590c29f03ea754e77

Subject of commit:
        Fix some spelling errors.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/40/40c940992759aba79013a2c590c29f03ea754e77/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================

*** 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/40/40c940992759aba79013a2c590c29f03ea754e77//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/40/40c940992759aba79013a2c590c29f03ea754e77//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-16 17:59 [binutils-gdb] Support for DWARF5 location lists entries gdb-buildbot
@ 2020-01-16 18:33 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-16 18:33 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/1762

Author:
        Nitika Achra <Nitika.Achra@amd.com>

Commit tested:
        3112ed9799124edf4d1f9c903da0d59f5a4ca102

Subject of commit:
        Support for DWARF5 location lists entries

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/31/3112ed9799124edf4d1f9c903da0d59f5a4ca102/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/31/3112ed9799124edf4d1f9c903da0d59f5a4ca102//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/31/3112ed9799124edf4d1f9c903da0d59f5a4ca102//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-16 11:54 [binutils-gdb] x86: drop stale Vec_Imm4 related comment gdb-buildbot
@ 2020-01-16 11:51 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-16 11:51 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/1760

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        d0849eed78268cee12d4540c67a2d9813d44f61c

Subject of commit:
        x86: drop stale Vec_Imm4 related comment

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/d0/d0849eed78268cee12d4540c67a2d9813d44f61c/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
==============================================

*** 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/d0/d0849eed78268cee12d4540c67a2d9813d44f61c//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/d0/d0849eed78268cee12d4540c67a2d9813d44f61c//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-16 10:31 [binutils-gdb] x86: add a few more missing VexWIG gdb-buildbot
@ 2020-01-16 11:08 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-16 11:08 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/1759

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        9cf70a448bed3f91fadc0e89ab0f4e5c0d79d975

Subject of commit:
        x86: add a few more missing VexWIG

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/9c/9cf70a448bed3f91fadc0e89ab0f4e5c0d79d975/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 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/Ubuntu-Aarch64-native-gdbserver-m64/9c/9cf70a448bed3f91fadc0e89ab0f4e5c0d79d975//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/9c/9cf70a448bed3f91fadc0e89ab0f4e5c0d79d975//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-16  9:59 [binutils-gdb] x86: VPEXTRQ/VPINSRQ are unavailable outside of 64-bit mode gdb-buildbot
@ 2020-01-16 10:03 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-16 10: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/1758

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        4814632e69636177b71b8d091009a0ec614916ec

Subject of commit:
        x86: VPEXTRQ/VPINSRQ are unavailable outside of 64-bit mode

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/48/4814632e69636177b71b8d091009a0ec614916ec/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================

*** 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/48/4814632e69636177b71b8d091009a0ec614916ec//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/48/4814632e69636177b71b8d091009a0ec614916ec//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-15 19:14 [binutils-gdb] texi2pod.pl: import support for @t{...} from gcc gdb-buildbot
@ 2020-01-15 19:59 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-15 19:59 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/1757

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        c12081a66b4abe34d2c858c78d4028606a082579

Subject of commit:
        texi2pod.pl: import support for @t{...} from gcc

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/c1/c12081a66b4abe34d2c858c78d4028606a082579/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/c1/c12081a66b4abe34d2c858c78d4028606a082579//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/c1/c12081a66b4abe34d2c858c78d4028606a082579//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-15 15:44 [binutils-gdb] Set the default page size of the PDP11 target to 8192 bytes gdb-buildbot
@ 2020-01-15 16:30 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-15 16:30 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/1754

Author:
        Lars Brinkhoff <lars@nocrew.org>

Commit tested:
        0d1cc75df1c9a356dfa47932e9ec52fca7d8f5ab

Subject of commit:
        Set the default page size of the PDP11 target to 8192 bytes.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/0d/0d1cc75df1c9a356dfa47932e9ec52fca7d8f5ab/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/0d/0d1cc75df1c9a356dfa47932e9ec52fca7d8f5ab//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/0d/0d1cc75df1c9a356dfa47932e9ec52fca7d8f5ab//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-15 14:49 [binutils-gdb] tic4x disassembly static variables gdb-buildbot
@ 2020-01-15 15:28 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-15 15:28 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/1753

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        aad09917e04b33da463f1703aab8d057cfe3f54e

Subject of commit:
        tic4x disassembly static variables

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/aa/aad09917e04b33da463f1703aab8d057cfe3f54e/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/aa/aad09917e04b33da463f1703aab8d057cfe3f54e//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/aa/aad09917e04b33da463f1703aab8d057cfe3f54e//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-15  5:13 [binutils-gdb] PR25384, PowerPC64 ELFv1 copy relocs against function symbols gdb-buildbot
@ 2020-01-15  5:58 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-15  5:58 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/1751

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        e1c6cf618cbeebbafd34afc5ee921fcbf7061bfa

Subject of commit:
        PR25384, PowerPC64 ELFv1 copy relocs against function symbols

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/e1/e1c6cf618cbeebbafd34afc5ee921fcbf7061bfa/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/e1/e1c6cf618cbeebbafd34afc5ee921fcbf7061bfa//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/e1/e1c6cf618cbeebbafd34afc5ee921fcbf7061bfa//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-15  4:55 [binutils-gdb] Fix valgrind error from gdb.decode_line gdb-buildbot
@ 2020-01-15  5:09 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-15  5:09 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/1750

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        ff47f4f06d296b672337e2c7363a745cd2725f58

Subject of commit:
        Fix valgrind error from gdb.decode_line

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/ff/ff47f4f06d296b672337e2c7363a745cd2725f58/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/ff/ff47f4f06d296b672337e2c7363a745cd2725f58//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/ff/ff47f4f06d296b672337e2c7363a745cd2725f58//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-15  4:11 [binutils-gdb] Don't link gdb twice against libiberty gdb-buildbot
@ 2020-01-15  4:21 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-15  4:21 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/1749

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        975f45b7e103929f3ed05d7a4dc71bb5fc320810

Subject of commit:
        Don't link gdb twice against libiberty

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/97/975f45b7e103929f3ed05d7a4dc71bb5fc320810/

*** Diff to previous build ***
==============================================
new KFAIL: gdb.base/argv0-symlink.exp: kept directory symbolic link name
new FAIL: gdb.base/break-probes.exp: ensure using probes
new FAIL: gdb.base/catch-syscall.exp: execve: continue to main
new FAIL: gdb.base/catch-syscall.exp: execve: continue until exit
new FAIL: gdb.base/catch-syscall.exp: execve: syscall execve has returned
new FAIL: gdb.base/compare-sections.exp: after reload: compare-sections
new FAIL: gdb.base/compare-sections.exp: after reload: compare-sections -r
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections -r
new FAIL: gdb.base/compare-sections.exp: compare-sections .text
new FAIL: gdb.base/compare-sections.exp: read-only: compare-sections -r
new FAIL: gdb.base/default.exp: cd
new KFAIL: gdb.base/foll-vfork.exp: exit: vfork child follow, finish after tcatch vfork: finish
new KFAIL: gdb.base/info-macros.exp: info macros info-macros.c:42
new FAIL: gdb.base/interrupt-daemon.exp: bg: continue&
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt cmd stops process
new FAIL: gdb.base/interrupt-daemon.exp: fg: ctrl-c stops process
new FAIL: gdb.base/large-frame.exp: optimize=-O0: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O1: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O2: backtrace
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp_4_2_from_macscp3'
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_2_from_macscp3
new KFAIL: gdb.base/radix.exp: print 20.; expect 14; output radix 16
new KFAIL: gdb.base/radix.exp: print 20.; expect 24; output radix 8
new UNRESOLVED: gdb.base/readline-ask.exp: bell for more message
new UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
new FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : shell sleep 1
new FAIL: gdb.base/setshow.exp: set language asm
new KFAIL: gdb.base/sigbpt.exp: stepi bp at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before and at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi; stepi out of handler
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: continue to end of inf 2
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: continue to marker
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : vfork: continue to end of inf 2
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : vfork: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : vfork: continue to marker
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : vfork: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: continue to syscall insn vfork
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: single step over vfork
new FAIL: gdb.base/store.exp: upvar doublest l; print old r, expecting -2
new FAIL: gdb.base/store.exp: var doublest l; print old r, expecting -2
new UNRESOLVED: gdb.base/symbol-without-target_section.exp: list main
new UNRESOLVED: gdb.base/symbol-without-target_section.exp: print symbol_without_target_section
new KFAIL: gdb.base/utf8-identifiers.exp: tab complete "break fun"
new KFAIL: gdb.base/watchpoint-unaligned.exp: wpcount
new KPASS: gdb.cp/cpexprs.exp: p CV::m
new KFAIL: gdb.cp/local.exp: ptype InnerLocal::NestedInnerLocal
new FAIL: gdb.cp/no-dmgl-verbose.exp: setting breakpoint at 'f
new KFAIL: gdb.cp/oranking.exp: p foo0
new KFAIL: gdb.cp/oranking.exp: p foo10
new KFAIL: gdb.cp/oranking.exp: p foo11
new KFAIL: gdb.cp/oranking.exp: p foo13
new KFAIL: gdb.cp/oranking.exp: p foo14
new KFAIL: gdb.cp/oranking.exp: p foo2
new KFAIL: gdb.cp/rvalue-ref-overload.exp: rvalue reference overload
new KFAIL: gdb.cp/templates.exp: ptype fvpchar
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid
new KFAIL: gdb.cp/var-tag.exp: global collision: print global
new KFAIL: gdb.cp/virtfunc.exp: print pEe->D::vg
new UNRESOLVED: gdb.dwarf2/dw2-icc-opaque.exp: ptype p_struct
new KFAIL: gdb.dwarf2/dw2-simple-locdesc.exp: p &s.shl
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 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/Ubuntu-Aarch64-native-gdbserver-m64/97/975f45b7e103929f3ed05d7a4dc71bb5fc320810//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/97/975f45b7e103929f3ed05d7a4dc71bb5fc320810//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-15  2:25 [binutils-gdb] Remove use of <config.h> from gdb/nat/ gdb-buildbot
@ 2020-01-15  2:48 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-15  2:48 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/1747

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        25e573565306c51df462eb6a957f86fc130ee580

Subject of commit:
        Remove use of <config.h> from gdb/nat/

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/25/25e573565306c51df462eb6a957f86fc130ee580/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
==============================================

*** 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/25/25e573565306c51df462eb6a957f86fc130ee580//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/25/25e573565306c51df462eb6a957f86fc130ee580//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-15  1:54 [binutils-gdb] Move many configure checks to common.m4 gdb-buildbot
@ 2020-01-15  1:50 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-15  1:50 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/1746

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        05ea2a051030a452bb1f4710dafeb1054cf38c17

Subject of commit:
        Move many configure checks to common.m4

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/05/05ea2a051030a452bb1f4710dafeb1054cf38c17/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================

*** 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/05/05ea2a051030a452bb1f4710dafeb1054cf38c17//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/05/05ea2a051030a452bb1f4710dafeb1054cf38c17//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-15  0:50 [binutils-gdb] Consolidate definition of USE_WIN32API gdb-buildbot
@ 2020-01-15  0:57 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-15  0:57 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/1744

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        b2ceabe8f0c2056342834b2b3f52f3b015538df3

Subject of commit:
        Consolidate definition of USE_WIN32API

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/b2/b2ceabe8f0c2056342834b2b3f52f3b015538df3/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/b2/b2ceabe8f0c2056342834b2b3f52f3b015538df3//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/b2/b2ceabe8f0c2056342834b2b3f52f3b015538df3//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-14 20:50 [binutils-gdb] Make skip without argument skip the current inline function gdb-buildbot
@ 2020-01-14 21:29 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-14 21:29 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/1742

Author:
        Bernd Edlinger <bernd.edlinger@hotmail.de>

Commit tested:
        717c684dd1afe36293a256aa2bce4b3af56402c5

Subject of commit:
        Make skip without argument skip the current inline function

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/71/717c684dd1afe36293a256aa2bce4b3af56402c5/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 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/Ubuntu-Aarch64-native-gdbserver-m64/71/717c684dd1afe36293a256aa2bce4b3af56402c5//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/71/717c684dd1afe36293a256aa2bce4b3af56402c5//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-14 15:29 [binutils-gdb] Fix/Update misc comments gdb-buildbot
@ 2020-01-14 15:10 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-14 15:10 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/1741

Author:
        Luis Machado <luis.machado@linaro.org>

Commit tested:
        7da6a5b938b426379f61e56e259a925bedfe242b

Subject of commit:
        Fix/Update misc comments

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/7d/7da6a5b938b426379f61e56e259a925bedfe242b/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================

*** 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/7d/7da6a5b938b426379f61e56e259a925bedfe242b//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/7d/7da6a5b938b426379f61e56e259a925bedfe242b//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-14 13:50 [binutils-gdb] Fix various assembler testsuite failures for the Z80 target gdb-buildbot
@ 2020-01-14 14:16 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-14 14:16 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/1740

Author:
        Sergey Belyashov <sergey.belyashov@gmail.com>

Commit tested:
        7a6bf3becbe3e0ce47d2681edcfe7adcb67fe4e2

Subject of commit:
        Fix various assembler testsuite failures for the Z80 target.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/7a/7a6bf3becbe3e0ce47d2681edcfe7adcb67fe4e2/

*** Diff to previous build ***
==============================================
new KFAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new FAIL: gdb.server/ext-run.exp: get process list
new FAIL: gdb.server/solib-list.exp: non-stop 0: p libvar
new FAIL: gdb.server/solib-list.exp: non-stop 1: p libvar
new FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 4
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=3: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=4: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=5: created new thread
new KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: detach: continue
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: killed outside: continue
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: continue
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: continue
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
new FAIL: gdb.threads/tls.exp: print a_thread_local
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_asm_test
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_c_test
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_recursion_test 0
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_asm_test
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_c_test
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_recursion_test 0
new FAIL: gdb.trace/change-loc.exp: 1 trace: continue to marker 2
new FAIL: gdb.trace/change-loc.exp: 1 trace: continue to marker 3
new FAIL: gdb.trace/change-loc.exp: 1 trace: tfind frame 0
new FAIL: gdb.trace/change-loc.exp: 1 trace: tracepoint with two locations - installed
new FAIL: gdb.trace/change-loc.exp: 1 trace: tracepoint with two locations - pending
new FAIL: gdb.trace/change-loc.exp: 2 trace: continue to marker 2
new FAIL: gdb.trace/change-loc.exp: 2 trace: continue to marker 3
new FAIL: gdb.trace/change-loc.exp: 2 trace: tfind frame 2
new FAIL: gdb.trace/change-loc.exp: 2 trace: tracepoint with two locations - installed
new FAIL: gdb.trace/change-loc.exp: 2 trace: tracepoint with two locations - pending
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local char
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local double
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local float
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local int
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member char
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member double
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member float
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member int
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #0
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #1
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #2
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #3
new FAIL: gdb.trace/collection.exp: collect register locals collectively: start trace experiment
new FAIL: gdb.trace/collection.exp: collect register locals collectively: tfind test frame
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local char
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local double
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local float
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local int
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member char
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member double
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member float
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member int
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #0
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #1
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #2
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #3
new FAIL: gdb.trace/collection.exp: collect register locals individually: define actions
new FAIL: gdb.trace/pending.exp: ftrace installed_in_trace: continue to marker 2
new FAIL: gdb.trace/pending.exp: ftrace installed_in_trace: tfind test frame 0
new FAIL: gdb.trace/pending.exp: trace installed_in_trace: continue to marker 2
new FAIL: gdb.trace/pending.exp: trace installed_in_trace: tfind test frame 0
new FAIL: gdb.trace/signal.exp: tracepoint 4 hit 3 times
new FAIL: gdb.trace/signal.exp: tracepoint 5 hit 3 times
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: tfile: info locals
new FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
new FAIL: gdb.tui/resize.exp: source box after resize
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/Ubuntu-Aarch64-native-gdbserver-m64/7a/7a6bf3becbe3e0ce47d2681edcfe7adcb67fe4e2//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/7a/7a6bf3becbe3e0ce47d2681edcfe7adcb67fe4e2//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-14 10:51 [binutils-gdb] som: Don't loop forever reading symbol chains gdb-buildbot
@ 2020-01-14 11:36 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-14 11:36 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/1739

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        ef4e5ba50c76511d4306edf1526c15269f1d7747

Subject of commit:
        som: Don't loop forever reading symbol chains

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/ef/ef4e5ba50c76511d4306edf1526c15269f1d7747/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.multi/watchpoint-multi-exit.exp: dispose=exit: continue in inferior 1
PASS -> FAIL: gdb.multi/watchpoint-multi-exit.exp: dispose=exit: run to exit inferior 2
new FAIL: gdb.multi/watchpoint-multi-exit.exp: dispose=exit: setting breakpoint at marker
PASS -> FAIL: gdb.multi/watchpoint-multi-exit.exp: dispose=exit: switch back to inferior 1
new UNRESOLVED: gdb.python/lib-types.exp: can't run to main
new UNRESOLVED: gdb.python/lib-types.exp: check if python 3
new UNRESOLVED: gdb.python/lib-types.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.python/lib-types.exp: verify python support
new UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_address: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_address: eval address of main
PASS -> UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_address: int value of main
PASS -> UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_address: python gdb.Breakpoint
new UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_basic: cannot run to main.
new UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_basic: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_basic: python print
new UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_cond_and_cmds: cannot run to main.
new UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_cond_and_cmds: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_deletion: cannot run to main.
new UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_deletion: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: cannot run to main.
new UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_events: Create event handler - python
PASS -> UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_events: check for breakpoint_created event
PASS -> UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_events: check for breakpoint_deleted event
PASS -> UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_events: check for breakpoint_modified event
PASS -> UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_events: delete 1
PASS -> UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_events: disable 1
PASS -> UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_events: install breakpoint_created event listener
PASS -> UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_events: install breakpoint_deleted event listener
PASS -> UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_events: install breakpoint_modified event listener
PASS -> UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_events: python last_bp_event = None
new UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_events: setting breakpoint at 52
new UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_explicit_loc: cannot run to main.
new UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_explicit_loc: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_internal: cannot run to main.
new UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_internal: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_invisible: cannot run to main.
new UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_invisible: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_pending: Check pending status of pending breakpoint
new UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_pending: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_pending: setting breakpoint at nosuchfunction
new UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_qualified: cannot run to main.
new UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_qualified: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_temporary: cannot run to main.
new UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_temporary: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.python/py-breakpoint.exp: test_watchpoints: cannot run to main.
new UNRESOLVED: gdb.python/py-breakpoint.exp: test_watchpoints: delete all breakpoints in delete_breakpoints
==============================================

*** 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/ef/ef4e5ba50c76511d4306edf1526c15269f1d7747//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/ef/ef4e5ba50c76511d4306edf1526c15269f1d7747//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-14  9:29 [binutils-gdb] ubsan: alpha-vms: segv gdb-buildbot
@ 2020-01-14  9:29 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-14  9:29 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/1738

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        8ab484c23b9f3533fcd942e95887383786331f06

Subject of commit:
        ubsan: alpha-vms: segv

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/8a/8ab484c23b9f3533fcd942e95887383786331f06/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/8a/8ab484c23b9f3533fcd942e95887383786331f06//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/8a/8ab484c23b9f3533fcd942e95887383786331f06//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-14  8:15 [binutils-gdb] gdb: Handle malformed ELF, symbols in non-allocatable sections gdb-buildbot
@ 2020-01-14  8:15 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-14  8:15 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/1736

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        44e4c7757a733949d511d97a7d95db913f423f1b

Subject of commit:
        gdb: Handle malformed ELF, symbols in non-allocatable sections

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/44/44e4c7757a733949d511d97a7d95db913f423f1b/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/44/44e4c7757a733949d511d97a7d95db913f423f1b//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/44/44e4c7757a733949d511d97a7d95db913f423f1b//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-14  6:48 [binutils-gdb] gdb/testsuite: Allow DWARF assembler to create multiple line tables gdb-buildbot
@ 2020-01-14  7:42 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-14  7:42 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/1735

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        d93c6db74b7a9d6154f55f92d96f38819838bc99

Subject of commit:
        gdb/testsuite: Allow DWARF assembler to create multiple line tables

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/d9/d93c6db74b7a9d6154f55f92d96f38819838bc99/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 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/Ubuntu-Aarch64-native-gdbserver-m64/d9/d93c6db74b7a9d6154f55f92d96f38819838bc99//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/d9/d93c6db74b7a9d6154f55f92d96f38819838bc99//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-14  4:21 [binutils-gdb] gdb/tui: Place window titles in the center of the border gdb-buildbot
@ 2020-01-14  4:51 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-14  4:51 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/1732

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        9a6d629ccf328e3f041c3fcb7e91f49a5d72d0fb

Subject of commit:
        gdb/tui: Place window titles in the center of the border

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/9a/9a6d629ccf328e3f041c3fcb7e91f49a5d72d0fb/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
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/Ubuntu-Aarch64-native-gdbserver-m64/9a/9a6d629ccf328e3f041c3fcb7e91f49a5d72d0fb//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/9a/9a6d629ccf328e3f041c3fcb7e91f49a5d72d0fb//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-14  3:05 [binutils-gdb] gdbserver: remove rule for files from regformats/i386 gdb-buildbot
@ 2020-01-14  3:09 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-14  3:09 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/1730

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        c0bd321d770f3829d5dba3abb2e47443197a2e23

Subject of commit:
        gdbserver: remove rule for files from regformats/i386

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/c0/c0bd321d770f3829d5dba3abb2e47443197a2e23/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/c0/c0bd321d770f3829d5dba3abb2e47443197a2e23//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/c0/c0bd321d770f3829d5dba3abb2e47443197a2e23//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-13 23:37 [binutils-gdb] gdbserver: include gdbsupport/common-inferior.h in inferiors.c gdb-buildbot
@ 2020-01-13 23:54 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-13 23:54 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/1726

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        89e94ec9af58bfab38d469fe42c3eaf2aeb35e31

Subject of commit:
        gdbserver: include gdbsupport/common-inferior.h in inferiors.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/89/89e94ec9af58bfab38d469fe42c3eaf2aeb35e31/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/89/89e94ec9af58bfab38d469fe42c3eaf2aeb35e31//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/89e94ec9af58bfab38d469fe42c3eaf2aeb35e31//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-13 22:09 [binutils-gdb] gdb: add declaration to Python init function gdb-buildbot
@ 2020-01-13 22:32 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-13 22:32 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/1724

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        6b3661116e7b01676299710a96f47fe06bafacec

Subject of commit:
        gdb: add declaration to Python init function

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/6b/6b3661116e7b01676299710a96f47fe06bafacec/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/6b/6b3661116e7b01676299710a96f47fe06bafacec//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/6b/6b3661116e7b01676299710a96f47fe06bafacec//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-13 21:12 [binutils-gdb] gdb: add back declarations for _initialize functions gdb-buildbot
@ 2020-01-13 21:34 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-13 21:34 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/1723

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        6c2659886f7018fcca26ee0fc813bc9748fb8513

Subject of commit:
        gdb: add back declarations for _initialize functions

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/6c/6c2659886f7018fcca26ee0fc813bc9748fb8513/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/6c/6c2659886f7018fcca26ee0fc813bc9748fb8513//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/6c/6c2659886f7018fcca26ee0fc813bc9748fb8513//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-13 20:11 [binutils-gdb] gdb: make regformats output a declaration for the init function gdb-buildbot
@ 2020-01-13 20:53 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-13 20:53 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/1722

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        e2de1eec22358c64510dc18e755d0ff4cf91ad7a

Subject of commit:
        gdb: make regformats output a declaration for the init function

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/e2/e2de1eec22358c64510dc18e755d0ff4cf91ad7a/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/cond-eval-mode.exp: hbreak: continue
new FAIL: gdb.base/cond-eval-mode.exp: watch: info breakpoints
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: continue
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/Ubuntu-Aarch64-native-gdbserver-m64/e2/e2de1eec22358c64510dc18e755d0ff4cf91ad7a//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/e2/e2de1eec22358c64510dc18e755d0ff4cf91ad7a//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-13 20:04 [binutils-gdb] gdbserver: fix Makefile dependency of regformat-generated files on regdat.sh gdb-buildbot
@ 2020-01-13 19:56 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-13 19:56 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/1721

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        4025fa094d2420134acc4fea2049e707df8ecd01

Subject of commit:
        gdbserver: fix Makefile dependency of regformat-generated files on regdat.sh

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/40/4025fa094d2420134acc4fea2049e707df8ecd01/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: detach child
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-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/40/4025fa094d2420134acc4fea2049e707df8ecd01//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/40/4025fa094d2420134acc4fea2049e707df8ecd01//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-13 16:33 [binutils-gdb] gdb: adjust remote-sim.c to multi-target gdb-buildbot
@ 2020-01-13 17:45 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-13 17:45 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/1720

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        e0037b4cc727274248aebc11543f2ea3a711dacb

Subject of commit:
        gdb: adjust remote-sim.c to multi-target

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/e0/e0037b4cc727274248aebc11543f2ea3a711dacb/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/e0/e0037b4cc727274248aebc11543f2ea3a711dacb//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/e0/e0037b4cc727274248aebc11543f2ea3a711dacb//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-13 11:50 [binutils-gdb] [ARC][committed] Code cleanup and improvements gdb-buildbot
@ 2020-01-13 11:55 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-13 11:55 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/1718

Author:
        Claudiu Zissulescu <claziss@gmail.com>

Commit tested:
        5e4f7e0518ee149838e258331ddb339c578501f6

Subject of commit:
        [ARC][committed] Code cleanup and improvements.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/5e/5e4f7e0518ee149838e258331ddb339c578501f6/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 4
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/Ubuntu-Aarch64-native-gdbserver-m64/5e/5e4f7e0518ee149838e258331ddb339c578501f6//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/5e/5e4f7e0518ee149838e258331ddb339c578501f6//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-13 10:12 [binutils-gdb] [ARC][committed] Update ARC cpu list gdb-buildbot
@ 2020-01-13 11:07 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-13 11:07 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/1717

Author:
        Claudiu Zissulescu <claziss@gmail.com>

Commit tested:
        39fe16e0780ac85a8907e9ad9a38b88066674b03

Subject of commit:
        [ARC][committed] Update ARC cpu list

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/39/39fe16e0780ac85a8907e9ad9a38b88066674b03/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================

*** 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/39/39fe16e0780ac85a8907e9ad9a38b88066674b03//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/39/39fe16e0780ac85a8907e9ad9a38b88066674b03//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-13  9:42 [binutils-gdb] [ARC] [COMMITTED] Change ACCL/ACCH reg name to generic gdb-buildbot
@ 2020-01-13 10:10 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-13 10:10 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/1716

Author:
        Claudiu Zissulescu <claziss@gmail.com>

Commit tested:
        b9fe6b8aa6c7d662291764d22da09ad9f7c0288a

Subject of commit:
        [ARC] [COMMITTED] Change ACCL/ACCH reg name to generic.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/b9/b9fe6b8aa6c7d662291764d22da09ad9f7c0288a/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
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/Ubuntu-Aarch64-native-gdbserver-m64/b9/b9fe6b8aa6c7d662291764d22da09ad9f7c0288a//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/b9/b9fe6b8aa6c7d662291764d22da09ad9f7c0288a//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-13  8:51 [binutils-gdb] asan: ns32k: wild memory write gdb-buildbot
@ 2020-01-13  9:24 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-13  9:24 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/1715

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        90dee485e5a5cf5eb51491feb8ebea1fcbf5d4cc

Subject of commit:
        asan: ns32k: wild memory write

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/90/90dee485e5a5cf5eb51491feb8ebea1fcbf5d4cc/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
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/Ubuntu-Aarch64-native-gdbserver-m64/90/90dee485e5a5cf5eb51491feb8ebea1fcbf5d4cc//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/90/90dee485e5a5cf5eb51491feb8ebea1fcbf5d4cc//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-13  6:55 [binutils-gdb] ubsan: score: left shift of negative value gdb-buildbot
@ 2020-01-13  6:40 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-13  6:40 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/1712

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        b2c759ce68102931140ce34c2ac00619ba363622

Subject of commit:
        ubsan: score: left shift of negative value

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/b2/b2c759ce68102931140ce34c2ac00619ba363622/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/b2/b2c759ce68102931140ce34c2ac00619ba363622//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/b2/b2c759ce68102931140ce34c2ac00619ba363622//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-13  6:19 [binutils-gdb] ubsan: alpha-vma: timeout gdb-buildbot
@ 2020-01-13  6:38 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-13  6:38 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/1711

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        b50ef514ff0c8d5506227c412c508f9f538bcf5a

Subject of commit:
        ubsan: alpha-vma: timeout

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/b5/b50ef514ff0c8d5506227c412c508f9f538bcf5a/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
==============================================

*** 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/b5/b50ef514ff0c8d5506227c412c508f9f538bcf5a//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/b5/b50ef514ff0c8d5506227c412c508f9f538bcf5a//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-13  2:40 [binutils-gdb] ubsan: xgate: left shift of negative value gdb-buildbot
@ 2020-01-13  2:41 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-13  2:41 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/1707

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        7ef412cf72a197d68e532604cc1fa21351adc858

Subject of commit:
        ubsan: xgate: left shift of negative value

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/7e/7ef412cf72a197d68e532604cc1fa21351adc858/

*** Diff to previous build ***
==============================================
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=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/Ubuntu-Aarch64-native-gdbserver-m64/7e/7ef412cf72a197d68e532604cc1fa21351adc858//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/7e/7ef412cf72a197d68e532604cc1fa21351adc858//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-12 17:27 [binutils-gdb] gdbserver: make aarch64_write_goto_address static gdb-buildbot
@ 2020-01-12 18:40 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-12 18:40 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/1704

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        bb1183e25ae74ba21500fb4e39bc1ca9822e3086

Subject of commit:
        gdbserver: make aarch64_write_goto_address static

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/bb/bb1183e25ae74ba21500fb4e39bc1ca9822e3086/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 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/Ubuntu-Aarch64-native-gdbserver-m64/bb/bb1183e25ae74ba21500fb4e39bc1ca9822e3086//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/bb/bb1183e25ae74ba21500fb4e39bc1ca9822e3086//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-12 17:11 [binutils-gdb] gdbserver: include aarch32/aarch64 header file in corresponding source file gdb-buildbot
@ 2020-01-12 17:43 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-12 17:43 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/1703

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        f5df0b5f0874598790a60f1462f67887868bd77f

Subject of commit:
        gdbserver: include aarch32/aarch64 header file in corresponding source file

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/f5/f5df0b5f0874598790a60f1462f67887868bd77f/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/f5/f5df0b5f0874598790a60f1462f67887868bd77f//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/f5/f5df0b5f0874598790a60f1462f67887868bd77f//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-12  1:45 [binutils-gdb] Remove last traces of discard_all_inferiors gdb-buildbot
@ 2020-01-12  3:19 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-12  3:19 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/1701

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        4ec89149dd83efecea15300bf425c9988f4cd5c0

Subject of commit:
        Remove last traces of discard_all_inferiors

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/4e/4ec89149dd83efecea15300bf425c9988f4cd5c0/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/4e/4ec89149dd83efecea15300bf425c9988f4cd5c0//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/4e/4ec89149dd83efecea15300bf425c9988f4cd5c0//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-11 20:17 [binutils-gdb] Make TUI borders respect "set style enabled" gdb-buildbot
@ 2020-01-11 21:06 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-11 21:06 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/1699

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        7c392d1de1400202eb86f7679628c4b7c14f8108

Subject of commit:
        Make TUI borders respect "set style enabled"

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/7c/7c392d1de1400202eb86f7679628c4b7c14f8108/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 4
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=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/Ubuntu-Aarch64-native-gdbserver-m64/7c/7c392d1de1400202eb86f7679628c4b7c14f8108//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/7c/7c392d1de1400202eb86f7679628c4b7c14f8108//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-11 17:37 [binutils-gdb] Switch the inferior before outputting its id in "info inferiors" gdb-buildbot
@ 2020-01-11 18:07 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-11 18:07 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/1698

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        d9ebdab754fac0e9a4e4046a550a3e89cf5c2699

Subject of commit:
        Switch the inferior before outputting its id in "info inferiors"

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/d9/d9ebdab754fac0e9a4e4046a550a3e89cf5c2699/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/d9/d9ebdab754fac0e9a4e4046a550a3e89cf5c2699//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/d9/d9ebdab754fac0e9a4e4046a550a3e89cf5c2699//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-11 16:52 [binutils-gdb] Switch the inferior too in switch_to_program_space_and_thread gdb-buildbot
@ 2020-01-11 17:28 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-11 17:28 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/1697

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        f3c469b95b9f1f635668660c5041df9513a47a02

Subject of commit:
        Switch the inferior too in switch_to_program_space_and_thread

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/f3/f3c469b95b9f1f635668660c5041df9513a47a02/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/f3/f3c469b95b9f1f635668660c5041df9513a47a02//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/f3/f3c469b95b9f1f635668660c5041df9513a47a02//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-11 14:03 [binutils-gdb] Add "info connections" command, "info inferiors" connection number/string gdb-buildbot
@ 2020-01-11 14:39 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-11 14:39 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/1694

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        121b3efd49f98e4049281b3ba7a258e650e40b38

Subject of commit:
        Add "info connections" command, "info inferiors" connection number/string

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/12/121b3efd49f98e4049281b3ba7a258e650e40b38/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/12/121b3efd49f98e4049281b3ba7a258e650e40b38//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/12/121b3efd49f98e4049281b3ba7a258e650e40b38//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-11 13:14 [binutils-gdb] Revert 'Remove unused struct serial::name field' gdb-buildbot
@ 2020-01-11 13:48 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-11 13:48 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/1693

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        4f83758119ddf0f114477760d79bdde7bbc76835

Subject of commit:
        Revert 'Remove unused struct serial::name field'

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/4f/4f83758119ddf0f114477760d79bdde7bbc76835/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/4f/4f83758119ddf0f114477760d79bdde7bbc76835//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/4f/4f83758119ddf0f114477760d79bdde7bbc76835//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-11 12:44 [binutils-gdb] gdbarch-selftests.c: No longer error out if debugging something gdb-buildbot
@ 2020-01-11 13:01 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-11 13:01 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/1692

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        f4ec508eaed65ad7555858498c1cbbf420bce90a

Subject of commit:
        gdbarch-selftests.c: No longer error out if debugging something

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/f4/f4ec508eaed65ad7555858498c1cbbf420bce90a/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
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/Ubuntu-Aarch64-native-gdbserver-m64/f4/f4ec508eaed65ad7555858498c1cbbf420bce90a//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/f4/f4ec508eaed65ad7555858498c1cbbf420bce90a//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-11 11:37 [binutils-gdb] Add multi-target tests gdb-buildbot
@ 2020-01-11 12:10 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-11 12:10 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/1691

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        1dadb1dd718f93801bcca669a0fb38e3da6177b8

Subject of commit:
        Add multi-target tests

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/1d/1dadb1dd718f93801bcca669a0fb38e3da6177b8/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: detach: continue
==============================================

*** 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/1d/1dadb1dd718f93801bcca669a0fb38e3da6177b8//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/1d/1dadb1dd718f93801bcca669a0fb38e3da6177b8//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-11 10:51 [binutils-gdb] Multi-target support gdb-buildbot
@ 2020-01-11 11:23 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-11 11:23 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/1690

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        5b6d1e4fa4fc6827c7b3f0e99ff120dfa14d65d2

Subject of commit:
        Multi-target support

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/5b/5b6d1e4fa4fc6827c7b3f0e99ff120dfa14d65d2/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 4
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: detach: continue
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: killed outside: continue
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: continue
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/Ubuntu-Aarch64-native-gdbserver-m64/5b/5b6d1e4fa4fc6827c7b3f0e99ff120dfa14d65d2//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/5b/5b6d1e4fa4fc6827c7b3f0e99ff120dfa14d65d2//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-11 10:20 [binutils-gdb] Fix reconnecting to a gdbserver already debugging multiple processes, II gdb-buildbot
@ 2020-01-11 10:36 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-11 10:36 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/1689

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        75c6c844d9df37761e0e834df057b89e41816e55

Subject of commit:
        Fix reconnecting to a gdbserver already debugging multiple processes, II

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/75/75c6c844d9df37761e0e834df057b89e41816e55/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/75/75c6c844d9df37761e0e834df057b89e41816e55//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/75/75c6c844d9df37761e0e834df057b89e41816e55//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-11  9:31 [binutils-gdb] Fix reconnecting to a gdbserver already debugging multiple processes, I gdb-buildbot
@ 2020-01-11  9:46 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-11  9:46 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/1688

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        78f2c40a12179d26d3065c09f054b7e751b2732f

Subject of commit:
        Fix reconnecting to a gdbserver already debugging multiple processes, I

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/78/78f2c40a12179d26d3065c09f054b7e751b2732f/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/78/78f2c40a12179d26d3065c09f054b7e751b2732f//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/78/78f2c40a12179d26d3065c09f054b7e751b2732f//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-11  6:04 [binutils-gdb] tfile_target::close: trace_fd can't be -1 gdb-buildbot
@ 2020-01-11  6:37 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-11  6:37 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/1684

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        c17e02e1b55b5e9cbdc6581f05bfec96dc8436f4

Subject of commit:
        tfile_target::close: trace_fd can't be -1

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/c1/c17e02e1b55b5e9cbdc6581f05bfec96dc8436f4/

*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/O2_float_param.exp: frame
new FAIL: gdb.ada/access_tagged_param.exp: continue
new KFAIL: gdb.ada/bad-task-bp-keyword.exp: break *break_me'address TASK Task TaSK 2
new FAIL: gdb.ada/interface.exp: print s
new FAIL: gdb.ada/iwide.exp: print My_Drawable
new FAIL: gdb.ada/iwide.exp: print d_access.all
new FAIL: gdb.ada/iwide.exp: print dp_access.all
new FAIL: gdb.ada/iwide.exp: print s_access.all
new FAIL: gdb.ada/iwide.exp: print sp_access.all
new FAIL: gdb.ada/mi_interface.exp: create ggg1 varobj
new FAIL: gdb.ada/mi_interface.exp: list ggg1's children
new FAIL: gdb.ada/ref_param.exp: frame argument value printed
new FAIL: gdb.ada/set_pckd_arr_elt.exp: continue to update_small
new FAIL: gdb.ada/tagged.exp: print obj
new FAIL: gdb.ada/tagged.exp: ptype obj
new FAIL: gdb.ada/tagged_access.exp: ptype c.all
new FAIL: gdb.ada/tagged_access.exp: ptype c.menu_name
new KFAIL: gdb.base/argv0-symlink.exp: kept directory symbolic link name
new FAIL: gdb.base/break-probes.exp: ensure using probes
new FAIL: gdb.base/catch-syscall.exp: execve: continue to main
new FAIL: gdb.base/catch-syscall.exp: execve: continue until exit
new FAIL: gdb.base/catch-syscall.exp: execve: syscall execve has returned
new FAIL: gdb.base/compare-sections.exp: after reload: compare-sections
new FAIL: gdb.base/compare-sections.exp: after reload: compare-sections -r
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections -r
new FAIL: gdb.base/compare-sections.exp: compare-sections .text
new FAIL: gdb.base/compare-sections.exp: read-only: compare-sections -r
new FAIL: gdb.base/default.exp: cd
new KFAIL: gdb.base/foll-vfork.exp: exit: vfork child follow, finish after tcatch vfork: finish
new KFAIL: gdb.base/info-macros.exp: info macros info-macros.c:42
new FAIL: gdb.base/interrupt-daemon.exp: bg: continue&
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt cmd stops process
new FAIL: gdb.base/interrupt-daemon.exp: fg: ctrl-c stops process
new FAIL: gdb.base/large-frame.exp: optimize=-O0: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O1: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O2: backtrace
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp_4_2_from_macscp3'
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_2_from_macscp3
new FAIL: gdb.base/nextoverexit.exp: next over exit
new KFAIL: gdb.base/radix.exp: print 20.; expect 14; output radix 16
new KFAIL: gdb.base/radix.exp: print 20.; expect 24; output radix 8
new UNRESOLVED: gdb.base/readline-ask.exp: bell for more message
new UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
new FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : shell sleep 1
new FAIL: gdb.base/setshow.exp: set language asm
new KFAIL: gdb.base/sigbpt.exp: stepi bp at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before and at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi; stepi out of handler
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: continue to end of inf 2
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: continue to marker
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : vfork: continue to end of inf 2
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : vfork: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : vfork: continue to marker
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : vfork: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: continue to syscall insn vfork
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: single step over vfork
new FAIL: gdb.base/store.exp: upvar doublest l; print old r, expecting -2
new FAIL: gdb.base/store.exp: var doublest l; print old r, expecting -2
new UNRESOLVED: gdb.base/symbol-without-target_section.exp: list main
new UNRESOLVED: gdb.base/symbol-without-target_section.exp: print symbol_without_target_section
new KFAIL: gdb.base/utf8-identifiers.exp: tab complete "break fun"
new KFAIL: gdb.base/watchpoint-unaligned.exp: wpcount
new KPASS: gdb.cp/cpexprs.exp: p CV::m
new KFAIL: gdb.cp/local.exp: ptype InnerLocal::NestedInnerLocal
new FAIL: gdb.cp/no-dmgl-verbose.exp: setting breakpoint at 'f
new KFAIL: gdb.cp/oranking.exp: p foo0
new KFAIL: gdb.cp/oranking.exp: p foo10
new KFAIL: gdb.cp/oranking.exp: p foo11
new KFAIL: gdb.cp/oranking.exp: p foo13
new KFAIL: gdb.cp/oranking.exp: p foo14
new KFAIL: gdb.cp/oranking.exp: p foo2
new KFAIL: gdb.cp/rvalue-ref-overload.exp: rvalue reference overload
new KFAIL: gdb.cp/templates.exp: ptype fvpchar
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid
new KFAIL: gdb.cp/var-tag.exp: global collision: print global
new KFAIL: gdb.cp/virtfunc.exp: print pEe->D::vg
new UNRESOLVED: gdb.dwarf2/dw2-icc-opaque.exp: ptype p_struct
new KFAIL: gdb.dwarf2/dw2-simple-locdesc.exp: p &s.shl
new UNRESOLVED: gdb.gdb/unittest.exp: maintenance check xml-descriptions ${srcdir}/../features
new FAIL: gdb.gdb/unittest.exp: maintenance selftest
new FAIL: gdb.mi/mi-async.exp: CLI next: send
new FAIL: gdb.mi/mi-async.exp: CLI next: stop
new FAIL: gdb.mi/mi-async.exp: restart: send
new FAIL: gdb.mi/mi-async.exp: restart: stop
new FAIL: gdb.mi/mi-async.exp: start: send
new FAIL: gdb.mi/mi-async.exp: start: stop
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: list of breakpoints
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: list of breakpoints
new FAIL: gdb.mi/mi-detach.exp: detach
new KFAIL: gdb.mi/mi-until.exp: until after while loop
new KFAIL: gdb.opt/inline-cmds.exp: next to second func1
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 2
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 3
new KFAIL: gdb.pascal/types.exp: pt 'a simple string'
new KFAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new FAIL: gdb.server/ext-run.exp: get process list
new FAIL: gdb.server/solib-list.exp: non-stop 0: p libvar
new FAIL: gdb.server/solib-list.exp: non-stop 1: p libvar
new FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 4
new FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=3: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=4: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=5: created new thread
new KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: continue
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
new FAIL: gdb.threads/tls.exp: print a_thread_local
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_asm_test
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_c_test
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_recursion_test 0
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_asm_test
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_c_test
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_recursion_test 0
new FAIL: gdb.trace/change-loc.exp: 1 trace: continue to marker 2
new FAIL: gdb.trace/change-loc.exp: 1 trace: continue to marker 3
new FAIL: gdb.trace/change-loc.exp: 1 trace: tfind frame 0
new FAIL: gdb.trace/change-loc.exp: 1 trace: tracepoint with two locations - installed
new FAIL: gdb.trace/change-loc.exp: 1 trace: tracepoint with two locations - pending
new FAIL: gdb.trace/change-loc.exp: 2 trace: continue to marker 2
new FAIL: gdb.trace/change-loc.exp: 2 trace: continue to marker 3
new FAIL: gdb.trace/change-loc.exp: 2 trace: tfind frame 2
new FAIL: gdb.trace/change-loc.exp: 2 trace: tracepoint with two locations - installed
new FAIL: gdb.trace/change-loc.exp: 2 trace: tracepoint with two locations - pending
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local char
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local double
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local float
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local int
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member char
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member double
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member float
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member int
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #0
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #1
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #2
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #3
new FAIL: gdb.trace/collection.exp: collect register locals collectively: start trace experiment
new FAIL: gdb.trace/collection.exp: collect register locals collectively: tfind test frame
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local char
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local double
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local float
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local int
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member char
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member double
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member float
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member int
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #0
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #1
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #2
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #3
new FAIL: gdb.trace/collection.exp: collect register locals individually: define actions
new FAIL: gdb.trace/pending.exp: ftrace installed_in_trace: continue to marker 2
new FAIL: gdb.trace/pending.exp: ftrace installed_in_trace: tfind test frame 0
new FAIL: gdb.trace/pending.exp: trace installed_in_trace: continue to marker 2
new FAIL: gdb.trace/pending.exp: trace installed_in_trace: tfind test frame 0
new FAIL: gdb.trace/signal.exp: tracepoint 4 hit 3 times
new FAIL: gdb.trace/signal.exp: tracepoint 5 hit 3 times
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: tfile: info locals
new FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
new FAIL: gdb.tui/resize.exp: source box after resize
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/Ubuntu-Aarch64-native-gdbserver-m64/c1/c17e02e1b55b5e9cbdc6581f05bfec96dc8436f4//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/c1/c17e02e1b55b5e9cbdc6581f05bfec96dc8436f4//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-11  4:36 [binutils-gdb] switch inferior/thread before calling target methods gdb-buildbot
@ 2020-01-11  5:06 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-11  5:06 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/1682

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        f3f8ece4b1c77c925d1f1566df0bf632790a4d24

Subject of commit:
        switch inferior/thread before calling target methods

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/f3/f3f8ece4b1c77c925d1f1566df0bf632790a4d24/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/f3/f3f8ece4b1c77c925d1f1566df0bf632790a4d24//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/f3/f3f8ece4b1c77c925d1f1566df0bf632790a4d24//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-11  3:46 [binutils-gdb] Introduce switch_to_inferior_no_thread gdb-buildbot
@ 2020-01-11  4:21 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-11  4:21 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/1681

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        db2d40f7d0b8477ca5ad9e305b8137a085434c97

Subject of commit:
        Introduce switch_to_inferior_no_thread

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/db/db2d40f7d0b8477ca5ad9e305b8137a085434c97/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/db/db2d40f7d0b8477ca5ad9e305b8137a085434c97//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/db/db2d40f7d0b8477ca5ad9e305b8137a085434c97//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-11  1:17 [binutils-gdb] Make target_ops::has_execution take an 'inferior *' instead of a ptid_t gdb-buildbot
@ 2020-01-11  1:53 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-11  1:53 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/1678

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        5018ce90c1205d79f29adf954b0fd5e613d08430

Subject of commit:
        Make target_ops::has_execution take an 'inferior *' instead of a ptid_t

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/50/5018ce90c1205d79f29adf954b0fd5e613d08430/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/50/5018ce90c1205d79f29adf954b0fd5e613d08430//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/50/5018ce90c1205d79f29adf954b0fd5e613d08430//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-11  0:47 [binutils-gdb] exceptions.c:print_flush: Remove obsolete check gdb-buildbot
@ 2020-01-11  1:03 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-11  1: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/1677

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        74375d182e992778ef8701278c02a742db6be77e

Subject of commit:
        exceptions.c:print_flush: Remove obsolete check

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/74/74375d182e992778ef8701278c02a742db6be77e/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 4
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/Ubuntu-Aarch64-native-gdbserver-m64/74/74375d182e992778ef8701278c02a742db6be77e//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/74/74375d182e992778ef8701278c02a742db6be77e//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-10 23:40 [binutils-gdb] Make "show remote exec-file" inferior-aware gdb-buildbot
@ 2020-01-11  0:16 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-11  0:16 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/1676

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        acdf84a65400f416c60a0c9c14953ba5a73fb0cd

Subject of commit:
        Make "show remote exec-file" inferior-aware

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/ac/acdf84a65400f416c60a0c9c14953ba5a73fb0cd/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/ac/acdf84a65400f416c60a0c9c14953ba5a73fb0cd//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/ac/acdf84a65400f416c60a0c9c14953ba5a73fb0cd//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-10 22:50 [binutils-gdb] Don't rely on inferior_ptid in record_full_wait gdb-buildbot
@ 2020-01-10 23:26 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-10 23:26 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/1675

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        ec506636cc0c56d4229b00d5e439c0610970f84d

Subject of commit:
        Don't rely on inferior_ptid in record_full_wait

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/ec/ec506636cc0c56d4229b00d5e439c0610970f84d/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/ec/ec506636cc0c56d4229b00d5e439c0610970f84d//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/ec/ec506636cc0c56d4229b00d5e439c0610970f84d//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-10 21:12 [binutils-gdb] Fix handling of null stap semaphores gdb-buildbot
@ 2020-01-10 21:45 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-10 21:45 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/1673

Author:
        George Barrett <bob@bob131.so>

Commit tested:
        7f0ae84c80aae6fe8f7573343fe1ab455d18b5d8

Subject of commit:
        Fix handling of null stap semaphores

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/7f/7f0ae84c80aae6fe8f7573343fe1ab455d18b5d8/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
PASS -> FAIL: gdb.trace/ftrace.exp: advance through tracing
==============================================

*** 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/7f/7f0ae84c80aae6fe8f7573343fe1ab455d18b5d8//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/7f/7f0ae84c80aae6fe8f7573343fe1ab455d18b5d8//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-10 20:29 [binutils-gdb] gdb/testsuite/gdb.base/stap-probe: Minor clean-up gdb-buildbot
@ 2020-01-10 20:59 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-10 20:59 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/1672

Author:
        George Barrett <bob@bob131.so>

Commit tested:
        47e9d49d2d795224f4b3f04c89c268627b850be4

Subject of commit:
        gdb/testsuite/gdb.base/stap-probe: Minor clean-up

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/47/47e9d49d2d795224f4b3f04c89c268627b850be4/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
==============================================

*** 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/47/47e9d49d2d795224f4b3f04c89c268627b850be4//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/47/47e9d49d2d795224f4b3f04c89c268627b850be4//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-10 14:52 [binutils-gdb] AArch64: Revert setting of elf class in linker stub gdb-buildbot
@ 2020-01-10 15:09 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-10 15:09 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/1670

Author:
        Tamar Christina <tamar.christina@arm.com>

Commit tested:
        8cd0e5e93145699736a370b271ff03f3f41670b0

Subject of commit:
        AArch64: Revert setting of elf class in linker stub.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/8c/8cd0e5e93145699736a370b271ff03f3f41670b0/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
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/Ubuntu-Aarch64-native-gdbserver-m64/8c/8cd0e5e93145699736a370b271ff03f3f41670b0//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/8c/8cd0e5e93145699736a370b271ff03f3f41670b0//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-10 12:14 [binutils-gdb] ubsan: spu: left shift of negative value gdb-buildbot
@ 2020-01-10 12:46 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-10 12:46 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/1667

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        8948cc6971fb82feffc49e2d21747111466ad642

Subject of commit:
        ubsan: spu: left shift of negative value

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/89/8948cc6971fb82feffc49e2d21747111466ad642/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/break-probes.exp: ensure using probes
new FAIL: gdb.base/default.exp: cd
new KFAIL: gdb.base/foll-vfork.exp: exit: vfork child follow, finish after tcatch vfork: finish
new FAIL: gdb.base/interrupt-daemon.exp: bg: continue&
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt cmd stops process
new FAIL: gdb.base/interrupt-daemon.exp: fg: ctrl-c stops process
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp_4_2_from_macscp3'
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_2_from_macscp3
new FAIL: gdb.base/nextoverexit.exp: next over exit
new KFAIL: gdb.base/radix.exp: print 20.; expect 14; output radix 16
new KFAIL: gdb.base/radix.exp: print 20.; expect 24; output radix 8
new UNRESOLVED: gdb.base/readline-ask.exp: bell for more message
new UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
new FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : shell sleep 1
new KFAIL: gdb.base/sigbpt.exp: stepi bp at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before and at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi; stepi out of handler
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: continue to end of inf 2
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: continue to marker
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : vfork: continue to end of inf 2
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : vfork: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : vfork: continue to marker
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : vfork: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: continue to syscall insn vfork
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: single step over vfork
new FAIL: gdb.base/store.exp: upvar doublest l; print old r, expecting -2
new FAIL: gdb.base/store.exp: var doublest l; print old r, expecting -2
new UNRESOLVED: gdb.base/symbol-without-target_section.exp: list main
new UNRESOLVED: gdb.base/symbol-without-target_section.exp: print symbol_without_target_section
new KFAIL: gdb.base/utf8-identifiers.exp: tab complete "break fun"
new KFAIL: gdb.base/watchpoint-unaligned.exp: wpcount
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
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/Ubuntu-Aarch64-native-gdbserver-m64/89/8948cc6971fb82feffc49e2d21747111466ad642//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/8948cc6971fb82feffc49e2d21747111466ad642//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-10 11:28 [binutils-gdb] ubsan: alpha-coff: signed integer overflow gdb-buildbot
@ 2020-01-10 12:00 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-10 12:00 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/1666

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        71780f455fbf35ed4c48e94b4228c55c11a213c8

Subject of commit:
        ubsan: alpha-coff: signed integer overflow

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/71/71780f455fbf35ed4c48e94b4228c55c11a213c8/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.arch/arm-neon.exp: could not run to main
PASS -> UNRESOLVED: gdb.base/bad-file.exp: directory
PASS -> UNRESOLVED: gdb.base/bad-file.exp: neither file nor directory
PASS -> UNRESOLVED: gdb.base/bad-file.exp: non-existent file
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, continue from handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, continue from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, continue from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, continue from handler: display/i $pc
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, continue from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, continue from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, continue from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, continue from handler: nexti to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, next from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, next from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, next from handler: display/i $pc
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, next from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, next from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, next from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, next from handler: nexti to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, step from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, step from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, step from handler: display/i $pc
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, step from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, step from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, step from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, step from handler: nexti to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, next from handler: advance in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, next from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, next from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, next from handler: display/i $pc
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, next from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, next from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, next from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, next from handler: nexti to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, next from handler: si in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, step from handler: advance in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, step from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, step from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, step from handler: display/i $pc
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, step from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, step from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, step from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, step from handler: nexti to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, step from handler: si in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, continue from handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, continue from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, continue from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, continue from handler: display/i $pc
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, continue from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, continue from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, continue from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, continue from handler: stepi to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, next from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, next from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, next from handler: display/i $pc
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, next from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, next from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, next from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, next from handler: stepi to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, step from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, step from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, step from handler: display/i $pc
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, step from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, step from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, step from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, step from handler: stepi to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: advance in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: display/i $pc
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: si in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: stepi to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, next from handler: advance in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, next from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, next from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, next from handler: display/i $pc
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, next from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, next from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, next from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, next from handler: si in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, next from handler: stepi to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, step from handler: advance in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, step from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, step from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, step from handler: display/i $pc
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, step from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, step from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, step from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, step from handler: si in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, step from handler: stepi to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: validate backtrace: backtrace for nexti
PASS -> UNRESOLVED: gdb.base/sigstep.exp: validate backtrace: break handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: validate backtrace: continue to stepi handler
new UNRESOLVED: gdb.base/sigstep.exp: validate backtrace: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: validate backtrace: display/i $pc
==============================================

*** 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/71/71780f455fbf35ed4c48e94b4228c55c11a213c8//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/71/71780f455fbf35ed4c48e94b4228c55c11a213c8//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-10  5:23 [binutils-gdb] gdb/tui: Link source and assembler scrolling .... again gdb-buildbot
@ 2020-01-10  5:23 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-10  5:23 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/1665

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        f5a7c406b1975cde626efed526960f2cf1bdaceb

Subject of commit:
        gdb/tui: Link source and assembler scrolling .... again

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/f5/f5a7c406b1975cde626efed526960f2cf1bdaceb/

*** Diff to previous build ***
==============================================
new FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
==============================================

*** 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/f5/f5a7c406b1975cde626efed526960f2cf1bdaceb//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/f5/f5a7c406b1975cde626efed526960f2cf1bdaceb//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-10  4:03 [binutils-gdb] gdb: Fix scrolling in TUI gdb-buildbot
@ 2020-01-10  4:38 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-10  4:38 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/1664

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        9ae6bf640dc7c950e6f36097a3d2d760a132a542

Subject of commit:
        gdb: Fix scrolling in TUI

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/9a/9ae6bf640dc7c950e6f36097a3d2d760a132a542/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/9a/9ae6bf640dc7c950e6f36097a3d2d760a132a542//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/9a/9ae6bf640dc7c950e6f36097a3d2d760a132a542//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-10  3:17 [binutils-gdb] gdb/tui: Fix 'layout asm' before the inferior has started gdb-buildbot
@ 2020-01-10  3:49 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-10  3:49 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/1663

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        b2efe70cf34e2f3ada8d0def69e53f27a6b71578

Subject of commit:
        gdb/tui: Fix 'layout asm' before the inferior has started

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/b2/b2efe70cf34e2f3ada8d0def69e53f27a6b71578/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/b2/b2efe70cf34e2f3ada8d0def69e53f27a6b71578//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/b2/b2efe70cf34e2f3ada8d0def69e53f27a6b71578//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-10  2:27 [binutils-gdb] gdb/testsuite/tui: Introduce check_box_contents gdb-buildbot
@ 2020-01-10  3:02 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-10  3:02 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/1662

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        3804da7e07a13c14210d79de55ebfe2318421164

Subject of commit:
        gdb/testsuite/tui: Introduce check_box_contents

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/38/3804da7e07a13c14210d79de55ebfe2318421164/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
==============================================

*** 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/38/3804da7e07a13c14210d79de55ebfe2318421164//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/38/3804da7e07a13c14210d79de55ebfe2318421164//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-10  1:41 [binutils-gdb] gdb/testsuite/tui: Split enter_tui into two procs gdb-buildbot
@ 2020-01-10  2:13 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-10  2:13 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/1661

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        b40aa28fb5de5e84bd3409f54138def0ba904a9a

Subject of commit:
        gdb/testsuite/tui: Split enter_tui into two procs

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/b4/b40aa28fb5de5e84bd3409f54138def0ba904a9a/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================

*** 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/b4/b40aa28fb5de5e84bd3409f54138def0ba904a9a//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/b4/b40aa28fb5de5e84bd3409f54138def0ba904a9a//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-10  1:22 [binutils-gdb] gdb/testsuite/tui: Always dump_screen when asked gdb-buildbot
@ 2020-01-10  1:22 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-10  1:22 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/1660

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        63ffd7c9131c0e9723016d33cf8d435cc508d02b

Subject of commit:
        gdb/testsuite/tui: Always dump_screen when asked

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/63/63ffd7c9131c0e9723016d33cf8d435cc508d02b/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/63/63ffd7c9131c0e9723016d33cf8d435cc508d02b//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/63/63ffd7c9131c0e9723016d33cf8d435cc508d02b//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-09 23:56 [binutils-gdb] gdb/testsuite: Fix race condition in gdb.base/skip.exp gdb-buildbot
@ 2020-01-10  0:32 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-10  0:32 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/1659

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        3be966f69d6967d2857baa3efb0bc043081e0a00

Subject of commit:
        gdb/testsuite: Fix race condition in gdb.base/skip.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/3b/3be966f69d6967d2857baa3efb0bc043081e0a00/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: cmd complete "b -function test_op_delete_array::operator delete"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: tab complete "b -function test_op_delete_array::operator delete"
==============================================

*** 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/3b/3be966f69d6967d2857baa3efb0bc043081e0a00//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/3b/3be966f69d6967d2857baa3efb0bc043081e0a00//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-09 23:35 [binutils-gdb] Don't define _FORTIFY_SOURCE on MinGW gdb-buildbot
@ 2020-01-09 23:42 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-09 23:42 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/1658

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        5f23a08201ed01570b34f5cff99a95fc7b9e2fdb

Subject of commit:
        Don't define _FORTIFY_SOURCE on MinGW

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/5f/5f23a08201ed01570b34f5cff99a95fc7b9e2fdb/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/5f/5f23a08201ed01570b34f5cff99a95fc7b9e2fdb//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/5f/5f23a08201ed01570b34f5cff99a95fc7b9e2fdb//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-09 19:30 [binutils-gdb] Fix memory leak of the demangled symbol name gdb-buildbot
@ 2020-01-09 20:03 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-09 20: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/1656

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        57d750026550cf3a589e3f28a0cdc303ba5ed039

Subject of commit:
        Fix memory leak of the demangled symbol name

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/57/57d750026550cf3a589e3f28a0cdc303ba5ed039/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/57/57d750026550cf3a589e3f28a0cdc303ba5ed039//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/57/57d750026550cf3a589e3f28a0cdc303ba5ed039//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-09 14:59 [binutils-gdb] Fix the cast used to prevent compile time warning about an always false test gdb-buildbot
@ 2020-01-09 15:34 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-09 15:34 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/1654

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        bce58db4fb1112529a54387c7fdaa1042859f5fb

Subject of commit:
        Fix the cast used to prevent compile time warning about an always false test.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/bc/bce58db4fb1112529a54387c7fdaa1042859f5fb/

*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.base/readline-ask.exp: bell for more message
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : 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/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : shell sleep 1
PASS -> UNRESOLVED: gdb.base/symbol-without-target_section.exp: list main
PASS -> UNRESOLVED: gdb.base/symbol-without-target_section.exp: print symbol_without_target_section
PASS -> UNRESOLVED: gdb.dwarf2/dw2-icc-opaque.exp: ptype p_struct
==============================================

*** 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/bc/bce58db4fb1112529a54387c7fdaa1042859f5fb//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/bc/bce58db4fb1112529a54387c7fdaa1042859f5fb//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-02 14:31 [binutils-gdb] AArch64: Set the correct ELF class for AArch64 stubs (PR/25210) gdb-buildbot
@ 2020-01-02 15:00 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-02 15:00 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/1598

Author:
        Tamar Christina <tamar.christina@arm.com>

Commit tested:
        0db131fb835e4c4f6a024e86743467e7e01c965e

Subject of commit:
        AArch64: Set the correct ELF class for AArch64 stubs (PR/25210)

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/0d/0db131fb835e4c4f6a024e86743467e7e01c965e/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/0d/0db131fb835e4c4f6a024e86743467e7e01c965e//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/0d/0db131fb835e4c4f6a024e86743467e7e01c965e//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-01 22:21 [binutils-gdb] Fix install-strip for cross-compilation gdb-buildbot
@ 2020-01-01 22:21 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-01 22:21 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/1596

Author:
        Hannes Domani <ssbssa@yahoo.de>

Commit tested:
        48189beca8aeb629deaf2d92268d6d234ce19aeb

Subject of commit:
        Fix install-strip for cross-compilation

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/48/48189beca8aeb629deaf2d92268d6d234ce19aeb/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/48/48189beca8aeb629deaf2d92268d6d234ce19aeb//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/48/48189beca8aeb629deaf2d92268d6d234ce19aeb//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-01 10:39 [binutils-gdb] Update copyright year in gdbarch.sh doc/gdb.texinfo and doc/refcard.tex gdb-buildbot
@ 2020-01-01 11:14 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-01 11:14 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/1593

Author:
        Joel Brobecker <brobecker@adacore.com>

Commit tested:
        e5d78223eaf178ebb23aa20f209f71497aaae722

Subject of commit:
        Update copyright year in gdbarch.sh doc/gdb.texinfo and doc/refcard.tex

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/e5/e5d78223eaf178ebb23aa20f209f71497aaae722/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-operand: test-string: str=\"STR: cmd complete "maint test-options unknown-is-operand -string \"STR BAR"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-operand: test-string: str=\"STR: tab complete "maint test-options unknown-is-operand -string \"STR BAR"
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: detach child
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.trace/ftrace.exp: advance through tracing
==============================================

*** 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/e5/e5d78223eaf178ebb23aa20f209f71497aaae722//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/e5/e5d78223eaf178ebb23aa20f209f71497aaae722//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-01  9:06 [binutils-gdb] gdb/copyright.py: Convert to Python 3 gdb-buildbot
@ 2020-01-01  9:39 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2020-01-01  9:39 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/1591

Author:
        Joel Brobecker <brobecker@adacore.com>

Commit tested:
        5f4def5cbd12e77075f64a6854fb002f34be8a01

Subject of commit:
        gdb/copyright.py: Convert to Python 3

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/5f/5f4def5cbd12e77075f64a6854fb002f34be8a01/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 4
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/Ubuntu-Aarch64-native-gdbserver-m64/5f/5f4def5cbd12e77075f64a6854fb002f34be8a01//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/5f/5f4def5cbd12e77075f64a6854fb002f34be8a01//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-31 13:40 [binutils-gdb] asan: alpha-vms: Heap-buffer-overflow gdb-buildbot
@ 2019-12-31 14:15 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-31 14:15 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/1586

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        bf31e6044082986689e17af54e2ca3cc1ac8419b

Subject of commit:
        asan: alpha-vms: Heap-buffer-overflow

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/bf/bf31e6044082986689e17af54e2ca3cc1ac8419b/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/bf/bf31e6044082986689e17af54e2ca3cc1ac8419b//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/bf/bf31e6044082986689e17af54e2ca3cc1ac8419b//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-30 17:47 [binutils-gdb] Make some TUI globals "static" gdb-buildbot
@ 2019-12-30 17:55 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-30 17:55 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/1585

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        3d34df0aa78ad01e5104ad1294364ef754a37cfa

Subject of commit:
        Make some TUI globals "static"

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/3d/3d34df0aa78ad01e5104ad1294364ef754a37cfa/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 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/Ubuntu-Aarch64-native-gdbserver-m64/3d/3d34df0aa78ad01e5104ad1294364ef754a37cfa//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/3d/3d34df0aa78ad01e5104ad1294364ef754a37cfa//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-30 16:47 [binutils-gdb] Use "bool" in more spots in TUI gdb-buildbot
@ 2019-12-30 17:11 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-30 17:11 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/1584

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        87d557ae1b944a21c86e3148daadeb4469b8cda9

Subject of commit:
        Use "bool" in more spots in TUI

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/87/87d557ae1b944a21c86e3148daadeb4469b8cda9/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
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/Ubuntu-Aarch64-native-gdbserver-m64/87/87d557ae1b944a21c86e3148daadeb4469b8cda9//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/87/87d557ae1b944a21c86e3148daadeb4469b8cda9//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-30 14:29 [binutils-gdb] vms-alpha.c object_p memory leaks gdb-buildbot
@ 2019-12-30 14:55 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-30 14:55 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/1583

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        a7ac9aa525de25d3bc6e7bfd37615092a4f94055

Subject of commit:
        vms-alpha.c object_p memory leaks

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/a7/a7ac9aa525de25d3bc6e7bfd37615092a4f94055/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
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/Ubuntu-Aarch64-native-gdbserver-m64/a7/a7ac9aa525de25d3bc6e7bfd37615092a4f94055//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/a7/a7ac9aa525de25d3bc6e7bfd37615092a4f94055//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-30  3:44 [binutils-gdb] archive.c bfd_zalloc gdb-buildbot
@ 2019-12-30  4:09 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-30  4:09 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/1581

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        6a89db5c9513d5e00e02b01095bf0c18e496dcc8

Subject of commit:
        archive.c bfd_zalloc

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/6a/6a89db5c9513d5e00e02b01095bf0c18e496dcc8/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/6a/6a89db5c9513d5e00e02b01095bf0c18e496dcc8//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/6a/6a89db5c9513d5e00e02b01095bf0c18e496dcc8//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-29 22:10 [binutils-gdb] Fix setting breakpoints or stepping on line 65535 gdb-buildbot
@ 2019-12-29 22:43 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-29 22:43 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/1579

Author:
        Bernd Edlinger <bernd.edlinger@hotmail.de>

Commit tested:
        c296cbe681815593eb57033368ac1b20b7a67252

Subject of commit:
        Fix setting breakpoints or stepping on line 65535

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/c2/c296cbe681815593eb57033368ac1b20b7a67252/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/c2/c296cbe681815593eb57033368ac1b20b7a67252//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/c2/c296cbe681815593eb57033368ac1b20b7a67252//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-29 14:29 [binutils-gdb] ubsan: alpha-vms: shift exponent is too large gdb-buildbot
@ 2019-12-29 15:05 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-29 15:05 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/1576

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        401e101e0274d401e90e50cd8280a9ff36006477

Subject of commit:
        ubsan: alpha-vms: shift exponent is too large

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/40/401e101e0274d401e90e50cd8280a9ff36006477/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 4
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
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/Ubuntu-Aarch64-native-gdbserver-m64/40/401e101e0274d401e90e50cd8280a9ff36006477//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/40/401e101e0274d401e90e50cd8280a9ff36006477//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-29 13:56 [binutils-gdb] asan: alpha-vms: memory leaks gdb-buildbot
@ 2019-12-29 14:22 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-29 14:22 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/1575

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        37d2e9c7b10e298403640fdd38a50fedae8525b2

Subject of commit:
        asan: alpha-vms: memory leaks

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/37/37d2e9c7b10e298403640fdd38a50fedae8525b2/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================

*** 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/37/37d2e9c7b10e298403640fdd38a50fedae8525b2//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/37/37d2e9c7b10e298403640fdd38a50fedae8525b2//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-29 12:48 [binutils-gdb] coff_close_and_cleanup gdb-buildbot
@ 2019-12-29 13:28 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-29 13:28 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/1574

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        f5d35bb7a5789950efd5f03b270d4c5f774eaba9

Subject of commit:
        coff_close_and_cleanup

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/f5/f5d35bb7a5789950efd5f03b270d4c5f774eaba9/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/f5/f5d35bb7a5789950efd5f03b270d4c5f774eaba9//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/f5/f5d35bb7a5789950efd5f03b270d4c5f774eaba9//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-28  2:47 [binutils-gdb] [PATCH] Adjust test gdb.ada/ptype_tagged_param.exp for when GNAT runtime does not have debug info gdb-buildbot
@ 2019-12-28  2:52 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-28  2:52 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/1570

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        b28a729db188235ce61f3a03e35a27f9427af12e

Subject of commit:
        [PATCH] Adjust test gdb.ada/ptype_tagged_param.exp for when GNAT runtime does not have debug info

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/b2/b28a729db188235ce61f3a03e35a27f9427af12e/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/b2/b28a729db188235ce61f3a03e35a27f9427af12e//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/b2/b28a729db188235ce61f3a03e35a27f9427af12e//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-27 19:40 [binutils-gdb] Remove dead code from TUI gdb-buildbot
@ 2019-12-27 20:18 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-27 20:18 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/1569

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        ace206a5a5d86d8427607fd1af484689c0b23eaf

Subject of commit:
        Remove dead code from TUI

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/ac/ace206a5a5d86d8427607fd1af484689c0b23eaf/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
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/Ubuntu-Aarch64-native-gdbserver-m64/ac/ace206a5a5d86d8427607fd1af484689c0b23eaf//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/ac/ace206a5a5d86d8427607fd1af484689c0b23eaf//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-27  9:11 [binutils-gdb] x86: consolidate Disp<NN> handling a little gdb-buildbot
@ 2019-12-27  9:53 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-27  9:53 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/1564

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        48bcea9f48cce70005307befbc604de3618bbaf7

Subject of commit:
        x86: consolidate Disp<NN> handling a little

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/48/48bcea9f48cce70005307befbc604de3618bbaf7/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
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/Ubuntu-Aarch64-native-gdbserver-m64/48/48bcea9f48cce70005307befbc604de3618bbaf7//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/48/48bcea9f48cce70005307befbc604de3618bbaf7//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-27  5:32 [binutils-gdb] Make symbol_set_names a member function gdb-buildbot
@ 2019-12-27  5:35 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-27  5:35 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/1563

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        4d4eaa30055138112bd17ed6933f2da39760d9e6

Subject of commit:
        Make symbol_set_names a member function

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/4d/4d4eaa30055138112bd17ed6933f2da39760d9e6/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/4d/4d4eaa30055138112bd17ed6933f2da39760d9e6//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/4d/4d4eaa30055138112bd17ed6933f2da39760d9e6//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-26 22:45 [binutils-gdb] Add a NEWS entry for multithreaded symbol loading gdb-buildbot
@ 2019-12-26 23:19 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-26 23:19 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/1562

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        8fb75323313b095569200a400c07d2d7a887aa95

Subject of commit:
        Add a NEWS entry for multithreaded symbol loading

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/8f/8fb75323313b095569200a400c07d2d7a887aa95/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/8f/8fb75323313b095569200a400c07d2d7a887aa95//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/8f/8fb75323313b095569200a400c07d2d7a887aa95//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-26  9:09 [binutils-gdb] ubsan: v850: left shift cannot be represented in type 'int' gdb-buildbot
@ 2019-12-26  9:22 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-26  9:22 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/1560

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        6c2ca6c25dbefd7192dac52e7fd156ae0f299f1f

Subject of commit:
        ubsan: v850: left shift cannot be represented in type 'int'

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/6c/6c2ca6c25dbefd7192dac52e7fd156ae0f299f1f/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/6c/6c2ca6c25dbefd7192dac52e7fd156ae0f299f1f//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/6c/6c2ca6c25dbefd7192dac52e7fd156ae0f299f1f//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-26  8:02 [binutils-gdb] asan: som: heap-buffer-overflow gdb-buildbot
@ 2019-12-26  8:25 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-26  8:25 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/1559

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        e5af216040aba59952c99d6479ba5279cee6825d

Subject of commit:
        asan: som: heap-buffer-overflow

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/e5/e5af216040aba59952c99d6479ba5279cee6825d/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 4
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
==============================================

*** 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/e5/e5af216040aba59952c99d6479ba5279cee6825d//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/e5/e5af216040aba59952c99d6479ba5279cee6825d//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-26  6:53 [binutils-gdb] Add profiling outputs to .gitignore gdb-buildbot
@ 2019-12-26  7:29 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-26  7:29 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/1558

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        cef2097a8731b04accf50d99c9b5a556cebd5f15

Subject of commit:
        Add profiling outputs to .gitignore

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/ce/cef2097a8731b04accf50d99c9b5a556cebd5f15/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================

*** 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/ce/cef2097a8731b04accf50d99c9b5a556cebd5f15//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/ce/cef2097a8731b04accf50d99c9b5a556cebd5f15//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-26  6:19 [binutils-gdb] pe_bfd_read_buildid memory leak gdb-buildbot
@ 2019-12-26  6:53 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-26  6:53 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/1557

Author:
        Hannes Domani <ssbssa@yahoo.de>

Commit tested:
        f5311f250947307f981e2312968a155cec6037e1

Subject of commit:
        pe_bfd_read_buildid memory leak

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/f5/f5311f250947307f981e2312968a155cec6037e1/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/f5/f5311f250947307f981e2312968a155cec6037e1//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/f5/f5311f250947307f981e2312968a155cec6037e1//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-23  9:34 [binutils-gdb] ubsan: iq2000: left shift of negative value gdb-buildbot
@ 2019-12-23 10:14 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-23 10:14 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/1549

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        3e1056a1a6336f289d3f0def8f6a3632c8a75393

Subject of commit:
        ubsan: iq2000: left shift of negative value

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/3e/3e1056a1a6336f289d3f0def8f6a3632c8a75393/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/3e/3e1056a1a6336f289d3f0def8f6a3632c8a75393//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/3e/3e1056a1a6336f289d3f0def8f6a3632c8a75393//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-21 21:56 [binutils-gdb] Fix disabling of solib probes when LD_AUDITing gdb-buildbot
@ 2019-12-21 22:33 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-21 22:33 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/1545

Author:
        George Barrett <bob@bob131.so>

Commit tested:
        cb7364414157c42de5ea618d98e2be9eff1894ba

Subject of commit:
        Fix disabling of solib probes when LD_AUDITing

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/cb/cb7364414157c42de5ea618d98e2be9eff1894ba/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/cb/cb7364414157c42de5ea618d98e2be9eff1894ba//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/cb/cb7364414157c42de5ea618d98e2be9eff1894ba//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-21 19:28 [binutils-gdb] Address Tom Tromey's comments on the CTF reader gdb-buildbot
@ 2019-12-21 20:00 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-21 20:00 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/1542

Author:
        Weimin Pan <weimin.pan@oracle.com>

Commit tested:
        1c7148dd0d370175b7ed6ef47de0a6958b1abac8

Subject of commit:
        Address Tom Tromey's comments on the CTF reader.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/1c/1c7148dd0d370175b7ed6ef47de0a6958b1abac8/

*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.opt/solib-intra-step.exp: continue to breakpoint: second-hit
new FAIL: gdb.opt/solib-intra-step.exp: info breakpoints
PASS -> FAIL: gdb.opt/solib-intra-step.exp: second-hit
==============================================

*** 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/1c/1c7148dd0d370175b7ed6ef47de0a6958b1abac8//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/1c/1c7148dd0d370175b7ed6ef47de0a6958b1abac8//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-21 17:35 [binutils-gdb] sym-info-cmds.exp: add missing quote in test name gdb-buildbot
@ 2019-12-21 18:16 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-21 18:16 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/1540

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        f3bce4830bfe97bcf1c3c0c549619561dc3fc9b8

Subject of commit:
        sym-info-cmds.exp: add missing quote in test name

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/f3/f3bce4830bfe97bcf1c3c0c549619561dc3fc9b8/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/f3/f3bce4830bfe97bcf1c3c0c549619561dc3fc9b8//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/f3/f3bce4830bfe97bcf1c3c0c549619561dc3fc9b8//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-21 16:42 [binutils-gdb] testsuite, cp: increase the coverage of testing pass-by-ref arguments gdb-buildbot
@ 2019-12-21 16:34 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-21 16:34 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/1538

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        c855a9125ade61c046091373bafdae0c719118e0

Subject of commit:
        testsuite, cp: increase the coverage of testing pass-by-ref arguments

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/c8/c855a9125ade61c046091373bafdae0c719118e0/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/c8/c855a9125ade61c046091373bafdae0c719118e0//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/c8/c855a9125ade61c046091373bafdae0c719118e0//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-21 14:25 [binutils-gdb] infcall, c++: collect more pass-by-reference information gdb-buildbot
@ 2019-12-21 15:13 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-21 15:13 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/1536

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        62bf63d74d54482d42e9d78890ebc0dd4675e23b

Subject of commit:
        infcall, c++: collect more pass-by-reference information

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/62/62bf63d74d54482d42e9d78890ebc0dd4675e23b/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/62/62bf63d74d54482d42e9d78890ebc0dd4675e23b//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/62/62bf63d74d54482d42e9d78890ebc0dd4675e23b//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-21  5:08 [binutils-gdb] Display "main" on initial TUI startup gdb-buildbot
@ 2019-12-21  5:58 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-21  5:58 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/1525

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        77b97e006217ed089b588e6799a59334bd216c43

Subject of commit:
        Display "main" on initial TUI startup

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/77/77b97e006217ed089b588e6799a59334bd216c43/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/77/77b97e006217ed089b588e6799a59334bd216c43//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/77/77b97e006217ed089b588e6799a59334bd216c43//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-21  3:56 [binutils-gdb] Simplify tui_update_source_windows_with_line gdb-buildbot
@ 2019-12-21  4:03 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-21  4: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/1523

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        5d49bf1b698124fe21017105f84b18e29221b262

Subject of commit:
        Simplify tui_update_source_windows_with_line

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/5d/5d49bf1b698124fe21017105f84b18e29221b262/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/5d/5d49bf1b698124fe21017105f84b18e29221b262//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/5d/5d49bf1b698124fe21017105f84b18e29221b262//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-21  2:42 [binutils-gdb] Simplify tui_update_source_windows_with_addr gdb-buildbot
@ 2019-12-21  3:24 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-21  3:24 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/1522

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        88180c082424fd90e8a5967f8c84533f7cc6380f

Subject of commit:
        Simplify tui_update_source_windows_with_addr

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/88/88180c082424fd90e8a5967f8c84533f7cc6380f/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/88/88180c082424fd90e8a5967f8c84533f7cc6380f//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/88/88180c082424fd90e8a5967f8c84533f7cc6380f//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-20 23:42 [binutils-gdb] Remove tui_source_window::show_symtab_source gdb-buildbot
@ 2019-12-20 23:58 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-20 23:58 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/1518

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        469b073133fa35b54ab4f1bc3dee42ccede84689

Subject of commit:
        Remove tui_source_window::show_symtab_source

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/46/469b073133fa35b54ab4f1bc3dee42ccede84689/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/46/469b073133fa35b54ab4f1bc3dee42ccede84689//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/46/469b073133fa35b54ab4f1bc3dee42ccede84689//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-20 22:29 [binutils-gdb] Remove some unnecessary focus switches gdb-buildbot
@ 2019-12-20 22:18 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-20 22:18 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/1516

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        d4669c0fc75ad5ad2e99748f9307b5038955f9d3

Subject of commit:
        Remove some unnecessary focus switches

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/d4/d4669c0fc75ad5ad2e99748f9307b5038955f9d3/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
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/Ubuntu-Aarch64-native-gdbserver-m64/d4/d4669c0fc75ad5ad2e99748f9307b5038955f9d3//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/d4/d4669c0fc75ad5ad2e99748f9307b5038955f9d3//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-20 17:52 [binutils-gdb] Change tui_update_locator_fullname to take a symtab gdb-buildbot
@ 2019-12-20 18:10 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-20 18:10 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/1511

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        c1b167d76ec06c02f1aaa176c3dcfb1b4d8cee0c

Subject of commit:
        Change tui_update_locator_fullname to take a symtab

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/c1/c1b167d76ec06c02f1aaa176c3dcfb1b4d8cee0c/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/c1/c1b167d76ec06c02f1aaa176c3dcfb1b4d8cee0c//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/c1/c1b167d76ec06c02f1aaa176c3dcfb1b4d8cee0c//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-20 16:57 [binutils-gdb] Make isearch change readline prompt in TUI gdb-buildbot
@ 2019-12-20 17:22 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-20 17:22 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/1510

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        364d710448e607e4ae9cb338583179dd6e734f0b

Subject of commit:
        Make isearch change readline prompt in TUI

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/36/364d710448e607e4ae9cb338583179dd6e734f0b/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/36/364d710448e607e4ae9cb338583179dd6e734f0b//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/36/364d710448e607e4ae9cb338583179dd6e734f0b//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-20 13:35 [binutils-gdb] ubsan: xtensa: left shift cannot be represented in type 'int' gdb-buildbot
@ 2019-12-20 14:17 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-20 14:17 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/1507

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        e76832f125f6f005ddf3c75b7be675272568b01e

Subject of commit:
        ubsan: xtensa: left shift cannot be represented in type 'int'

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/e7/e76832f125f6f005ddf3c75b7be675272568b01e/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/e7/e76832f125f6f005ddf3c75b7be675272568b01e//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/e7/e76832f125f6f005ddf3c75b7be675272568b01e//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-19 21:51 [binutils-gdb] Make the literal argument to pow a double, not an integer gdb-buildbot
@ 2019-12-19 22:46 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-19 22:46 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/1500

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        d411762c45d66b64c5cbfc8a9f004b1f2e1fba4b

Subject of commit:
        Make the literal argument to pow a double, not an integer

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/d4/d411762c45d66b64c5cbfc8a9f004b1f2e1fba4b/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/d4/d411762c45d66b64c5cbfc8a9f004b1f2e1fba4b//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/d4/d411762c45d66b64c5cbfc8a9f004b1f2e1fba4b//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-19 21:21 [binutils-gdb] Cast the log10 argument to double to disambiguate it gdb-buildbot
@ 2019-12-19 21:41 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-19 21:41 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/1499

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        1cd4a20a27c430fdd0db8d5b154e9c7860e440f5

Subject of commit:
        Cast the log10 argument to double to disambiguate it

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/1c/1cd4a20a27c430fdd0db8d5b154e9c7860e440f5/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/1c/1cd4a20a27c430fdd0db8d5b154e9c7860e440f5//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/1c/1cd4a20a27c430fdd0db8d5b154e9c7860e440f5//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-19 20:45 [binutils-gdb] Rename "sun" variable to avoid conflicts on Solaris gdb-buildbot
@ 2019-12-19 21:07 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-19 21:07 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/1498

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        aa989b27d0bad451455416953c0e5026e229863a

Subject of commit:
        Rename "sun" variable to avoid conflicts on Solaris

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/aa/aa989b27d0bad451455416953c0e5026e229863a/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/aa/aa989b27d0bad451455416953c0e5026e229863a//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/aa/aa989b27d0bad451455416953c0e5026e229863a//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-19 19:42 [binutils-gdb] Add install-strip to sim/ gdb-buildbot
@ 2019-12-19 20:22 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-19 20:22 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/1497

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        78aa740b768e1e62f8bf9d216901245c452a31d9

Subject of commit:
        Add install-strip to sim/

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/78/78aa740b768e1e62f8bf9d216901245c452a31d9/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/78/78aa740b768e1e62f8bf9d216901245c452a31d9//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/78/78aa740b768e1e62f8bf9d216901245c452a31d9//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-19 18:32 [binutils-gdb] Fix comment in field_kind gdb-buildbot
@ 2019-12-19 19:36 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-19 19:36 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/1496

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        2032eb7e934e65ab071f2a6ee8ce92327715d01d

Subject of commit:
        Fix comment in field_kind

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/20/2032eb7e934e65ab071f2a6ee8ce92327715d01d/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/20/2032eb7e934e65ab071f2a6ee8ce92327715d01d//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/20/2032eb7e934e65ab071f2a6ee8ce92327715d01d//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-19 17:28 [binutils-gdb] Handle CRLF when reading XML on Windows gdb-buildbot
@ 2019-12-19 17:59 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-19 17:59 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/1495

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        f69656d00fe3154519ea21668d964bf8cc50c01b

Subject of commit:
        Handle CRLF when reading XML on Windows

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/f6/f69656d00fe3154519ea21668d964bf8cc50c01b/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: 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-gdbserver-m64/f6/f69656d00fe3154519ea21668d964bf8cc50c01b//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/f6/f69656d00fe3154519ea21668d964bf8cc50c01b//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-19  0:42 [binutils-gdb] PR25277, microblaze opcode enumeration vs ISO/IEC TS 18661-3:2015 gdb-buildbot
@ 2019-12-19  1:22 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-19  1:22 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/1491

Author:
        Dr N.W. Filardo <nwf20@cam.ac.uk>

Commit tested:
        1d29ab86cb5145cac5045c1a4113d8b8fbd4d9c6

Subject of commit:
        PR25277, microblaze opcode enumeration vs ISO/IEC TS 18661-3:2015

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/1d/1d29ab86cb5145cac5045c1a4113d8b8fbd4d9c6/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/1d/1d29ab86cb5145cac5045c1a4113d8b8fbd4d9c6//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/1d/1d29ab86cb5145cac5045c1a4113d8b8fbd4d9c6//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-18 22:06 [binutils-gdb] Update gdb.base/default.exp for GDB 10 gdb-buildbot
@ 2019-12-18 22:44 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-18 22:44 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/1490

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        99a5596592eda72c5c60b45cdfabb47e426132d5

Subject of commit:
        Update gdb.base/default.exp for GDB 10

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/99/99a5596592eda72c5c60b45cdfabb47e426132d5/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/99/99a5596592eda72c5c60b45cdfabb47e426132d5//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/99/99a5596592eda72c5c60b45cdfabb47e426132d5//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-18 17:53 [binutils-gdb] Fix -Wmisleading-indentation warning in top.c gdb-buildbot
@ 2019-12-18 18:30 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-18 18:30 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/1486

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        bbde7025e0d5629e309c15af5a07bac272e21b07

Subject of commit:
        Fix -Wmisleading-indentation warning in top.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/bb/bbde7025e0d5629e309c15af5a07bac272e21b07/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/bb/bbde7025e0d5629e309c15af5a07bac272e21b07//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/bb/bbde7025e0d5629e309c15af5a07bac272e21b07//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-17 14:06 [binutils-gdb] ubsan: aarch64: left shift cannot be represented in type 'int64_t' gdb-buildbot
@ 2019-12-17 15:23 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-17 15:23 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/1478

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        29298bf66f62f2f6c1efb0685623fbc29dfade90

Subject of commit:
        ubsan: aarch64: left shift cannot be represented in type 'int64_t'

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/29/29298bf66f62f2f6c1efb0685623fbc29dfade90/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/29/29298bf66f62f2f6c1efb0685623fbc29dfade90//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/29/29298bf66f62f2f6c1efb0685623fbc29dfade90//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-17 12:11 [binutils-gdb] ubsan: bpf: left shift cannot be represented in type 'DI' (aka 'long') gdb-buildbot
@ 2019-12-17 13:33 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-17 13:33 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/1475

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        62e6599087efba193e0156d89ee65fb74fc99cb2

Subject of commit:
        ubsan: bpf: left shift cannot be represented in type 'DI' (aka 'long')

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/62/62e6599087efba193e0156d89ee65fb74fc99cb2/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/62/62e6599087efba193e0156d89ee65fb74fc99cb2//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/62/62e6599087efba193e0156d89ee65fb74fc99cb2//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-17  9:00 [binutils-gdb] jit: make gdb_object::symtabs an std::forward_list gdb-buildbot
@ 2019-12-17  8:40 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-17  8:40 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/1470

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        1b61f46da5e55bf2df243215f34ffbca4bcf6d9e

Subject of commit:
        jit: make gdb_object::symtabs an std::forward_list

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/1b/1b61f46da5e55bf2df243215f34ffbca4bcf6d9e/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/1b/1b61f46da5e55bf2df243215f34ffbca4bcf6d9e//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/1b/1b61f46da5e55bf2df243215f34ffbca4bcf6d9e//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-17  7:06 [binutils-gdb] Fix double-free when creating more than one block in JIT debug info reader gdb-buildbot
@ 2019-12-17  6:57 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-17  6:57 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/1468

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        d043f8c867f85f1c36cc957da8204fe2907b3aea

Subject of commit:
        Fix double-free when creating more than one block in JIT debug info reader

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/d0/d043f8c867f85f1c36cc957da8204fe2907b3aea/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/d0/d043f8c867f85f1c36cc957da8204fe2907b3aea//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/d0/d043f8c867f85f1c36cc957da8204fe2907b3aea//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-17  2:13 [binutils-gdb] ubsan: nios2: left shift cannot be represented in type 'int' gdb-buildbot
@ 2019-12-17  2:53 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-17  2:53 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/1463

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        8a92faab92e359a860da6c69741acd1fac24dad6

Subject of commit:
        ubsan: nios2: left shift cannot be represented in type 'int'

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/8a/8a92faab92e359a860da6c69741acd1fac24dad6/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/8a/8a92faab92e359a860da6c69741acd1fac24dad6//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/8a/8a92faab92e359a860da6c69741acd1fac24dad6//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-16 23:30 [binutils-gdb] ubsan: bfin: left shift of negative value gdb-buildbot
@ 2019-12-16 23:24 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-16 23:24 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/1459

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        cedfc77485dbb566619dc1e2d729ce0a70d1a4ad

Subject of commit:
        ubsan: bfin: left shift of negative value

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/ce/cedfc77485dbb566619dc1e2d729ce0a70d1a4ad/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/ce/cedfc77485dbb566619dc1e2d729ce0a70d1a4ad//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/ce/cedfc77485dbb566619dc1e2d729ce0a70d1a4ad//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-16 21:25 [binutils-gdb] ubsan: moxie: left shift of negative value gdb-buildbot
@ 2019-12-16 22:17 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-16 22:17 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/1457

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        cf950fd4dd4581849a445a76b57514d72074927d

Subject of commit:
        ubsan: moxie: left shift of negative value

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/cf/cf950fd4dd4581849a445a76b57514d72074927d/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/cf/cf950fd4dd4581849a445a76b57514d72074927d//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/cf/cf950fd4dd4581849a445a76b57514d72074927d//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-16 19:58 [binutils-gdb] Use an accessor function for general_symbol_info::language gdb-buildbot
@ 2019-12-16 20:36 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-16 20:36 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/1455

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        c1b5c1ebc938b6dc0277363b8c47d75b0b5a621f

Subject of commit:
        Use an accessor function for general_symbol_info::language

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/c1/c1b5c1ebc938b6dc0277363b8c47d75b0b5a621f/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
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/Ubuntu-Aarch64-native-gdbserver-m64/c1/c1b5c1ebc938b6dc0277363b8c47d75b0b5a621f//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/c1/c1b5c1ebc938b6dc0277363b8c47d75b0b5a621f//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-16 19:22 [binutils-gdb] Use symbol_set_language to set a symbol's language gdb-buildbot
@ 2019-12-16 19:07 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-16 19:07 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/1454

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        747cfc8c6bb23d40b3fa987f6c3df9d3a0d7b817

Subject of commit:
        Use symbol_set_language to set a symbol's language

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/74/747cfc8c6bb23d40b3fa987f6c3df9d3a0d7b817/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/74/747cfc8c6bb23d40b3fa987f6c3df9d3a0d7b817//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/74/747cfc8c6bb23d40b3fa987f6c3df9d3a0d7b817//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-16 15:42 [binutils-gdb] Add unlink support to moxie simulator gdb-buildbot
@ 2019-12-16 16:00 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-16 16:00 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/1452

Author:
        Anthony Green <green@moxielogic.com>

Commit tested:
        fb46334198d8d4f82133033758cb75f086d864ad

Subject of commit:
        Add unlink support to moxie simulator

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/fb/fb46334198d8d4f82133033758cb75f086d864ad/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/fb/fb46334198d8d4f82133033758cb75f086d864ad//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/fb/fb46334198d8d4f82133033758cb75f086d864ad//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-16 11:39 [binutils-gdb] Remove "fix" call for "long long" from ARI gdb-buildbot
@ 2019-12-16 12:32 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-16 12:32 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/1448

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        93537683e79f8a55c51ffa00008966e32ee8e4a7

Subject of commit:
        Remove "fix" call for "long long" from ARI

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/93/93537683e79f8a55c51ffa00008966e32ee8e4a7/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/93/93537683e79f8a55c51ffa00008966e32ee8e4a7//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/93/93537683e79f8a55c51ffa00008966e32ee8e4a7//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-16 10:20 [binutils-gdb] Change ARI usage to GNU style gdb-buildbot
@ 2019-12-16 11:05 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-16 11:05 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/1446

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        98f9338a584c5f68595fc97e692e83f700c8da3d

Subject of commit:
        Change ARI usage to GNU style

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/98/98f9338a584c5f68595fc97e692e83f700c8da3d/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/98/98f9338a584c5f68595fc97e692e83f700c8da3d//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/98/98f9338a584c5f68595fc97e692e83f700c8da3d//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-16  3:00 [binutils-gdb] MSP430: Relax target glob for configuring GDB gdb-buildbot
@ 2019-12-16  3:35 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-16  3:35 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/1437

Author:
        Jozef Lawrynowicz <jozef.l@mittosystems.com>

Commit tested:
        b3f4b80fba8bee1d1d2601424d0be0f2adcb0d79

Subject of commit:
        MSP430: Relax target glob for configuring GDB

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/b3/b3f4b80fba8bee1d1d2601424d0be0f2adcb0d79/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/b3/b3f4b80fba8bee1d1d2601424d0be0f2adcb0d79//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/b3/b3f4b80fba8bee1d1d2601424d0be0f2adcb0d79//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-15 23:55 [binutils-gdb] Manage objfiles with shared_ptr gdb-buildbot
@ 2019-12-16  0:43 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-16  0:43 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/1434

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        7d7167ce1b93f8bb151daa2572314987eaeb9e3c

Subject of commit:
        Manage objfiles with shared_ptr

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/7d/7d7167ce1b93f8bb151daa2572314987eaeb9e3c/

*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/access_tagged_param.exp: continue
FAIL -> KFAIL: gdb.ada/bad-task-bp-keyword.exp: break *break_me'address TASK Task TaSK 2
new FAIL: gdb.ada/mi_interface.exp: create ggg1 varobj
new FAIL: gdb.ada/mi_interface.exp: list ggg1's children
new FAIL: gdb.ada/ptype_tagged_param.exp: ptype s
new FAIL: gdb.ada/ref_param.exp: frame argument value printed
new KFAIL: gdb.base/argv0-symlink.exp: kept directory symbolic link name
new FAIL: gdb.base/catch-syscall.exp: execve: continue to main
new FAIL: gdb.base/catch-syscall.exp: execve: continue until exit
new FAIL: gdb.base/catch-syscall.exp: execve: syscall execve has returned
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections -r
new FAIL: gdb.base/compare-sections.exp: read-only: compare-sections -r
new KFAIL: gdb.base/foll-vfork.exp: exit: vfork child follow, finish after tcatch vfork: finish
new KFAIL: gdb.base/info-macros.exp: info macros info-macros.c:42
new FAIL: gdb.base/interrupt-daemon.exp: bg: continue&
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt cmd stops process
new FAIL: gdb.base/interrupt-daemon.exp: fg: ctrl-c stops process
new FAIL: gdb.base/large-frame.exp: optimize=-O0: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O1: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O2: backtrace
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
FAIL -> KFAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp_4_2_from_macscp3'
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_2_from_macscp3
new FAIL: gdb.base/nextoverexit.exp: next over exit
new FAIL: gdb.base/setshow.exp: set language asm
new KFAIL: gdb.base/sigbpt.exp: stepi bp at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before and at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi; stepi out of handler
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: continue to end of inf 2
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: continue to marker
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : vfork: continue to end of inf 2
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : vfork: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : vfork: continue to marker
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : vfork: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: continue to syscall insn vfork
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: single step over vfork
new FAIL: gdb.base/store.exp: upvar doublest l; print old r, expecting -2
new FAIL: gdb.base/store.exp: var doublest l; print old r, expecting -2
new KFAIL: gdb.base/utf8-identifiers.exp: tab complete "break fun"
new KFAIL: gdb.base/watchpoint-unaligned.exp: wpcount
new KPASS: gdb.cp/cpexprs.exp: p CV::m
new KFAIL: gdb.cp/local.exp: ptype InnerLocal::NestedInnerLocal
new KFAIL: gdb.cp/oranking.exp: p foo0
new KFAIL: gdb.cp/oranking.exp: p foo10
new KFAIL: gdb.cp/oranking.exp: p foo11
new KFAIL: gdb.cp/oranking.exp: p foo13
new KFAIL: gdb.cp/oranking.exp: p foo14
new KFAIL: gdb.cp/oranking.exp: p foo2
new KFAIL: gdb.cp/rvalue-ref-overload.exp: rvalue reference overload
FAIL -> KFAIL: gdb.cp/templates.exp: ptype fvpchar
new KFAIL: gdb.cp/var-tag.exp: global collision: print global
new KFAIL: gdb.cp/virtfunc.exp: print pEe->D::vg
FAIL -> KFAIL: gdb.dwarf2/dw2-simple-locdesc.exp: p &s.shl
UNRESOLVED -> FAIL: gdb.mi/mi-async.exp: start: send
FAIL -> KFAIL: gdb.mi/mi-until.exp: until after while loop
new KFAIL: gdb.opt/inline-cmds.exp: next to second func1
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 2
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 3
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=3: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=4: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=5: created new thread
new KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: continue
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_asm_test
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_c_test
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_recursion_test 0
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_asm_test
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_c_test
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_recursion_test 0
new FAIL: gdb.trace/change-loc.exp: 1 trace: continue to marker 2
new FAIL: gdb.trace/change-loc.exp: 1 trace: continue to marker 3
new FAIL: gdb.trace/change-loc.exp: 1 trace: tfind frame 0
new FAIL: gdb.trace/change-loc.exp: 1 trace: tracepoint with two locations - installed
new FAIL: gdb.trace/change-loc.exp: 1 trace: tracepoint with two locations - pending
new FAIL: gdb.trace/change-loc.exp: 2 trace: continue to marker 2
new FAIL: gdb.trace/change-loc.exp: 2 trace: continue to marker 3
new FAIL: gdb.trace/change-loc.exp: 2 trace: tfind frame 2
new FAIL: gdb.trace/change-loc.exp: 2 trace: tracepoint with two locations - installed
new FAIL: gdb.trace/change-loc.exp: 2 trace: tracepoint with two locations - pending
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local char
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local double
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local float
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local int
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member char
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member double
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member float
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member int
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #0
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #1
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #2
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #3
new FAIL: gdb.trace/collection.exp: collect register locals collectively: start trace experiment
new FAIL: gdb.trace/collection.exp: collect register locals collectively: tfind test frame
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local char
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local double
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local float
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local int
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member char
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member double
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member float
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member int
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #0
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #1
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #2
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #3
new FAIL: gdb.trace/collection.exp: collect register locals individually: define actions
new FAIL: gdb.trace/pending.exp: ftrace installed_in_trace: continue to marker 2
new FAIL: gdb.trace/pending.exp: ftrace installed_in_trace: tfind test frame 0
new FAIL: gdb.trace/pending.exp: trace installed_in_trace: continue to marker 2
new FAIL: gdb.trace/pending.exp: trace installed_in_trace: tfind test frame 0
new FAIL: gdb.trace/signal.exp: tracepoint 4 hit 3 times
new FAIL: gdb.trace/signal.exp: tracepoint 5 hit 3 times
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: tfile: info locals
new FAIL: gdb.tui/resize.exp: source box after resize
==============================================

*** 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/7d/7d7167ce1b93f8bb151daa2572314987eaeb9e3c//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/7d/7d7167ce1b93f8bb151daa2572314987eaeb9e3c//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-13  8:10 [binutils-gdb] Introduce program_space::add_objfile gdb-buildbot
@ 2019-12-14  5:40 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-14  5:40 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/1428

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        7cac64af7bc6a7f7a86f90a1465f7c3d2b6f07e8

Subject of commit:
        Introduce program_space::add_objfile

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/7c/7cac64af7bc6a7f7a86f90a1465f7c3d2b6f07e8/

*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/O2_float_param.exp:
new FAIL: gdb.ada/access_tagged_param.exp:
new FAIL: gdb.ada/access_to_packed_array.exp:
PASS -> FAIL: gdb.ada/access_to_packed_array.exp: print pack.a
PASS -> FAIL: gdb.ada/access_to_packed_array.exp: print pack.aa
new FAIL: gdb.ada/access_to_unbounded_array.exp:
PASS -> FAIL: gdb.ada/access_to_unbounded_array.exp: print Aos
new FAIL: gdb.ada/addr_arith.exp:
new FAIL: gdb.ada/aliased_array.exp:
PASS -> FAIL: gdb.ada/aliased_array.exp: print bt
new FAIL: gdb.ada/arr_acc_idx_w_gap.exp:
new FAIL: gdb.ada/arr_arr.exp:
new FAIL: gdb.ada/arr_enum_idx_w_gap.exp:
new FAIL: gdb.ada/array_bounds.exp:
new FAIL: gdb.ada/array_char_idx.exp:
PASS -> FAIL: gdb.ada/array_char_idx.exp: Display my_table
PASS -> FAIL: gdb.ada/array_char_idx.exp: ptype char_table
PASS -> FAIL: gdb.ada/array_char_idx.exp: ptype global_char_table
new FAIL: gdb.ada/array_of_variable_length.exp:
PASS -> FAIL: gdb.ada/array_of_variable_length.exp: print pck.a
PASS -> FAIL: gdb.ada/array_of_variable_length.exp: ptype $
PASS -> FAIL: gdb.ada/array_of_variable_length.exp: ptype pck.a
new FAIL: gdb.ada/array_ptr_renaming.exp:
PASS -> FAIL: gdb.ada/array_ptr_renaming.exp: print nt
PASS -> FAIL: gdb.ada/array_ptr_renaming.exp: print ntp
PASS -> FAIL: gdb.ada/array_ptr_renaming.exp: print ntp.all
new FAIL: gdb.ada/array_return.exp:
new FAIL: gdb.ada/array_return.exp: cannot run to main, testcase aborted
new FAIL: gdb.ada/array_subscript_addr.exp:
PASS -> FAIL: gdb.ada/array_subscript_addr.exp: print a
new FAIL: gdb.ada/arraydim.exp:
PASS -> FAIL: gdb.ada/arraydim.exp: print global_3dim_for_gdb_testing'first
PASS -> FAIL: gdb.ada/arraydim.exp: print global_3dim_for_gdb_testing'last
PASS -> FAIL: gdb.ada/arraydim.exp: print global_3dim_for_gdb_testing'length
PASS -> FAIL: gdb.ada/arraydim.exp: print m'first
PASS -> FAIL: gdb.ada/arraydim.exp: print m'last
PASS -> FAIL: gdb.ada/arraydim.exp: print m'length
PASS -> FAIL: gdb.ada/arraydim.exp: ptype global_3dim_for_gdb_testing
PASS -> FAIL: gdb.ada/arraydim.exp: ptype m
new FAIL: gdb.ada/arrayidx.exp:
PASS -> FAIL: gdb.ada/arrayidx.exp: print e_one_two_three
PASS -> FAIL: gdb.ada/arrayidx.exp: print e_one_two_three, indexes off
PASS -> FAIL: gdb.ada/arrayidx.exp: print empty
PASS -> FAIL: gdb.ada/arrayidx.exp: print empty, indexes off
PASS -> FAIL: gdb.ada/arrayidx.exp: print few_reps
PASS -> FAIL: gdb.ada/arrayidx.exp: print few_reps, indexes off
PASS -> FAIL: gdb.ada/arrayidx.exp: print many_reps
PASS -> FAIL: gdb.ada/arrayidx.exp: print many_reps, indexes off
PASS -> FAIL: gdb.ada/arrayidx.exp: print one_two_three
PASS -> FAIL: gdb.ada/arrayidx.exp: print one_two_three, indexes off
PASS -> FAIL: gdb.ada/arrayidx.exp: print p_one_two_three
PASS -> FAIL: gdb.ada/arrayidx.exp: print p_one_two_three, indexes off
PASS -> FAIL: gdb.ada/arrayidx.exp: print r_two_three
PASS -> FAIL: gdb.ada/arrayidx.exp: print r_two_three, indexes off
PASS -> FAIL: gdb.ada/arrayidx.exp: print u_one_two_three
PASS -> FAIL: gdb.ada/arrayidx.exp: print u_one_two_three, indexes off
new FAIL: gdb.ada/arrayparam.exp:
PASS -> FAIL: gdb.ada/arrayparam.exp: print call_me
PASS -> FAIL: gdb.ada/arrayparam.exp: print first after function call
PASS -> FAIL: gdb.ada/arrayparam.exp: print last after function call
PASS -> FAIL: gdb.ada/arrayparam.exp: print length after function call
new FAIL: gdb.ada/arrayptr.exp:
new FAIL: gdb.ada/assign_arr.exp:
PASS -> FAIL: gdb.ada/assign_arr.exp: print assign_arr_input.u2 :=
new FAIL: gdb.ada/atomic_enum.exp:
PASS -> FAIL: gdb.ada/atomic_enum.exp: ptype pck.data_flag
new FAIL: gdb.ada/attr_ref_and_charlit.exp:
PASS -> FAIL: gdb.ada/attr_ref_and_charlit.exp: gdb_test
PASS -> FAIL: gdb.ada/attr_ref_and_charlit.exp: print s'first
PASS -> FAIL: gdb.ada/attr_ref_and_charlit.exp: print s'last
PASS -> FAIL: gdb.ada/attr_ref_and_charlit.exp: print s
new FAIL: gdb.ada/bad-task-bp-keyword.exp:
PASS -> FAIL: gdb.ada/bad-task-bp-keyword.exp: break *break_me'address TASK 2
KFAIL -> FAIL: gdb.ada/bad-task-bp-keyword.exp: break *break_me'address TASK Task TaSK 2
PASS -> FAIL: gdb.ada/bad-task-bp-keyword.exp: break *break_me'address TASK if
new FAIL: gdb.ada/bias.exp:
PASS -> FAIL: gdb.ada/bias.exp: print a
PASS -> FAIL: gdb.ada/bias.exp: print cval
PASS -> FAIL: gdb.ada/bias.exp: print spr
PASS -> FAIL: gdb.ada/bias.exp: print x
PASS -> FAIL: gdb.ada/bias.exp: print x * x1
PASS -> FAIL: gdb.ada/bias.exp: print x + x1
PASS -> FAIL: gdb.ada/bias.exp: print x - x1
PASS -> FAIL: gdb.ada/bias.exp: print x / x1
PASS -> FAIL: gdb.ada/bias.exp: print x := 5
PASS -> FAIL: gdb.ada/bias.exp: print y
PASS -> FAIL: gdb.ada/bias.exp: print y /= y
PASS -> FAIL: gdb.ada/bias.exp: print y /= y1
PASS -> FAIL: gdb.ada/bias.exp: print y < y1
PASS -> FAIL: gdb.ada/bias.exp: print y <= y1
PASS -> FAIL: gdb.ada/bias.exp: print y = y
PASS -> FAIL: gdb.ada/bias.exp: print y > y1
PASS -> FAIL: gdb.ada/bias.exp: print y >= y1
PASS -> FAIL: gdb.ada/bias.exp: print/c cval
PASS -> FAIL: gdb.ada/bias.exp: ptype x + x1
PASS -> FAIL: gdb.ada/bias.exp: re-read x after storing
new FAIL: gdb.ada/big_packed_array.exp:
PASS -> FAIL: gdb.ada/big_packed_array.exp: print bad
PASS -> FAIL: gdb.ada/big_packed_array.exp: print good
new FAIL: gdb.ada/bp_c_mixed_case.exp:
new FAIL: gdb.ada/bp_enum_homonym.exp:
PASS -> FAIL: gdb.ada/bp_enum_homonym.exp: break archive
PASS -> FAIL: gdb.ada/bp_enum_homonym.exp: list pck.adb:1
PASS -> FAIL: gdb.ada/bp_enum_homonym.exp: run to pck.archive breakpoint
new FAIL: gdb.ada/bp_fun_addr.exp:
PASS -> FAIL: gdb.ada/bp_fun_addr.exp: break *bp_fun_addr'address
PASS -> FAIL: gdb.ada/bp_fun_addr.exp: run until breakpoint at bp_fun_addr'address
new FAIL: gdb.ada/bp_inlined_func.exp:
new FAIL: gdb.ada/bp_inlined_func.exp: cannot run to main, testcase aborted
new FAIL: gdb.ada/bp_on_var.exp:
PASS -> FAIL: gdb.ada/bp_on_var.exp: break pck.my_global_variable
PASS -> FAIL: gdb.ada/bp_on_var.exp: break pck.my_hidden_variable
new FAIL: gdb.ada/bp_range_type.exp:
PASS -> FAIL: gdb.ada/bp_range_type.exp: break foo.adb:24 if small_value > 20
PASS -> FAIL: gdb.ada/bp_range_type.exp: print small_value
PASS -> FAIL: gdb.ada/bp_range_type.exp: run to breakpoint
new FAIL: gdb.ada/bp_reset.exp:
PASS -> FAIL: gdb.ada/bp_reset.exp: break do_nothing
PASS -> FAIL: gdb.ada/bp_reset.exp: break nested_sub
new FAIL: gdb.ada/byte_packed_arr.exp:
PASS -> FAIL: gdb.ada/byte_packed_arr.exp: print broken
new FAIL: gdb.ada/call_pn.exp:
new FAIL: gdb.ada/catch_assert_if.exp:
new FAIL: gdb.ada/catch_assert_if.exp: cannot run to main, testcase aborted
new FAIL: gdb.ada/catch_ex.exp:
new FAIL: gdb.ada/catch_ex.exp: cannot run to main, testcase aborted
new FAIL: gdb.ada/catch_ex_std.exp:
new FAIL: gdb.ada/char_enum.exp:
PASS -> FAIL: gdb.ada/char_enum.exp: print Char_Enum_Type'
PASS -> FAIL: gdb.ada/char_enum.exp: print pck.Global_Enum_Type'
PASS -> FAIL: gdb.ada/char_enum.exp: ptype Char_Enum_Type
PASS -> FAIL: gdb.ada/char_enum.exp: ptype pck.Global_Enum_Type
new FAIL: gdb.ada/char_param.exp:
PASS -> FAIL: gdb.ada/char_param.exp: call next
PASS -> FAIL: gdb.ada/char_param.exp: print procedure_result after calling next
PASS -> FAIL: gdb.ada/char_param.exp: print procedure_result after calling same
PASS -> FAIL: gdb.ada/char_param.exp: print procedure_result before calling same
new FAIL: gdb.ada/complete.exp:
PASS -> FAIL: gdb.ada/complete.exp: complete break ada
PASS -> FAIL: gdb.ada/complete.exp: complete p <Exported
PASS -> FAIL: gdb.ada/complete.exp: complete p <__gnat_ada_main_prog
PASS -> FAIL: gdb.ada/complete.exp: complete p <pck__my
PASS -> FAIL: gdb.ada/complete.exp: complete p __gnat_ada_main_progra
PASS -> FAIL: gdb.ada/complete.exp: complete p ambig
PASS -> FAIL: gdb.ada/complete.exp: complete p ambiguous_f
PASS -> FAIL: gdb.ada/complete.exp: complete p external_ident
PASS -> FAIL: gdb.ada/complete.exp: complete p insi
PASS -> FAIL: gdb.ada/complete.exp: complete p local_ident
PASS -> FAIL: gdb.ada/complete.exp: complete p my_glob
PASS -> FAIL: gdb.ada/complete.exp: complete p pck
PASS -> FAIL: gdb.ada/complete.exp: complete p pck.
PASS -> FAIL: gdb.ada/complete.exp: complete p pck.inne
PASS -> FAIL: gdb.ada/complete.exp: complete p pck.inner.
PASS -> FAIL: gdb.ada/complete.exp: complete p pck.inner.ins
PASS -> FAIL: gdb.ada/complete.exp: complete p pck.local_ident
PASS -> FAIL: gdb.ada/complete.exp: complete p pck.my
PASS -> FAIL: gdb.ada/complete.exp: complete p pck__inner__ins
PASS -> FAIL: gdb.ada/complete.exp: complete p pck__local_ident
PASS -> FAIL: gdb.ada/complete.exp: complete p some
PASS -> FAIL: gdb.ada/complete.exp: interactive complete 'print some'
PASS -> FAIL: gdb.ada/complete.exp: p <Exported_Capitalized>
PASS -> FAIL: gdb.ada/complete.exp: p Exported_Capitalized
PASS -> FAIL: gdb.ada/complete.exp: p exported_capitalized
new FAIL: gdb.ada/cond_lang.exp:
PASS -> FAIL: gdb.ada/cond_lang.exp: break mixed.adb:33 if light = green
PASS -> FAIL: gdb.ada/cond_lang.exp: continue
new FAIL: gdb.ada/convvar_comp.exp:
new FAIL: gdb.ada/dgopt.exp:
PASS -> FAIL: gdb.ada/dgopt.exp: list x.adb:16, 16
new FAIL: gdb.ada/disc_arr_bound.exp:
new FAIL: gdb.ada/display_nested.exp:
PASS -> FAIL: gdb.ada/display_nested.exp: display s
new FAIL: gdb.ada/dot_all.exp:
new FAIL: gdb.ada/dyn_arrayidx.exp:
PASS -> FAIL: gdb.ada/dyn_arrayidx.exp: ptype array_type
new FAIL: gdb.ada/dyn_loc.exp:
new FAIL: gdb.ada/dyn_stride.exp:
new FAIL: gdb.ada/enum_idx_packed.exp:
PASS -> FAIL: gdb.ada/enum_idx_packed.exp: print full
PASS -> FAIL: gdb.ada/enum_idx_packed.exp: print full'first
new FAIL: gdb.ada/excep_handle.exp:
new FAIL: gdb.ada/excep_handle.exp: cannot run to main, testcase aborted
new FAIL: gdb.ada/expr_delims.exp:
PASS -> FAIL: gdb.ada/expr_delims.exp: break foo.adb:23
PASS -> FAIL: gdb.ada/expr_delims.exp: check that watchpoint is set correctly.
PASS -> FAIL: gdb.ada/expr_delims.exp: combination of 'if' and 'thread' delimiters.
PASS -> FAIL: gdb.ada/expr_delims.exp: continue
PASS -> FAIL: gdb.ada/expr_delims.exp: delete 1
PASS -> FAIL: gdb.ada/expr_delims.exp: print variable 'thread'
PASS -> FAIL: gdb.ada/expr_delims.exp: set conditional watchpoint.
PASS -> FAIL: gdb.ada/expr_delims.exp: set plain watchpoint on variable 'thread'
new FAIL: gdb.ada/expr_with_funcall.exp:
PASS -> FAIL: gdb.ada/expr_with_funcall.exp: print 1 + something
PASS -> FAIL: gdb.ada/expr_with_funcall.exp: print 246 - something
PASS -> FAIL: gdb.ada/expr_with_funcall.exp: print 3 * something
PASS -> FAIL: gdb.ada/expr_with_funcall.exp: print 496 / something
PASS -> FAIL: gdb.ada/expr_with_funcall.exp: print something
PASS -> FAIL: gdb.ada/expr_with_funcall.exp: print something * 3
PASS -> FAIL: gdb.ada/expr_with_funcall.exp: print something + 1
PASS -> FAIL: gdb.ada/expr_with_funcall.exp: print something - 2
PASS -> FAIL: gdb.ada/expr_with_funcall.exp: print something / 4
new FAIL: gdb.ada/exprs.exp:
PASS -> FAIL: gdb.ada/exprs.exp: Long_Long_Integer ** Y
PASS -> FAIL: gdb.ada/exprs.exp: long_float'max
PASS -> FAIL: gdb.ada/exprs.exp: long_float'min
new FAIL: gdb.ada/fin_fun_out.exp:
PASS -> FAIL: gdb.ada/fin_fun_out.exp: finish
new FAIL: gdb.ada/fixed_cmp.exp:
PASS -> FAIL: gdb.ada/fixed_cmp.exp: print My_Var > 10
PASS -> FAIL: gdb.ada/fixed_cmp.exp: print My_Var > 10.0
PASS -> FAIL: gdb.ada/fixed_cmp.exp: print My_Var > 20
PASS -> FAIL: gdb.ada/fixed_cmp.exp: print My_Var > 20.0
new FAIL: gdb.ada/fixed_points.exp:
PASS -> FAIL: gdb.ada/fixed_points.exp: p on a fixed point type
PASS -> FAIL: gdb.ada/fixed_points.exp: p on a new fixed point type
PASS -> FAIL: gdb.ada/fixed_points.exp: p on a subtype fixed point type
PASS -> FAIL: gdb.ada/fixed_points.exp: print Overprecise_Object
PASS -> FAIL: gdb.ada/fixed_points.exp: ptype Overprecise_Object
new FAIL: gdb.ada/float_param.exp:
PASS -> FAIL: gdb.ada/float_param.exp: call set_double
PASS -> FAIL: gdb.ada/float_param.exp: call set_float
PASS -> FAIL: gdb.ada/float_param.exp: call set_long_double
PASS -> FAIL: gdb.ada/float_param.exp: print global_double
PASS -> FAIL: gdb.ada/float_param.exp: print global_float
PASS -> FAIL: gdb.ada/float_param.exp: print global_long_double
new FAIL: gdb.ada/formatted_ref.exp:
new FAIL: gdb.ada/formatted_ref.exp: address of s1
PASS -> FAIL: gdb.ada/formatted_ref.exp: print s.x = 13
PASS -> UNRESOLVED: gdb.ada/formatted_ref.exp: print/x s
PASS -> FAIL: gdb.ada/formatted_ref.exp: print/x s'access
PASS -> FAIL: gdb.ada/formatted_ref.exp: print/x s'unchecked_access
PASS -> FAIL: gdb.ada/formatted_ref.exp: print/x s'unrestricted_access
new FAIL: gdb.ada/frame_arg_lang.exp:
PASS -> FAIL: gdb.ada/frame_arg_lang.exp: backtrace with auto: c
PASS -> FAIL: gdb.ada/frame_arg_lang.exp: backtrace with language back to 'auto; c'
PASS -> FAIL: gdb.ada/frame_arg_lang.exp: backtrace with language forced to 'c'
new FAIL: gdb.ada/frame_args.exp:
new FAIL: gdb.ada/fullname_bp.exp:
PASS -> FAIL: gdb.ada/fullname_bp.exp: break Pck.Hello
PASS -> FAIL: gdb.ada/fullname_bp.exp: break pck.adb:Pck.Hello
PASS -> FAIL: gdb.ada/fullname_bp.exp: break pck.adb:pck.hello
PASS -> FAIL: gdb.ada/fullname_bp.exp: break pck.hello
new FAIL: gdb.ada/fun_addr.exp:
PASS -> FAIL: gdb.ada/fun_addr.exp: print foo'address
new FAIL: gdb.ada/fun_in_declare.exp:
new FAIL: gdb.ada/fun_overload_menu.exp:
PASS -> UNRESOLVED: gdb.ada/fun_overload_menu.exp: 1
PASS -> FAIL: gdb.ada/fun_overload_menu.exp: multiple matches for f
PASS -> FAIL: gdb.ada/fun_overload_menu.exp: multiple matches for p
new FAIL: gdb.ada/fun_renaming.exp:
PASS -> FAIL: gdb.ada/fun_renaming.exp: print fun_rename_test_n
PASS -> FAIL: gdb.ada/fun_renaming.exp: print fun_rename_test_next
PASS -> FAIL: gdb.ada/fun_renaming.exp: print pack.renamed_fun_rename_test_next
PASS -> FAIL: gdb.ada/fun_renaming.exp: print renamed_fun_rename_test_next
new FAIL: gdb.ada/funcall_char.exp:
PASS -> FAIL: gdb.ada/funcall_char.exp: print f
new FAIL: gdb.ada/funcall_param.exp:
PASS -> FAIL: gdb.ada/funcall_param.exp: p ident
new FAIL: gdb.ada/funcall_ptr.exp:
PASS -> FAIL: gdb.ada/funcall_ptr.exp: Check that initial value of GA is null
PASS -> FAIL: gdb.ada/funcall_ptr.exp: Check that value of GA is 0x1234
PASS -> FAIL: gdb.ada/funcall_ptr.exp: call pck.p
new FAIL: gdb.ada/funcall_ref.exp:
new FAIL: gdb.ada/homonym.exp:
PASS -> FAIL: gdb.ada/homonym.exp: break at BREAK_2
PASS -> FAIL: gdb.ada/homonym.exp: continue until BREAK_2
PASS -> FAIL: gdb.ada/homonym.exp: print lcl at BREAK_1
PASS -> FAIL: gdb.ada/homonym.exp: print lcl at BREAK_2
PASS -> FAIL: gdb.ada/homonym.exp: ptype int_type at BREAK_1
PASS -> FAIL: gdb.ada/homonym.exp: ptype lcl at BREAK_1
PASS -> FAIL: gdb.ada/homonym.exp: ptype lcl at BREAK_2
PASS -> FAIL: gdb.ada/homonym.exp: ptype local_type at BREAK_1
PASS -> FAIL: gdb.ada/homonym.exp: ptype local_type at BREAK_2
PASS -> FAIL: gdb.ada/homonym.exp: ptype local_type_subtype at BREAK_1
PASS -> FAIL: gdb.ada/homonym.exp: ptype local_type_subtype at BREAK_2
PASS -> FAIL: gdb.ada/homonym.exp: set breakpoint at <homonym__get_value>
PASS -> FAIL: gdb.ada/homonym.exp: set breakpoint at Get_Value
PASS -> FAIL: gdb.ada/homonym.exp: set breakpoint at homonym.adb:Get_Value
new FAIL: gdb.ada/info_addr_mixed_case.exp:
new FAIL: gdb.ada/info_auto_lang.exp:
new FAIL: gdb.ada/info_auto_lang.exp: can't run to some_c.c STOP location
new FAIL: gdb.ada/info_exc.exp:
new FAIL: gdb.ada/info_exc.exp: cannot run to main, testcase aborted
new FAIL: gdb.ada/info_locals_renaming.exp:
PASS -> FAIL: gdb.ada/info_locals_renaming.exp: info locals
new FAIL: gdb.ada/info_types.exp:
PASS -> FAIL: gdb.ada/info_types.exp: info types new_integer_type
new FAIL: gdb.ada/int_deref.exp:
PASS -> FAIL: gdb.ada/int_deref.exp: print *long_integer
PASS -> FAIL: gdb.ada/int_deref.exp: print long_integer
PASS -> FAIL: gdb.ada/int_deref.exp: print watch'address
new FAIL: gdb.ada/interface.exp:
PASS -> FAIL: gdb.ada/interface.exp: print r
new FAIL: gdb.ada/iwide.exp:
new FAIL: gdb.ada/lang_switch.exp:
PASS -> FAIL: gdb.ada/lang_switch.exp: backtrace
PASS -> FAIL: gdb.ada/lang_switch.exp: backtrace with lang set to C
new FAIL: gdb.ada/length_cond.exp:
PASS -> FAIL: gdb.ada/length_cond.exp: cond 1 enum_val'first > 15
PASS -> FAIL: gdb.ada/length_cond.exp: cond 1 enum_val'last > 15
PASS -> FAIL: gdb.ada/length_cond.exp: cond 1 int_val'first > 15
PASS -> FAIL: gdb.ada/length_cond.exp: cond 1 int_val'last > 15
PASS -> FAIL: gdb.ada/length_cond.exp: cond 1 loc'first > 15
PASS -> FAIL: gdb.ada/length_cond.exp: cond 1 loc'last > 15
PASS -> FAIL: gdb.ada/length_cond.exp: cond 1 loc'length > 15
PASS -> FAIL: gdb.ada/length_cond.exp: cond 1 my_array'first
PASS -> FAIL: gdb.ada/length_cond.exp: cond 1 my_array'last
PASS -> FAIL: gdb.ada/length_cond.exp: cond 1 my_array'length
PASS -> FAIL: gdb.ada/length_cond.exp: setting breakpoint at length_cond.adb:31
new FAIL: gdb.ada/maint_with_ada.exp:
new FAIL: gdb.ada/maint_with_ada.exp: setting breakpoint at Do_Nothing
new FAIL: gdb.ada/maint_with_ada.exp: setting breakpoint at Var_Arr_Typedef
new FAIL: gdb.ada/maint_with_ada.exp: setting breakpoint at adainit
new FAIL: gdb.ada/mi_catch_assert.exp:
new FAIL: gdb.ada/mi_catch_assert.exp: cannot run to main, testcase aborted
new FAIL: gdb.ada/mi_catch_ex.exp:
new FAIL: gdb.ada/mi_catch_ex.exp: cannot run to main, testcase aborted
new FAIL: gdb.ada/mi_catch_ex_hand.exp:
new FAIL: gdb.ada/mi_catch_ex_hand.exp: cannot run to main, testcase aborted
new FAIL: gdb.ada/mi_ex_cond.exp:
new FAIL: gdb.ada/mi_ex_cond.exp: cannot run to main, testcase aborted
PASS -> UNRESOLVED: gdb.ada/mi_exc_info.exp: -info-ada-exceptions
PASS -> UNRESOLVED: gdb.ada/mi_exc_info.exp: -info-ada-exceptions const.aint
PASS -> UNRESOLVED: gdb.ada/mi_exc_info.exp: -info-ada-exceptions global_gdb
PASS -> UNRESOLVED: gdb.ada/mi_exc_info.exp: -info-ada-exceptions task
PASS -> UNRESOLVED: gdb.ada/mi_exc_info.exp: breakpoint at main
PASS -> FAIL: gdb.ada/mi_task_arg.exp: -stack-list-arguments 1
PASS -> UNRESOLVED: gdb.ada/mi_task_arg.exp: breakpoint at task_switch.break_me
PASS -> FAIL: gdb.ada/mi_task_info.exp: -ada-task-info 3
PASS -> FAIL: gdb.ada/mi_task_info.exp: -ada-task-info with no argument
PASS -> UNRESOLVED: gdb.ada/mi_task_info.exp: breakpoint at task_switch.break_me
new FAIL: gdb.ada/minsyms.exp:
new FAIL: gdb.ada/mod_from_name.exp:
new FAIL: gdb.ada/n_arr_bound.exp:
PASS -> FAIL: gdb.ada/n_arr_bound.exp: ptype var
new FAIL: gdb.ada/nested.exp:
PASS -> FAIL: gdb.ada/nested.exp: break on nested function First
new FAIL: gdb.ada/notcplusplus.exp:
PASS -> FAIL: gdb.ada/notcplusplus.exp: list ver.ads:16
PASS -> FAIL: gdb.ada/notcplusplus.exp: print <symada__cS> after loading symbols from ver.ads
PASS -> FAIL: gdb.ada/notcplusplus.exp: print <symada__cS> before loading symbols from ver.ads
new FAIL: gdb.ada/null_array.exp:
PASS -> FAIL: gdb.ada/null_array.exp: print my_matrix
PASS -> FAIL: gdb.ada/null_array.exp: print my_table
PASS -> FAIL: gdb.ada/null_array.exp: ptype my_table
new FAIL: gdb.ada/null_record.exp:
PASS -> FAIL: gdb.ada/null_record.exp: ptype on null record
new FAIL: gdb.ada/operator_bp.exp:
PASS -> FAIL: gdb.ada/operator_bp.exp: break "&"
PASS -> FAIL: gdb.ada/operator_bp.exp: break "*"
PASS -> FAIL: gdb.ada/operator_bp.exp: break "**"
PASS -> FAIL: gdb.ada/operator_bp.exp: break "+"
PASS -> FAIL: gdb.ada/operator_bp.exp: break "-"
PASS -> FAIL: gdb.ada/operator_bp.exp: break "/"
PASS -> FAIL: gdb.ada/operator_bp.exp: break "<"
PASS -> FAIL: gdb.ada/operator_bp.exp: break "<="
PASS -> FAIL: gdb.ada/operator_bp.exp: break "="
PASS -> FAIL: gdb.ada/operator_bp.exp: break ">"
PASS -> FAIL: gdb.ada/operator_bp.exp: break ">="
PASS -> FAIL: gdb.ada/operator_bp.exp: break "abs"
PASS -> FAIL: gdb.ada/operator_bp.exp: break "and"
PASS -> FAIL: gdb.ada/operator_bp.exp: break "mod"
PASS -> FAIL: gdb.ada/operator_bp.exp: break "not"
PASS -> FAIL: gdb.ada/operator_bp.exp: break "or"
PASS -> FAIL: gdb.ada/operator_bp.exp: break "rem"
PASS -> FAIL: gdb.ada/operator_bp.exp: break "xor"
PASS -> FAIL: gdb.ada/operator_bp.exp: break ops."&"
PASS -> FAIL: gdb.ada/operator_bp.exp: break ops."*"
PASS -> FAIL: gdb.ada/operator_bp.exp: break ops."**"
PASS -> FAIL: gdb.ada/operator_bp.exp: break ops."+"
PASS -> FAIL: gdb.ada/operator_bp.exp: break ops."-"
PASS -> FAIL: gdb.ada/operator_bp.exp: break ops."/"
PASS -> FAIL: gdb.ada/operator_bp.exp: break ops."<"
PASS -> FAIL: gdb.ada/operator_bp.exp: break ops."<="
PASS -> FAIL: gdb.ada/operator_bp.exp: break ops."="
PASS -> FAIL: gdb.ada/operator_bp.exp: break ops.">"
PASS -> FAIL: gdb.ada/operator_bp.exp: break ops.">="
PASS -> FAIL: gdb.ada/operator_bp.exp: break ops."abs"
PASS -> FAIL: gdb.ada/operator_bp.exp: break ops."and"
PASS -> FAIL: gdb.ada/operator_bp.exp: break ops."mod"
PASS -> FAIL: gdb.ada/operator_bp.exp: break ops."not"
PASS -> FAIL: gdb.ada/operator_bp.exp: break ops."or"
PASS -> FAIL: gdb.ada/operator_bp.exp: break ops."rem"
PASS -> FAIL: gdb.ada/operator_bp.exp: break ops."xor"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to "&"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to "*"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to "**"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to "+"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to "-"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to "/"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to "<"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to "<="
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to "="
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ">"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ">="
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to "abs"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to "and"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to "mod"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to "not"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to "or"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to "rem"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to "xor"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ops."&"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ops."*"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ops."**"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ops."+"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ops."-"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ops."/"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ops."<"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ops."<="
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ops."="
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ops.">"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ops.">="
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ops."abs"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ops."and"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ops."mod"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ops."not"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ops."or"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ops."rem"
PASS -> FAIL: gdb.ada/operator_bp.exp: continue to ops."xor"
new FAIL: gdb.ada/optim_drec.exp:
new FAIL: gdb.ada/out_of_line_in_inlined.exp:
PASS -> FAIL: gdb.ada/out_of_line_in_inlined.exp: break foo_o224_021.child1.child2
PASS -> FAIL: gdb.ada/out_of_line_in_inlined.exp: bt
new FAIL: gdb.ada/packed_array.exp:
PASS -> FAIL: gdb.ada/packed_array.exp: print &var
PASS -> FAIL: gdb.ada/packed_array.exp: print u_var
PASS -> FAIL: gdb.ada/packed_array.exp: print var
PASS -> FAIL: gdb.ada/packed_array.exp: ptype &var
new FAIL: gdb.ada/packed_array_assign.exp:
PASS -> FAIL: gdb.ada/packed_array_assign.exp: print npr :=
PASS -> FAIL: gdb.ada/packed_array_assign.exp: print pra :=
PASS -> FAIL: gdb.ada/packed_array_assign.exp: print pra
new FAIL: gdb.ada/packed_tagged.exp:
PASS -> FAIL: gdb.ada/packed_tagged.exp: print x
PASS -> FAIL: gdb.ada/packed_tagged.exp: ptype x
new FAIL: gdb.ada/pckd_arr_ren.exp:
PASS -> FAIL: gdb.ada/pckd_arr_ren.exp: print var
new FAIL: gdb.ada/pckd_neg.exp:
PASS -> FAIL: gdb.ada/pckd_neg.exp: print SSA
new FAIL: gdb.ada/pkd_arr_elem.exp:
PASS -> FAIL: gdb.ada/pkd_arr_elem.exp: print test
PASS -> FAIL: gdb.ada/pkd_arr_elem.exp: print test.str
new FAIL: gdb.ada/pp-rec-component.exp:
PASS -> FAIL: gdb.ada/pp-rec-component.exp: print /r before
PASS -> FAIL: gdb.ada/pp-rec-component.exp: print before
new FAIL: gdb.ada/print_chars.exp:
PASS -> FAIL: gdb.ada/print_chars.exp: print C
PASS -> FAIL: gdb.ada/print_chars.exp: print MC
PASS -> FAIL: gdb.ada/print_chars.exp: print WC
PASS -> FAIL: gdb.ada/print_chars.exp: print WWC
new FAIL: gdb.ada/print_pc.exp:
PASS -> FAIL: gdb.ada/print_pc.exp: p /x $pc
new FAIL: gdb.ada/ptr_typedef.exp:
PASS -> FAIL: gdb.ada/ptr_typedef.exp: print my_blob.bees
new FAIL: gdb.ada/ptype_array.exp:
PASS -> FAIL: gdb.ada/ptype_array.exp: ptype 2..5
PASS -> FAIL: gdb.ada/ptype_array.exp: ptype 3..5
new FAIL: gdb.ada/ptype_field.exp:
PASS -> FAIL: gdb.ada/ptype_field.exp: ptype circle
PASS -> FAIL: gdb.ada/ptype_field.exp: ptype circle.pos
PASS -> FAIL: gdb.ada/ptype_field.exp: ptype circle.pos.x
new FAIL: gdb.ada/ptype_tagged_param.exp:
new FAIL: gdb.ada/ptype_union.exp:
PASS -> FAIL: gdb.ada/ptype_union.exp: print global
PASS -> FAIL: gdb.ada/ptype_union.exp: ptype global
new FAIL: gdb.ada/py_range.exp:
PASS -> FAIL: gdb.ada/py_range.exp: python print
new FAIL: gdb.ada/py_taft.exp:
PASS -> FAIL: gdb.ada/py_taft.exp: python print
PASS -> FAIL: gdb.ada/py_taft.exp: python v = gdb.parse_and_eval
new FAIL: gdb.ada/rdv_wait.exp:
PASS -> FAIL: gdb.ada/rdv_wait.exp: task 2
new FAIL: gdb.ada/rec_comp.exp:
new FAIL: gdb.ada/rec_return.exp:
new FAIL: gdb.ada/ref_param.exp:
new FAIL: gdb.ada/ref_tick_size.exp:
PASS -> FAIL: gdb.ada/ref_tick_size.exp: print d1'size = d2'size
new FAIL: gdb.ada/repeat_dyn.exp:
PASS -> FAIL: gdb.ada/repeat_dyn.exp: print a1
new FAIL: gdb.ada/same_component_name.exp:
PASS -> FAIL: gdb.ada/same_component_name.exp: Print bottom component field
PASS -> FAIL: gdb.ada/same_component_name.exp: Print field existing only in bottom component
PASS -> FAIL: gdb.ada/same_component_name.exp: Print field existing only in dyn_middle component
PASS -> FAIL: gdb.ada/same_component_name.exp: Print top component field
PASS -> FAIL: gdb.ada/same_component_name.exp: Print top component field in middle assign function
PASS -> FAIL: gdb.ada/same_component_name.exp: continue to bottom assign breakpoint
PASS -> FAIL: gdb.ada/same_component_name.exp: continue to dyn_middle assign breakpoint
PASS -> FAIL: gdb.ada/same_component_name.exp: continue to middle assign breakpoint
PASS -> FAIL: gdb.ada/same_component_name.exp: run to top assign breakpoint
new FAIL: gdb.ada/same_component_name.exp: setting breakpoint at pck.adb:22
new FAIL: gdb.ada/same_component_name.exp: setting breakpoint at pck.adb:29
new FAIL: gdb.ada/same_component_name.exp: setting breakpoint at pck.adb:35
new FAIL: gdb.ada/same_component_name.exp: setting breakpoint at pck.adb:53
new FAIL: gdb.ada/same_enum.exp:
PASS -> FAIL: gdb.ada/same_enum.exp: print red
new FAIL: gdb.ada/scalar_storage.exp:
new FAIL: gdb.ada/scoped_watch.exp:
PASS -> FAIL: gdb.ada/scoped_watch.exp: break foo_p708_025.adb:22
PASS -> FAIL: gdb.ada/scoped_watch.exp: break pck.increment
PASS -> FAIL: gdb.ada/scoped_watch.exp: continuing to breakpoint in pck.increment
PASS -> FAIL: gdb.ada/scoped_watch.exp: continuing to breakpoint on call to Do_Nothing
PASS -> FAIL: gdb.ada/scoped_watch.exp: continuing to watchpoint hit
PASS -> FAIL: gdb.ada/scoped_watch.exp: continuing until watchpoint automatic deletion
PASS -> FAIL: gdb.ada/scoped_watch.exp: next to call to Call_Me
PASS -> FAIL: gdb.ada/scoped_watch.exp: watch result
new FAIL: gdb.ada/set_pckd_arr_elt.exp:
PASS -> FAIL: gdb.ada/set_pckd_arr_elt.exp: print sa
new FAIL: gdb.ada/set_pckd_arr_elt.exp: setting breakpoint at update_small
new FAIL: gdb.ada/set_wstr.exp:
new FAIL: gdb.ada/small_reg_param.exp:
new FAIL: gdb.ada/str_binop_equal.exp:
PASS -> FAIL: gdb.ada/str_binop_equal.exp: print my_str = "AB"
PASS -> FAIL: gdb.ada/str_binop_equal.exp: print my_str = "ABCD"
PASS -> FAIL: gdb.ada/str_binop_equal.exp: print my_str = "EFGH"
PASS -> FAIL: gdb.ada/str_binop_equal.exp: print my_str = my_str
new FAIL: gdb.ada/str_ref_cmp.exp:
PASS -> FAIL: gdb.ada/str_ref_cmp.exp: operator = works for strings
PASS -> FAIL: gdb.ada/str_ref_cmp.exp: print String_Var
new FAIL: gdb.ada/str_uninit.exp:
new FAIL: gdb.ada/sym_print_name.exp:
PASS -> FAIL: gdb.ada/sym_print_name.exp: multiple matches for symbol integervar
PASS -> UNRESOLVED: gdb.ada/sym_print_name.exp: select first choice from multiple-choice menu
new FAIL: gdb.ada/taft_type.exp:
new FAIL: gdb.ada/tagged.exp:
PASS -> FAIL: gdb.ada/tagged.exp: print segm
PASS -> FAIL: gdb.ada/tagged.exp: ptype segm
new FAIL: gdb.ada/tagged_access.exp:
new FAIL: gdb.ada/tagged_not_init.exp:
PASS -> FAIL: gdb.ada/tagged_not_init.exp: print obj
new FAIL: gdb.ada/task_bp.exp:
PASS -> FAIL: gdb.ada/task_bp.exp: break dummy_task - from full symtab
PASS -> FAIL: gdb.ada/task_bp.exp: break dummy_task - from psymtab
PASS -> FAIL: gdb.ada/task_bp.exp: break pck.adb:dummy_task - from full symtab
PASS -> FAIL: gdb.ada/task_bp.exp: break pck.adb:dummy_task - from psymtab
PASS -> FAIL: gdb.ada/task_bp.exp: break pck.adb:pck.dummy_task - from full symtab
PASS -> FAIL: gdb.ada/task_bp.exp: break pck.adb:pck.dummy_task - from psymtab
PASS -> FAIL: gdb.ada/task_bp.exp: break pck.dummy_task - from full symtab
PASS -> FAIL: gdb.ada/task_bp.exp: break pck.dummy_task - from psymtab
PASS -> FAIL: gdb.ada/task_bp.exp: run to dummy_task - from full symtab
PASS -> FAIL: gdb.ada/task_bp.exp: run to dummy_task - from psymtab
PASS -> FAIL: gdb.ada/task_bp.exp: run to pck.adb:dummy_task - from full symtab
PASS -> FAIL: gdb.ada/task_bp.exp: run to pck.adb:dummy_task - from psymtab
PASS -> FAIL: gdb.ada/task_bp.exp: run to pck.adb:pck.dummy_task - from full symtab
PASS -> FAIL: gdb.ada/task_bp.exp: run to pck.adb:pck.dummy_task - from psymtab
PASS -> FAIL: gdb.ada/task_bp.exp: run to pck.dummy_task - from full symtab
PASS -> FAIL: gdb.ada/task_bp.exp: run to pck.dummy_task - from psymtab
new FAIL: gdb.ada/task_switch_in_core.exp:
new FAIL: gdb.ada/tasks.exp:
PASS -> FAIL: gdb.ada/tasks.exp: break break_me task 1
PASS -> FAIL: gdb.ada/tasks.exp: break break_me task 3
PASS -> FAIL: gdb.ada/tasks.exp: info tasks before inserting breakpoint
new FAIL: gdb.ada/tick_last_segv.exp:
PASS -> FAIL: gdb.ada/tick_last_segv.exp: print short-integer'first
PASS -> FAIL: gdb.ada/tick_last_segv.exp: print short-integer'last
new FAIL: gdb.ada/tick_length_array_enum_idx.exp:
PASS -> FAIL: gdb.ada/tick_length_array_enum_idx.exp: print cold'length
PASS -> FAIL: gdb.ada/tick_length_array_enum_idx.exp: print full'length
PASS -> FAIL: gdb.ada/tick_length_array_enum_idx.exp: print prim'length
PASS -> FAIL: gdb.ada/tick_length_array_enum_idx.exp: print vars'length
PASS -> FAIL: gdb.ada/tick_length_array_enum_idx.exp: ptype cold'length
PASS -> FAIL: gdb.ada/tick_length_array_enum_idx.exp: ptype full'length
PASS -> FAIL: gdb.ada/tick_length_array_enum_idx.exp: ptype full_table'length
PASS -> FAIL: gdb.ada/tick_length_array_enum_idx.exp: ptype prim'length
PASS -> FAIL: gdb.ada/tick_length_array_enum_idx.exp: ptype primary_table'length
PASS -> FAIL: gdb.ada/tick_length_array_enum_idx.exp: ptype variable_table'length
PASS -> FAIL: gdb.ada/tick_length_array_enum_idx.exp: ptype vars'length
new FAIL: gdb.ada/type_coercion.exp:
PASS -> FAIL: gdb.ada/type_coercion.exp: p q
PASS -> FAIL: gdb.ada/type_coercion.exp: print {Integer} $addr
PASS -> FAIL: gdb.ada/type_coercion.exp: save q'address in convenience variable
PASS -> FAIL: gdb.ada/type_coercion.exp: set {Integer} $addr := 19
new FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp:
PASS -> FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: continue to STOP2
PASS -> FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: print My_Object with null Ptr
PASS -> FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: print My_Object.Ptr when null
PASS -> FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: print My_P_Object with null Ptr
PASS -> FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: print My_P_Object.Ptr when no longer null
PASS -> FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: print My_P_Object.Ptr when null
PASS -> FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: print my_object after setting Ptr
PASS -> FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: print my_object.ptr.all
PASS -> FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: print my_p_object after setting Ptr
PASS -> FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: print my_p_object.ptr.all
new FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: setting breakpoint at foo.adb:48
new FAIL: gdb.ada/unchecked_union.exp:
PASS -> FAIL: gdb.ada/unchecked_union.exp: ptype Inner
PASS -> FAIL: gdb.ada/unchecked_union.exp: ptype Pair
new FAIL: gdb.ada/uninitialized_vars.exp:
new FAIL: gdb.ada/var_arr_attrs.exp:
PASS -> FAIL: gdb.ada/var_arr_attrs.exp: print my_object.data'first
PASS -> FAIL: gdb.ada/var_arr_attrs.exp: print my_object.data'last
PASS -> FAIL: gdb.ada/var_arr_attrs.exp: print my_object.data'length
PASS -> FAIL: gdb.ada/var_arr_attrs.exp: print my_small_object.data'first
PASS -> FAIL: gdb.ada/var_arr_attrs.exp: print my_small_object.data'last
PASS -> FAIL: gdb.ada/var_arr_attrs.exp: print my_small_object.data'length
new FAIL: gdb.ada/var_arr_typedef.exp:
PASS -> FAIL: gdb.ada/var_arr_typedef.exp: print a
PASS -> FAIL: gdb.ada/var_arr_typedef.exp: print va
PASS -> FAIL: gdb.ada/var_arr_typedef.exp: print vb
new FAIL: gdb.ada/var_rec_arr.exp:
PASS -> FAIL: gdb.ada/var_rec_arr.exp: print a1
PASS -> FAIL: gdb.ada/var_rec_arr.exp: print a2
PASS -> FAIL: gdb.ada/var_rec_arr.exp: ptype a1
new FAIL: gdb.ada/variant_record_packed_array.exp:
PASS -> FAIL: gdb.ada/variant_record_packed_array.exp: print address
PASS -> FAIL: gdb.ada/variant_record_packed_array.exp: print my_buffer
PASS -> FAIL: gdb.ada/variant_record_packed_array.exp: print {foo.octal_buffer}
new FAIL: gdb.ada/varsize_limit.exp:
new FAIL: gdb.ada/vla.exp:
PASS -> FAIL: gdb.ada/vla.exp: print r00
PASS -> FAIL: gdb.ada/vla.exp: print r01
PASS -> FAIL: gdb.ada/vla.exp: print r10
PASS -> FAIL: gdb.ada/vla.exp: print r22
new FAIL: gdb.ada/watch_arg.exp:
PASS -> FAIL: gdb.ada/watch_arg.exp: continuing to second breakpoint
PASS -> FAIL: gdb.ada/watch_arg.exp: continuing until watchpoint automatic deletion
PASS -> FAIL: gdb.ada/watch_arg.exp: insert second breakpoint in watch.adb
PASS -> FAIL: gdb.ada/watch_arg.exp: set watchpoint on function argument X
new FAIL: gdb.ada/watch_minus_l.exp:
PASS -> FAIL: gdb.ada/watch_minus_l.exp: continue with watch -location
PASS -> FAIL: gdb.ada/watch_minus_l.exp: watch -location pck.global_var
new FAIL: gdb.ada/whatis_array_val.exp:
new FAIL: gdb.ada/widewide.exp:
new FAIL: gdb.ada/win_fu_syms.exp:
PASS -> FAIL: gdb.ada/win_fu_syms.exp: info line on Do_Nothing call
PASS -> FAIL: gdb.ada/win_fu_syms.exp: info line on variable declaration
new FAIL: gdb.arch/aarch64-atomic-inst.exp:
new FAIL: gdb.arch/aarch64-fp.exp:
new FAIL: gdb.arch/aarch64-pauth.exp:
new FAIL: gdb.arch/aarch64-prologue.exp:
new FAIL: gdb.arch/aarch64-sighandler-regs.exp:
new FAIL: gdb.arch/aarch64-tagged-pointer.exp:
new FAIL: gdb.arch/arm-neon.exp:
new FAIL: gdb.arch/disp-step-insn-reloc.exp:
new FAIL: gdb.arch/disp-step-insn-reloc.exp: can't run to main
new FAIL: gdb.arch/ftrace-insn-reloc.exp:
new FAIL: gdb.arch/ftrace-insn-reloc.exp: can't run to main to check for trace support
new FAIL: gdb.asm/asm-source.exp:
new FAIL: gdb.asm/asm-source.exp: can't run to main
new FAIL: gdb.base/a2-run.exp:
PASS -> FAIL: gdb.base/a2-run.exp: run "a2-run" with no args
new FAIL: gdb.base/advance.exp:
new FAIL: gdb.base/advance.exp: can't run to main
new UNRESOLVED: gdb.base/align.exp: l=c++:
new FAIL: gdb.base/align.exp: l=c:
new FAIL: gdb.base/all-bin.exp:
new FAIL: gdb.base/annota-input-while-running.exp:
new FAIL: gdb.base/annota-input-while-running.exp: can't run to main
new FAIL: gdb.base/annotate-symlink.exp:
new FAIL: gdb.base/anon.exp:
new FAIL: gdb.base/anon.exp: run to main
new FAIL: gdb.base/argv0-symlink.exp:
new FAIL: gdb.base/argv0-symlink.exp: argv[0] should be available on this target
new FAIL: gdb.base/argv0-symlink.exp: break main
new FAIL: gdb.base/argv0-symlink.exp: run to main
new FAIL: gdb.base/arithmet.exp:
new FAIL: gdb.base/arrayidx.exp:
new FAIL: gdb.base/asmlabel.exp:
new FAIL: gdb.base/asmlabel.exp: can't run to main
new FAIL: gdb.base/assign.exp:
new FAIL: gdb.base/async.exp:
new FAIL: gdb.base/auto-connect-native-target.exp:
new FAIL: gdb.base/auto-connect-native-target.exp: can't run to main
new FAIL: gdb.base/auto-load.exp:
PASS -> FAIL: gdb.base/auto-load.exp: print $script_loaded
new FAIL: gdb.base/auxv.exp:
new FAIL: gdb.base/auxv.exp: can't run to main
new FAIL: gdb.base/bang.exp:
PASS -> FAIL: gdb.base/bang.exp: continue until exit
PASS -> FAIL: gdb.base/batch-preserve-term-settings.exp: batch run: echo test_echo
new FAIL: gdb.base/batch-preserve-term-settings.exp: batch run: gdb -batch -ex run
PASS -> FAIL: gdb.base/batch-preserve-term-settings.exp: batch run: terminal settings preserved
PASS -> FAIL: gdb.base/batch-preserve-term-settings.exp: cli exit: start gdb
new FAIL: gdb.base/bfp-test.exp:
new FAIL: gdb.base/bg-execution-repeat.exp: c 1&:
new FAIL: gdb.base/bg-execution-repeat.exp: c&:
new FAIL: gdb.base/bigcore.exp:
new FAIL: gdb.base/bigcore.exp: can't run to main
new FAIL: gdb.base/bitfields.exp:
PASS -> FAIL: gdb.base/bitfields.exp: bitfield containment #1
PASS -> FAIL: gdb.base/bitfields.exp: bitfield containment #2
PASS -> FAIL: gdb.base/bitfields.exp: bitfield uniqueness
PASS -> FAIL: gdb.base/bitfields.exp: continuing to break1 #1
PASS -> FAIL: gdb.base/bitfields.exp: continuing to break1 #2
PASS -> FAIL: gdb.base/bitfields.exp: continuing to break1 #3
PASS -> FAIL: gdb.base/bitfields.exp: continuing to break1 #4
PASS -> FAIL: gdb.base/bitfields.exp: continuing to break1 #5
PASS -> FAIL: gdb.base/bitfields.exp: continuing to break1 #6
PASS -> FAIL: gdb.base/bitfields.exp: continuing to break1 #7
PASS -> FAIL: gdb.base/bitfields.exp: continuing to break1 #8
PASS -> FAIL: gdb.base/bitfields.exp: continuing to break1 #9
PASS -> FAIL: gdb.base/bitfields.exp: continuing to break2
PASS -> FAIL: gdb.base/bitfields.exp: continuing to break4 #1
PASS -> FAIL: gdb.base/bitfields.exp: continuing to break4 #2
PASS -> FAIL: gdb.base/bitfields.exp: continuing to break5
PASS -> FAIL: gdb.base/bitfields.exp: determining signed-ness of bitfields
PASS -> FAIL: gdb.base/bitfields.exp: print $myvar.a
PASS -> FAIL: gdb.base/bitfields.exp: print $myvar.f
PASS -> FAIL: gdb.base/bitfields.exp: print $myvar.inner.b
PASS -> FAIL: gdb.base/bitfields.exp: print $myvar.inner.deep.c
PASS -> FAIL: gdb.base/bitfields.exp: print $myvar.inner.deep.d
PASS -> FAIL: gdb.base/bitfields.exp: print $myvar.inner.e
PASS -> FAIL: gdb.base/bitfields.exp: print flags
PASS -> FAIL: gdb.base/bitfields.exp: set $myvar.a = 0
PASS -> FAIL: gdb.base/bitfields.exp: set $myvar.f = 1
PASS -> FAIL: gdb.base/bitfields.exp: set $myvar.inner.b = 1
PASS -> FAIL: gdb.base/bitfields.exp: set $myvar.inner.deep.c = 0
PASS -> FAIL: gdb.base/bitfields.exp: set $myvar.inner.deep.d = -1
PASS -> FAIL: gdb.base/bitfields.exp: set $myvar.inner.e = 1
new FAIL: gdb.base/bitfields.exp: setting breakpoint at break5
PASS -> FAIL: gdb.base/bitfields.exp: signed bitfields with -1
PASS -> FAIL: gdb.base/bitfields.exp: signed bitfields, max negative values
PASS -> FAIL: gdb.base/bitfields.exp: signed bitfields, max positive values
PASS -> FAIL: gdb.base/bitfields.exp: unsigned bitfield ranges
new FAIL: gdb.base/bitfields2.exp:
PASS -> FAIL: gdb.base/bitfields2.exp: bitfield containment; flags.u1, flags.u3, and flags.s3 to all 1s
PASS -> FAIL: gdb.base/bitfields2.exp: bitfield containment; flags.u2, flags.s1, flags.s2 to all 1s
PASS -> FAIL: gdb.base/bitfields2.exp: bitfield uniqueness; flags.s1 = 1
PASS -> FAIL: gdb.base/bitfields2.exp: bitfield uniqueness; flags.s2 = 1
PASS -> FAIL: gdb.base/bitfields2.exp: bitfield uniqueness; flags.s3 = 1
PASS -> FAIL: gdb.base/bitfields2.exp: bitfield uniqueness; flags.u1 = 1
PASS -> FAIL: gdb.base/bitfields2.exp: bitfield uniqueness; flags.u2 = 1
PASS -> FAIL: gdb.base/bitfields2.exp: bitfield uniqueness; flags.u3 = 1
PASS -> FAIL: gdb.base/bitfields2.exp: break tester prior to break1
PASS -> FAIL: gdb.base/bitfields2.exp: break tester prior to break2
PASS -> FAIL: gdb.base/bitfields2.exp: break tester prior to break3
PASS -> FAIL: gdb.base/bitfields2.exp: break tester prior to break4
PASS -> FAIL: gdb.base/bitfields2.exp: break tester prior to break5
PASS -> FAIL: gdb.base/bitfields2.exp: continuing to break1 #0
PASS -> FAIL: gdb.base/bitfields2.exp: continuing to break1 #1
PASS -> FAIL: gdb.base/bitfields2.exp: continuing to break1 #2
PASS -> FAIL: gdb.base/bitfields2.exp: continuing to break1 #3
PASS -> FAIL: gdb.base/bitfields2.exp: continuing to break1 #4
PASS -> FAIL: gdb.base/bitfields2.exp: continuing to break1 #5
PASS -> FAIL: gdb.base/bitfields2.exp: continuing to break2 #0
PASS -> FAIL: gdb.base/bitfields2.exp: continuing to break2 #1
PASS -> FAIL: gdb.base/bitfields2.exp: continuing to break3 #0
PASS -> FAIL: gdb.base/bitfields2.exp: continuing to break4 #0
PASS -> FAIL: gdb.base/bitfields2.exp: continuing to break4 #1
PASS -> FAIL: gdb.base/bitfields2.exp: continuing to break4 #2
PASS -> FAIL: gdb.base/bitfields2.exp: continuing to break5 #0
PASS -> FAIL: gdb.base/bitfields2.exp: continuing to tester prior to break1
PASS -> FAIL: gdb.base/bitfields2.exp: continuing to tester prior to break2
PASS -> FAIL: gdb.base/bitfields2.exp: continuing to tester prior to break3
PASS -> FAIL: gdb.base/bitfields2.exp: continuing to tester prior to break4
PASS -> FAIL: gdb.base/bitfields2.exp: continuing to tester prior to break5
PASS -> FAIL: gdb.base/bitfields2.exp: determining signed-ness of bitfields
PASS -> FAIL: gdb.base/bitfields2.exp: long long bitfield values after set
PASS -> FAIL: gdb.base/bitfields2.exp: maximum signed bitfield values
PASS -> FAIL: gdb.base/bitfields2.exp: maximum unsigned bitfield values
PASS -> FAIL: gdb.base/bitfields2.exp: set long long signed bitfield positive
PASS -> FAIL: gdb.base/bitfields2.exp: set long long unsigned bitfield
new FAIL: gdb.base/bitfields2.exp: setting breakpoint at break1
new FAIL: gdb.base/bitfields2.exp: setting breakpoint at break2
new FAIL: gdb.base/bitfields2.exp: setting breakpoint at break3
new FAIL: gdb.base/bitfields2.exp: setting breakpoint at break4
new FAIL: gdb.base/bitfields2.exp: setting breakpoint at break5
new FAIL: gdb.base/bp-cmds-continue-ctrl-c.exp:
new FAIL: gdb.base/bp-cmds-continue-ctrl-c.exp: run:
new FAIL: gdb.base/bp-cmds-execution-x-script.exp: run to end
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0:
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1:
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0:
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1:
new FAIL: gdb.base/branch-to-self.exp: single-step:
new FAIL: gdb.base/break-always.exp:
PASS -> FAIL: gdb.base/break-always.exp: before re-enable check breakpoint state
PASS -> FAIL: gdb.base/break-always.exp: disable 2.E
PASS -> FAIL: gdb.base/break-always.exp: disable 2.I
PASS -> FAIL: gdb.base/break-always.exp: disable 3.B
PASS -> FAIL: gdb.base/break-always.exp: disable 3.F
PASS -> FAIL: gdb.base/break-always.exp: enable 2.D
PASS -> FAIL: gdb.base/break-always.exp: enable 2.H
PASS -> FAIL: gdb.base/break-always.exp: enable 3.A
PASS -> FAIL: gdb.base/break-always.exp: enable 3.C
PASS -> FAIL: gdb.base/break-always.exp: enable 3.G
PASS -> FAIL: gdb.base/break-always.exp: initial check breakpoint state
PASS -> FAIL: gdb.base/break-always.exp: save shadow
PASS -> FAIL: gdb.base/break-always.exp: set 2nd breakpoint on bar
PASS -> FAIL: gdb.base/break-always.exp: set 3rd breakpoint on bar
PASS -> FAIL: gdb.base/break-always.exp: set 4th breakpoint on bar
PASS -> FAIL: gdb.base/break-always.exp: set breakpoint on bar
PASS -> FAIL: gdb.base/break-always.exp: set breakpoint on bar 2
new FAIL: gdb.base/break-caller-line.exp:
new FAIL: gdb.base/break-fun-addr.exp:
PASS -> FAIL: gdb.base/break-fun-addr.exp: break-fun-addr1: break *main
PASS -> FAIL: gdb.base/break-fun-addr.exp: break-fun-addr1: p $pc == main
PASS -> FAIL: gdb.base/break-fun-addr.exp: break-fun-addr1: run to breakpoint at *main
PASS -> UNRESOLVED: gdb.base/break-fun-addr.exp: break-fun-addr2: p $pc == main
new FAIL: gdb.base/break-idempotent.exp: pie=nopie:
new FAIL: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=off: awatch: can't run to main
new FAIL: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=off: break: can't run to main
new FAIL: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=off: hbreak: can't run to main
new FAIL: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=off: rwatch: can't run to main
new FAIL: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=off: watch: can't run to main
new FAIL: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=on: awatch: can't run to main
new FAIL: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=on: break: can't run to main
new FAIL: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=on: hbreak: can't run to main
new FAIL: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=on: rwatch: can't run to main
new FAIL: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=on: watch: can't run to main
new FAIL: gdb.base/break-idempotent.exp: pie=pie:
new FAIL: gdb.base/break-idempotent.exp: pie=pie: always_inserted=off: awatch: can't run to main
new FAIL: gdb.base/break-idempotent.exp: pie=pie: always_inserted=off: break: can't run to main
new FAIL: gdb.base/break-idempotent.exp: pie=pie: always_inserted=off: hbreak: can't run to main
new FAIL: gdb.base/break-idempotent.exp: pie=pie: always_inserted=off: rwatch: can't run to main
new FAIL: gdb.base/break-idempotent.exp: pie=pie: always_inserted=off: watch: can't run to main
new FAIL: gdb.base/break-idempotent.exp: pie=pie: always_inserted=on: awatch: can't run to main
new FAIL: gdb.base/break-idempotent.exp: pie=pie: always_inserted=on: break: can't run to main
new FAIL: gdb.base/break-idempotent.exp: pie=pie: always_inserted=on: hbreak: can't run to main
new FAIL: gdb.base/break-idempotent.exp: pie=pie: always_inserted=on: rwatch: can't run to main
new FAIL: gdb.base/break-idempotent.exp: pie=pie: always_inserted=on: watch: can't run to main
new FAIL: gdb.base/break-include.exp:
PASS -> FAIL: gdb.base/break-include.exp: break break-include.c:53
PASS -> FAIL: gdb.base/break-include.exp: break next
new FAIL: gdb.base/break-inline.exp:
PASS -> FAIL: gdb.base/break-inline.exp: break
new FAIL: gdb.base/break-inline.exp: setting breakpoint at main
new UNRESOLVED: gdb.base/break-main-file-remove-fail.exp: cmdline: can't run to start
new UNRESOLVED: gdb.base/break-main-file-remove-fail.exp: cmdline: delete all breakpoints in delete_breakpoints
new FAIL: gdb.base/break-main-file-remove-fail.exp: file:
new UNRESOLVED: gdb.base/break-main-file-remove-fail.exp: file: can't run to start
new FAIL: gdb.base/break-main-file-remove-fail.exp: file: delete all breakpoints in delete_breakpoints
new FAIL: gdb.base/break-on-linker-gcd-function.exp:
PASS -> FAIL: gdb.base/break-on-linker-gcd-function.exp: b 24
PASS -> FAIL: gdb.base/break-on-linker-gcd-function.exp: readnow: b 24
new FAIL: gdb.base/break-probes.exp:
new UNRESOLVED: gdb.base/break-unload-file.exp: cmdline: always-inserted off: break: can't run to main
new UNRESOLVED: gdb.base/break-unload-file.exp: cmdline: always-inserted off: break: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/break-unload-file.exp: cmdline: always-inserted off: hbreak: can't run to main
new UNRESOLVED: gdb.base/break-unload-file.exp: cmdline: always-inserted off: hbreak: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/break-unload-file.exp: cmdline: always-inserted on: break: can't run to main
new UNRESOLVED: gdb.base/break-unload-file.exp: cmdline: always-inserted on: break: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/break-unload-file.exp: cmdline: always-inserted on: hbreak: can't run to main
new UNRESOLVED: gdb.base/break-unload-file.exp: cmdline: always-inserted on: hbreak: delete all breakpoints in delete_breakpoints
new FAIL: gdb.base/break-unload-file.exp: file: always-inserted off: break:
new UNRESOLVED: gdb.base/break-unload-file.exp: file: always-inserted off: break: can't run to main
new FAIL: gdb.base/break-unload-file.exp: file: always-inserted off: break: delete all breakpoints in delete_breakpoints
new FAIL: gdb.base/break-unload-file.exp: file: always-inserted off: hbreak:
new UNRESOLVED: gdb.base/break-unload-file.exp: file: always-inserted off: hbreak: can't run to main
new FAIL: gdb.base/break-unload-file.exp: file: always-inserted off: hbreak: delete all breakpoints in delete_breakpoints
new FAIL: gdb.base/break-unload-file.exp: file: always-inserted on: break:
new UNRESOLVED: gdb.base/break-unload-file.exp: file: always-inserted on: break: can't run to main
new FAIL: gdb.base/break-unload-file.exp: file: always-inserted on: break: delete all breakpoints in delete_breakpoints
new FAIL: gdb.base/break-unload-file.exp: file: always-inserted on: hbreak:
new UNRESOLVED: gdb.base/break-unload-file.exp: file: always-inserted on: hbreak: can't run to main
new FAIL: gdb.base/break-unload-file.exp: file: always-inserted on: hbreak: delete all breakpoints in delete_breakpoints
new FAIL: gdb.base/break.exp:
PASS -> FAIL: gdb.base/break.exp: Temporary breakpoint function in file
PASS -> FAIL: gdb.base/break.exp: Temporary breakpoint info
PASS -> FAIL: gdb.base/break.exp: Temporary breakpoint line number in file #2
PASS -> FAIL: gdb.base/break.exp: break lineno
PASS -> FAIL: gdb.base/break.exp: break on default location, 1st time
PASS -> FAIL: gdb.base/break.exp: break on default location, 2nd time
PASS -> FAIL: gdb.base/break.exp: break on default location, 3rd time
PASS -> FAIL: gdb.base/break.exp: break on default location, 4th time
PASS -> FAIL: gdb.base/break.exp: break on non-existent source line
new FAIL: gdb.base/break.exp: break tests suppressed
PASS -> FAIL: gdb.base/break.exp: breakpoint at start of multi line if conditional
PASS -> FAIL: gdb.base/break.exp: breakpoint at start of multi line while conditional
PASS -> FAIL: gdb.base/break.exp: breakpoint duplicate
PASS -> FAIL: gdb.base/break.exp: breakpoint function
PASS -> FAIL: gdb.base/break.exp: breakpoint function in file
PASS -> FAIL: gdb.base/break.exp: breakpoint info
PASS -> FAIL: gdb.base/break.exp: breakpoint line number
PASS -> FAIL: gdb.base/break.exp: breakpoint line number in file
PASS -> FAIL: gdb.base/break.exp: breakpoint offset +1
PASS -> FAIL: gdb.base/break.exp: breakpoint quoted function
PASS -> FAIL: gdb.base/break.exp: check disable with convenience values
PASS -> FAIL: gdb.base/break.exp: check disable with history values
PASS -> FAIL: gdb.base/break.exp: continue to breakpoint at }
PASS -> FAIL: gdb.base/break.exp: delete $bpnum
PASS -> FAIL: gdb.base/break.exp: disable using history values
PASS -> FAIL: gdb.base/break.exp: disable with convenience values
PASS -> FAIL: gdb.base/break.exp: info break 2 4 6
PASS -> FAIL: gdb.base/break.exp: info break 3-5
PASS -> FAIL: gdb.base/break.exp: run until breakpoint set at a line number
PASS -> FAIL: gdb.base/break.exp: run until file:function
PASS -> FAIL: gdb.base/break.exp: run until file:linenum breakpoint
PASS -> FAIL: gdb.base/break.exp: run until function breakpoint
PASS -> FAIL: gdb.base/break.exp: run until quoted breakpoint
PASS -> FAIL: gdb.base/break.exp: set to-be-silent break bp_location1
PASS -> FAIL: gdb.base/break.exp: setting breakpoint at }
PASS -> FAIL: gdb.base/break.exp: step onto breakpoint
PASS -> FAIL: gdb.base/break.exp: temporary breakpoint function
PASS -> FAIL: gdb.base/break.exp: temporary breakpoint line number #1
PASS -> FAIL: gdb.base/break.exp: temporary breakpoint line number #2
PASS -> FAIL: gdb.base/break.exp: temporary breakpoint line number in file #1
PASS -> FAIL: gdb.base/break.exp: until bp_location1
PASS -> FAIL: gdb.base/break.exp: use `list' to establish default source file
new FAIL: gdb.base/breakpoint-in-ro-region.exp:
new FAIL: gdb.base/breakpoint-shadow.exp:
new FAIL: gdb.base/bt-selected-frame.exp:
new FAIL: gdb.base/bt-selected-frame.exp: bt full: can't run to main
new FAIL: gdb.base/bt-selected-frame.exp: bt: can't run to main
new FAIL: gdb.base/c-linkage-name.exp:
PASS -> FAIL: gdb.base/c-linkage-name.exp: break main
PASS -> FAIL: gdb.base/c-linkage-name.exp: print symada__cS after partial symtab expansion
PASS -> FAIL: gdb.base/c-linkage-name.exp: print symada__cS before partial symtab expansion
new FAIL: gdb.base/call-ar-st.exp:
new FAIL: gdb.base/call-rt-st.exp:
new FAIL: gdb.base/call-sc.exp:
PASS -> UNRESOLVED: gdb.base/call-sc.exp: ptype; call-sc-tc
new FAIL: gdb.base/call-signal-resume.exp:
new FAIL: gdb.base/call-signal-resume.exp: can't run to main
new FAIL: gdb.base/call-strs.exp:
new FAIL: gdb.base/callexit.exp:
new FAIL: gdb.base/callexit.exp: can't run to main
new FAIL: gdb.base/callfuncs.exp:
PASS -> FAIL: gdb.base/callfuncs.exp: Finish from nested call level 1
PASS -> FAIL: gdb.base/callfuncs.exp: Finish from nested call level 2
PASS -> FAIL: gdb.base/callfuncs.exp: Finish from nested call level 3
PASS -> FAIL: gdb.base/callfuncs.exp: Finish from nested call level 4
PASS -> FAIL: gdb.base/callfuncs.exp: back at main after return from call dummy breakpoint
PASS -> FAIL: gdb.base/callfuncs.exp: backtrace after finish from nested call level 1
PASS -> FAIL: gdb.base/callfuncs.exp: backtrace after finish from nested call level 2
PASS -> FAIL: gdb.base/callfuncs.exp: backtrace after finish from nested call level 3
PASS -> FAIL: gdb.base/callfuncs.exp: backtrace after finish from nested call level 4
PASS -> FAIL: gdb.base/callfuncs.exp: backtrace at nested call level 1
PASS -> FAIL: gdb.base/callfuncs.exp: backtrace at nested call level 2
PASS -> FAIL: gdb.base/callfuncs.exp: backtrace at nested call level 3
PASS -> FAIL: gdb.base/callfuncs.exp: backtrace at nested call level 4
PASS -> FAIL: gdb.base/callfuncs.exp: bt after continuing from call dummy breakpoint
PASS -> FAIL: gdb.base/callfuncs.exp: bt after finishing from call dummy breakpoint
PASS -> FAIL: gdb.base/callfuncs.exp: call function causing a breakpoint and then do a return
PASS -> FAIL: gdb.base/callfuncs.exp: call function causing a breakpoint then do a finish
PASS -> FAIL: gdb.base/callfuncs.exp: call function with many double arguments.
PASS -> FAIL: gdb.base/callfuncs.exp: call function with many float arguments.
PASS -> FAIL: gdb.base/callfuncs.exp: call inferior func with struct - returns char
PASS -> FAIL: gdb.base/callfuncs.exp: call inferior func with struct - returns char *
PASS -> FAIL: gdb.base/callfuncs.exp: call inferior func with struct - returns double
PASS -> FAIL: gdb.base/callfuncs.exp: call inferior func with struct - returns double _Complex
PASS -> FAIL: gdb.base/callfuncs.exp: call inferior func with struct - returns float
PASS -> FAIL: gdb.base/callfuncs.exp: call inferior func with struct - returns float _Complex
PASS -> FAIL: gdb.base/callfuncs.exp: call inferior func with struct - returns int
PASS -> FAIL: gdb.base/callfuncs.exp: call inferior func with struct - returns long
PASS -> FAIL: gdb.base/callfuncs.exp: call inferior func with struct - returns long double _Complex
PASS -> FAIL: gdb.base/callfuncs.exp: call inferior func with struct - returns short
PASS -> FAIL: gdb.base/callfuncs.exp: continue from call dummy breakpoint
PASS -> FAIL: gdb.base/callfuncs.exp: finish from call dummy breakpoint returns correct value
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: Finish from nested call level 1
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: Finish from nested call level 2
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: Finish from nested call level 3
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: Finish from nested call level 4
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: back at main after return from call dummy breakpoint
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: backtrace after finish from nested call level 1
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: backtrace after finish from nested call level 2
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: backtrace after finish from nested call level 3
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: backtrace after finish from nested call level 4
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: backtrace at nested call level 1
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: backtrace at nested call level 2
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: backtrace at nested call level 3
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: backtrace at nested call level 4
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: bt after continuing from call dummy breakpoint
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: bt after finishing from call dummy breakpoint
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: call function causing a breakpoint and then do a return
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: call function causing a breakpoint then do a finish
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: call function with many double arguments.
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: call function with many float arguments.
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: call inferior func with struct - returns char
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: call inferior func with struct - returns char *
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: call inferior func with struct - returns double
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: call inferior func with struct - returns double _Complex
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: call inferior func with struct - returns float
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: call inferior func with struct - returns float _Complex
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: call inferior func with struct - returns int
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: call inferior func with struct - returns long
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: call inferior func with struct - returns long double _Complex
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: call inferior func with struct - returns short
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: continue from call dummy breakpoint
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: finish from call dummy breakpoint returns correct value
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p add
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p cmp10
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p doubleit
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p function_struct.func
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p function_struct_ptr->func
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p sum10
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p sum_args
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_call_add
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_char_array_values
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_char_values
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_double_complex_many_args
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_double_complex_values
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_double_int
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_double_values
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_enum_value1
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_enum_value2
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_float_complex_many_args
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_float_complex_values
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_float_values
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_float_values2
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_func_values
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_int_double
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_int_values
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_long_double_complex_many_args
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_long_double_complex_values
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_long_values
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_short_values
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_small_values
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: p t_string_values
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: print *
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: print callfunc
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: register contents after gdb function calls
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: register contents after nested call dummies
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: rerun number 10: next to t_double_values
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: rerun number 10: next to t_structs_c
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: rerun number 6: next to t_double_values
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: rerun number 6: next to t_structs_c
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: rerun number 7: next to t_double_values
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: rerun number 7: next to t_structs_c
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: rerun number 8: next to t_double_values
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: rerun number 8: next to t_structs_c
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: rerun number 9: next to t_double_values
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: rerun number 9: next to t_structs_c
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: retrieve original register contents 1
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: retrieve original register contents 2
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: retrieve original register contents 3
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: retrieve original register contents 4
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: retrieve original register contents 5
new FAIL: gdb.base/callfuncs.exp: noproto: setting breakpoint at add
new FAIL: gdb.base/callfuncs.exp: noproto: setting breakpoint at sum10
new FAIL: gdb.base/callfuncs.exp: noproto: setting breakpoint at t_small_values
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: stop at breakpoint in call dummy function
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: stop at nested call level 1
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: stop at nested call level 2
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: stop at nested call level 3
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: stop at nested call level 4
PASS -> FAIL: gdb.base/callfuncs.exp: p
PASS -> FAIL: gdb.base/callfuncs.exp: p add
PASS -> FAIL: gdb.base/callfuncs.exp: p cmp10
PASS -> FAIL: gdb.base/callfuncs.exp: p doubleit
PASS -> FAIL: gdb.base/callfuncs.exp: p function_struct.func
PASS -> FAIL: gdb.base/callfuncs.exp: p function_struct_ptr->func
PASS -> FAIL: gdb.base/callfuncs.exp: p sum10
PASS -> FAIL: gdb.base/callfuncs.exp: p sum_args
PASS -> FAIL: gdb.base/callfuncs.exp: p t_call_add
PASS -> FAIL: gdb.base/callfuncs.exp: p t_char_array_values
PASS -> FAIL: gdb.base/callfuncs.exp: p t_char_values
PASS -> FAIL: gdb.base/callfuncs.exp: p t_double_complex_many_args
PASS -> FAIL: gdb.base/callfuncs.exp: p t_double_complex_values
PASS -> FAIL: gdb.base/callfuncs.exp: p t_double_int
PASS -> FAIL: gdb.base/callfuncs.exp: p t_double_values
PASS -> FAIL: gdb.base/callfuncs.exp: p t_enum_value1
PASS -> FAIL: gdb.base/callfuncs.exp: p t_enum_value2
PASS -> FAIL: gdb.base/callfuncs.exp: p t_float_complex_many_args
PASS -> FAIL: gdb.base/callfuncs.exp: p t_float_complex_values
PASS -> FAIL: gdb.base/callfuncs.exp: p t_float_values
PASS -> FAIL: gdb.base/callfuncs.exp: p t_float_values2
PASS -> FAIL: gdb.base/callfuncs.exp: p t_func_values
PASS -> FAIL: gdb.base/callfuncs.exp: p t_int_double
PASS -> FAIL: gdb.base/callfuncs.exp: p t_int_values
PASS -> FAIL: gdb.base/callfuncs.exp: p t_long_double_complex_many_args
PASS -> FAIL: gdb.base/callfuncs.exp: p t_long_double_complex_values
PASS -> FAIL: gdb.base/callfuncs.exp: p t_long_values
PASS -> FAIL: gdb.base/callfuncs.exp: p t_short_values
PASS -> FAIL: gdb.base/callfuncs.exp: p t_small_values
PASS -> FAIL: gdb.base/callfuncs.exp: p t_string_values
PASS -> FAIL: gdb.base/callfuncs.exp: print *
PASS -> FAIL: gdb.base/callfuncs.exp: print callfunc
PASS -> FAIL: gdb.base/callfuncs.exp: register contents after gdb function calls
PASS -> FAIL: gdb.base/callfuncs.exp: register contents after nested call dummies
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: rerun number 1: next to t_double_values
PASS -> FAIL: gdb.base/callfuncs.exp: rerun number 1: next to t_structs_c
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: rerun number 2: next to t_double_values
PASS -> FAIL: gdb.base/callfuncs.exp: rerun number 2: next to t_structs_c
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: rerun number 3: next to t_double_values
PASS -> FAIL: gdb.base/callfuncs.exp: rerun number 3: next to t_structs_c
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: rerun number 4: next to t_double_values
PASS -> FAIL: gdb.base/callfuncs.exp: rerun number 4: next to t_structs_c
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: rerun number 5: next to t_double_values
PASS -> FAIL: gdb.base/callfuncs.exp: rerun number 5: next to t_structs_c
PASS -> FAIL: gdb.base/callfuncs.exp: retrieve original register contents 1
PASS -> FAIL: gdb.base/callfuncs.exp: retrieve original register contents 2
PASS -> FAIL: gdb.base/callfuncs.exp: retrieve original register contents 3
PASS -> FAIL: gdb.base/callfuncs.exp: retrieve original register contents 4
PASS -> FAIL: gdb.base/callfuncs.exp: retrieve original register contents 5
new FAIL: gdb.base/callfuncs.exp: setting breakpoint at add
new FAIL: gdb.base/callfuncs.exp: setting breakpoint at sum10
new FAIL: gdb.base/callfuncs.exp: setting breakpoint at t_small_values
PASS -> FAIL: gdb.base/callfuncs.exp: stop at breakpoint in call dummy function
PASS -> FAIL: gdb.base/callfuncs.exp: stop at nested call level 1
PASS -> FAIL: gdb.base/callfuncs.exp: stop at nested call level 2
PASS -> FAIL: gdb.base/callfuncs.exp: stop at nested call level 3
PASS -> FAIL: gdb.base/callfuncs.exp: stop at nested call level 4
new FAIL: gdb.base/catch-follow-exec.exp:
new FAIL: gdb.base/catch-fork-kill.exp: fork-kind=fork: exit-kind=exit: fork:
new FAIL: gdb.base/catch-fork-kill.exp: fork-kind=fork: exit-kind=kill: fork:
new FAIL: gdb.base/catch-fork-kill.exp: fork-kind=vfork: exit-kind=exit: vfork:
new FAIL: gdb.base/catch-fork-kill.exp: fork-kind=vfork: exit-kind=kill: vfork:
new FAIL: gdb.base/catch-fork-static.exp:
PASS -> FAIL: gdb.base/catch-fork-static.exp: run to fork
new FAIL: gdb.base/catch-gdb-caused-signals.exp:
new FAIL: gdb.base/catch-gdb-caused-signals.exp: can't run to main to make the tests
new FAIL: gdb.base/catch-load.exp: non-matching load with stop-on-solib-events:
new FAIL: gdb.base/catch-load.exp: non-matching load with stop-on-solib-events: can't run to main
new FAIL: gdb.base/catch-load.exp: non-matching load:
new FAIL: gdb.base/catch-load.exp: non-matching load: can't run to main
new FAIL: gdb.base/catch-load.exp: non-matching unload with stop-on-solib-events:
new FAIL: gdb.base/catch-load.exp: non-matching unload with stop-on-solib-events: can't run to main
new FAIL: gdb.base/catch-load.exp: non-matching unload:
new FAIL: gdb.base/catch-load.exp: non-matching unload: can't run to main
new FAIL: gdb.base/catch-load.exp: plain load with stop-on-solib-events:
new FAIL: gdb.base/catch-load.exp: plain load with stop-on-solib-events: can't run to main
new FAIL: gdb.base/catch-load.exp: plain load:
new FAIL: gdb.base/catch-load.exp: plain load: can't run to main
new FAIL: gdb.base/catch-load.exp: plain unload with stop-on-solib-events:
new FAIL: gdb.base/catch-load.exp: plain unload with stop-on-solib-events: can't run to main
new FAIL: gdb.base/catch-load.exp: plain unload:
new FAIL: gdb.base/catch-load.exp: plain unload: can't run to main
new FAIL: gdb.base/catch-load.exp: rx load with stop-on-solib-events:
new FAIL: gdb.base/catch-load.exp: rx load with stop-on-solib-events: can't run to main
new FAIL: gdb.base/catch-load.exp: rx load:
new FAIL: gdb.base/catch-load.exp: rx load: can't run to main
new FAIL: gdb.base/catch-load.exp: rx unload with stop-on-solib-events:
new FAIL: gdb.base/catch-load.exp: rx unload with stop-on-solib-events: can't run to main
new FAIL: gdb.base/catch-load.exp: rx unload:
new FAIL: gdb.base/catch-load.exp: rx unload: can't run to main
new FAIL: gdb.base/catch-signal-fork.exp:
new FAIL: gdb.base/catch-signal-siginfo-cond.exp:
new FAIL: gdb.base/catch-signal-siginfo-cond.exp: can't run to main
new FAIL: gdb.base/catch-signal.exp:
PASS -> FAIL: gdb.base/catch-signal.exp: 2nd line of save breakpoints for ''
PASS -> FAIL: gdb.base/catch-signal.exp: 2nd line of save breakpoints for 'SIGHUP SIGUSR2'
PASS -> FAIL: gdb.base/catch-signal.exp: 2nd line of save breakpoints for 'SIGHUP'
PASS -> FAIL: gdb.base/catch-signal.exp: 2nd line of save breakpoints for 'all'
PASS -> FAIL: gdb.base/catch-signal.exp: Number of lines of save breakpoints for ''
PASS -> FAIL: gdb.base/catch-signal.exp: Number of lines of save breakpoints for 'SIGHUP SIGUSR2'
PASS -> FAIL: gdb.base/catch-signal.exp: Number of lines of save breakpoints for 'SIGHUP'
PASS -> FAIL: gdb.base/catch-signal.exp: Number of lines of save breakpoints for 'all'
new FAIL: gdb.base/catch-signal.exp: setting breakpoint at main
new FAIL: gdb.base/catch-syscall.exp:
new FAIL: gdb.base/catch-syscall.exp: can't run to main
new FAIL: gdb.base/charset.exp:
PASS -> FAIL: gdb.base/charset.exp: assign string to int array
PASS -> FAIL: gdb.base/charset.exp: assign string to long array
PASS -> FAIL: gdb.base/charset.exp: assign string to short array
PASS -> FAIL: gdb.base/charset.exp: check value of "\a" in ASCII
PASS -> FAIL: gdb.base/charset.exp: check value of "\a" in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: check value of "\a" in IBM1047
PASS -> FAIL: gdb.base/charset.exp: check value of "\a" in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: check value of "\b" in ASCII
PASS -> FAIL: gdb.base/charset.exp: check value of "\b" in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: check value of "\b" in IBM1047
PASS -> FAIL: gdb.base/charset.exp: check value of "\b" in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: check value of "\f" in ASCII
PASS -> FAIL: gdb.base/charset.exp: check value of "\f" in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: check value of "\f" in IBM1047
PASS -> FAIL: gdb.base/charset.exp: check value of "\f" in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: check value of "\n" in ASCII
PASS -> FAIL: gdb.base/charset.exp: check value of "\n" in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: check value of "\n" in IBM1047
PASS -> FAIL: gdb.base/charset.exp: check value of "\n" in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: check value of "\r" in ASCII
PASS -> FAIL: gdb.base/charset.exp: check value of "\r" in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: check value of "\r" in IBM1047
PASS -> FAIL: gdb.base/charset.exp: check value of "\r" in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: check value of "\t" in ASCII
PASS -> FAIL: gdb.base/charset.exp: check value of "\t" in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: check value of "\t" in IBM1047
PASS -> FAIL: gdb.base/charset.exp: check value of "\t" in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: check value of "\v" in ASCII
PASS -> FAIL: gdb.base/charset.exp: check value of "\v" in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: check value of "\v" in IBM1047
PASS -> FAIL: gdb.base/charset.exp: check value of "\v" in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: check value of '\a' in ASCII
PASS -> FAIL: gdb.base/charset.exp: check value of '\a' in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: check value of '\a' in IBM1047
PASS -> FAIL: gdb.base/charset.exp: check value of '\a' in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: check value of '\b' in ASCII
PASS -> FAIL: gdb.base/charset.exp: check value of '\b' in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: check value of '\b' in IBM1047
PASS -> FAIL: gdb.base/charset.exp: check value of '\b' in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: check value of '\f' in ASCII
PASS -> FAIL: gdb.base/charset.exp: check value of '\f' in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: check value of '\f' in IBM1047
PASS -> FAIL: gdb.base/charset.exp: check value of '\f' in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: check value of '\n' in ASCII
PASS -> FAIL: gdb.base/charset.exp: check value of '\n' in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: check value of '\n' in IBM1047
PASS -> FAIL: gdb.base/charset.exp: check value of '\n' in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: check value of '\r' in ASCII
PASS -> FAIL: gdb.base/charset.exp: check value of '\r' in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: check value of '\r' in IBM1047
PASS -> FAIL: gdb.base/charset.exp: check value of '\r' in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: check value of '\t' in ASCII
PASS -> FAIL: gdb.base/charset.exp: check value of '\t' in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: check value of '\t' in IBM1047
PASS -> FAIL: gdb.base/charset.exp: check value of '\t' in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: check value of '\v' in ASCII
PASS -> FAIL: gdb.base/charset.exp: check value of '\v' in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: check value of '\v' in IBM1047
PASS -> FAIL: gdb.base/charset.exp: check value of '\v' in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: check value of escape that doesn't exist in ASCII
PASS -> FAIL: gdb.base/charset.exp: check value of escape that doesn't exist in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: check value of escape that doesn't exist in IBM1047
PASS -> FAIL: gdb.base/charset.exp: check value of escape that doesn't exist in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: check value of parsed character literal in ASCII
PASS -> FAIL: gdb.base/charset.exp: check value of parsed character literal in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: check value of parsed character literal in IBM1047
PASS -> FAIL: gdb.base/charset.exp: check value of parsed character literal in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: check value of parsed string literal in ASCII
PASS -> FAIL: gdb.base/charset.exp: check value of parsed string literal in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: check value of parsed string literal in IBM1047
PASS -> FAIL: gdb.base/charset.exp: check value of parsed string literal in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: get integer valueof "sizeof
PASS -> FAIL: gdb.base/charset.exp: print string in ASCII
PASS -> FAIL: gdb.base/charset.exp: print string in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: print string in IBM1047
PASS -> FAIL: gdb.base/charset.exp: print string in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: run until all strings have been initialized
PASS -> FAIL: gdb.base/charset.exp: set breakpoint after all strings have been initialized
PASS -> FAIL: gdb.base/charset.exp: set_prefix=U: assign String32 with prefix U
PASS -> FAIL: gdb.base/charset.exp: set_prefix=U: display String String32 with x/ws
PASS -> FAIL: gdb.base/charset.exp: try printing '\a' in ASCII
PASS -> FAIL: gdb.base/charset.exp: try printing '\a' in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: try printing '\a' in IBM1047
PASS -> FAIL: gdb.base/charset.exp: try printing '\a' in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: try printing '\b' in ASCII
PASS -> FAIL: gdb.base/charset.exp: try printing '\b' in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: try printing '\b' in IBM1047
PASS -> FAIL: gdb.base/charset.exp: try printing '\b' in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: try printing '\f' in ASCII
PASS -> FAIL: gdb.base/charset.exp: try printing '\f' in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: try printing '\f' in IBM1047
PASS -> FAIL: gdb.base/charset.exp: try printing '\f' in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: try printing '\n' in ASCII
PASS -> FAIL: gdb.base/charset.exp: try printing '\n' in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: try printing '\n' in IBM1047
PASS -> FAIL: gdb.base/charset.exp: try printing '\n' in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: try printing '\r' in ASCII
PASS -> FAIL: gdb.base/charset.exp: try printing '\r' in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: try printing '\r' in IBM1047
PASS -> FAIL: gdb.base/charset.exp: try printing '\r' in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: try printing '\t' in ASCII
PASS -> FAIL: gdb.base/charset.exp: try printing '\t' in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: try printing '\t' in IBM1047
PASS -> FAIL: gdb.base/charset.exp: try printing '\t' in ISO-8859-1
PASS -> FAIL: gdb.base/charset.exp: try printing '\v' in ASCII
PASS -> FAIL: gdb.base/charset.exp: try printing '\v' in EBCDIC-US
PASS -> FAIL: gdb.base/charset.exp: try printing '\v' in IBM1047
PASS -> FAIL: gdb.base/charset.exp: try printing '\v' in ISO-8859-1
new FAIL: gdb.base/chng-syms.exp:
PASS -> FAIL: gdb.base/chng-syms.exp: continue until exit at breakpoint first time through
PASS -> FAIL: gdb.base/chng-syms.exp: running to stop_here first time
PASS -> FAIL: gdb.base/chng-syms.exp: setting conditional breakpoint on function
PASS -> FAIL: gdb.base/code-expr.exp:
PASS -> FAIL: gdb.base/code_elim.exp: order1: add-symbol-file code_elim1 0x100000
PASS -> FAIL: gdb.base/code_elim.exp: order1: add-symbol-file code_elim2 0x200000
PASS -> FAIL: gdb.base/code_elim.exp: order1: get address of main
PASS -> FAIL: gdb.base/code_elim.exp: order1: get address of my_global_func
PASS -> FAIL: gdb.base/code_elim.exp: order1: get address of my_global_symbol
PASS -> FAIL: gdb.base/code_elim.exp: order1: get address of my_static_symbol
PASS -> FAIL: gdb.base/code_elim.exp: order2: add-symbol-file code_elim1 0x100000
PASS -> FAIL: gdb.base/code_elim.exp: order2: add-symbol-file code_elim2 0x200000
PASS -> FAIL: gdb.base/code_elim.exp: order2: get address of main
PASS -> FAIL: gdb.base/code_elim.exp: order2: get address of my_global_func
PASS -> FAIL: gdb.base/code_elim.exp: order2: get address of my_global_symbol
PASS -> FAIL: gdb.base/code_elim.exp: order2: get address of my_static_symbol
PASS -> FAIL: gdb.base/code_elim.exp: single psymtabs: get address of main
PASS -> FAIL: gdb.base/code_elim.exp: single psymtabs: test eliminated var my_global_func
PASS -> FAIL: gdb.base/code_elim.exp: single psymtabs: test eliminated var my_global_symbol
PASS -> FAIL: gdb.base/code_elim.exp: single psymtabs: test eliminated var my_static_symbol
PASS -> UNRESOLVED: gdb.base/code_elim.exp: single symtabs: get address of main
PASS -> UNRESOLVED: gdb.base/code_elim.exp: single symtabs: test eliminated var my_global_func
PASS -> UNRESOLVED: gdb.base/code_elim.exp: single symtabs: test eliminated var my_global_symbol
PASS -> UNRESOLVED: gdb.base/code_elim.exp: single symtabs: test eliminated var my_static_symbol
PASS -> FAIL: gdb.base/code_elim.exp: symbol-file code_elim1
new FAIL: gdb.base/commands.exp:
PASS -> UNRESOLVED: gdb.base/commands.exp: backslash_in_multi_line_command_test: commands
PASS -> UNRESOLVED: gdb.base/commands.exp: backslash_in_multi_line_command_test: end
PASS -> UNRESOLVED: gdb.base/commands.exp: backslash_in_multi_line_command_test: run command
new UNRESOLVED: gdb.base/commands.exp: backslash_in_multi_line_command_test: setting breakpoint at main
PASS -> FAIL: gdb.base/commands.exp: bp_deleted_in_command_test: add clear command
PASS -> FAIL: gdb.base/commands.exp: bp_deleted_in_command_test: add cont command
PASS -> FAIL: gdb.base/commands.exp: bp_deleted_in_command_test: add printf command
PASS -> UNRESOLVED: gdb.base/commands.exp: bp_deleted_in_command_test: add silent command
PASS -> FAIL: gdb.base/commands.exp: bp_deleted_in_command_test: begin commands
PASS -> FAIL: gdb.base/commands.exp: bp_deleted_in_command_test: break factorial
PASS -> FAIL: gdb.base/commands.exp: bp_deleted_in_command_test: run factorial until breakpoint
new FAIL: gdb.base/commands.exp: breakpoint_clear_command_test: cannot run to factorial
new FAIL: gdb.base/commands.exp: breakpoint_command_test: cannot run to factorial
PASS -> UNRESOLVED: gdb.base/commands.exp: define some_command_define
PASS -> UNRESOLVED: gdb.base/commands.exp: define some_command_if
PASS -> UNRESOLVED: gdb.base/commands.exp: define some_command_while
new UNRESOLVED: gdb.base/commands.exp: error_clears_commands_left: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/commands.exp: error_clears_commands_left: hook-stop 1
PASS -> UNRESOLVED: gdb.base/commands.exp: error_clears_commands_left: hook-stop 1a
PASS -> UNRESOLVED: gdb.base/commands.exp: error_clears_commands_left: hook-stop 1b
PASS -> UNRESOLVED: gdb.base/commands.exp: error_clears_commands_left: main commands 1
PASS -> UNRESOLVED: gdb.base/commands.exp: error_clears_commands_left: main commands 1a
PASS -> UNRESOLVED: gdb.base/commands.exp: error_clears_commands_left: main commands 1b
PASS -> UNRESOLVED: gdb.base/commands.exp: error_clears_commands_left: main commands 1c
PASS -> UNRESOLVED: gdb.base/commands.exp: error_clears_commands_left: main commands 2
PASS -> UNRESOLVED: gdb.base/commands.exp: error_clears_commands_left: main commands 2a
PASS -> UNRESOLVED: gdb.base/commands.exp: error_clears_commands_left: main commands 2b
PASS -> UNRESOLVED: gdb.base/commands.exp: error_clears_commands_left: main commands 2c
PASS -> UNRESOLVED: gdb.base/commands.exp: error_clears_commands_left: no cmd2
new UNRESOLVED: gdb.base/commands.exp: error_clears_commands_left: setting breakpoint at main
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: break factorial - if_commands_test 1
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: break factorial - if_commands_test 2
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: break main - if_commands_test 1
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: break main - if_commands_test 2
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: commands - if_commands_test 1
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: commands - if_commands_test 2
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: continue - if_commands_test 1
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: continue - if_commands_test 2
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: else - if_commands_test 1
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: else - if_commands_test 2
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: first end - if_commands_test 1
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: first end - if_commands_test 2
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: if $tem == 1 - if_commands_test 2
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: if $tem == 2 - if_commands_test 1
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: second end - if_commands_test 1
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: second end - if_commands_test 2
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: set $tem
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: set $tem = 3 - if_commands_test 1
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: set $tem = 3 - if_commands_test 2
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: silent - if_commands_test 1
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: silent - if_commands_test 2
new FAIL: gdb.base/commands.exp: if_while_breakpoint_command_test: cannot run to factorial
new FAIL: gdb.base/commands.exp: infrun_breakpoint_command_test: cannot run to factorial
PASS -> UNRESOLVED: gdb.base/commands.exp: loop_break_test: initialize $a
PASS -> UNRESOLVED: gdb.base/commands.exp: loop_break_test: initialize $total
PASS -> UNRESOLVED: gdb.base/commands.exp: loop_break_test: run while loop
PASS -> UNRESOLVED: gdb.base/commands.exp: loop_break_test: validate $a
PASS -> UNRESOLVED: gdb.base/commands.exp: loop_break_test: validate $b
PASS -> UNRESOLVED: gdb.base/commands.exp: loop_break_test: validate $total
PASS -> UNRESOLVED: gdb.base/commands.exp: loop_continue_test: initialize $a
PASS -> UNRESOLVED: gdb.base/commands.exp: loop_continue_test: initialize $total
PASS -> UNRESOLVED: gdb.base/commands.exp: loop_continue_test: run while loop
PASS -> UNRESOLVED: gdb.base/commands.exp: loop_continue_test: validate $a
PASS -> UNRESOLVED: gdb.base/commands.exp: loop_continue_test: validate $b
PASS -> UNRESOLVED: gdb.base/commands.exp: loop_continue_test: validate $total
new FAIL: gdb.base/commands.exp: progvar_complex_if_while_test: cannot run to factorial
new FAIL: gdb.base/commands.exp: progvar_simple_if_test: cannot run to factorial
new FAIL: gdb.base/commands.exp: progvar_simple_while_test: cannot run to factorial
PASS -> UNRESOLVED: gdb.base/commands.exp: recursive_source_test: source file
PASS -> UNRESOLVED: gdb.base/commands.exp: redefine_backtrace_test: define backtrace
PASS -> UNRESOLVED: gdb.base/commands.exp: redefine_backtrace_test: enter commands
PASS -> UNRESOLVED: gdb.base/commands.exp: redefine_backtrace_test: execute backtrace command
PASS -> UNRESOLVED: gdb.base/commands.exp: redefine_backtrace_test: execute bt command
PASS -> UNRESOLVED: gdb.base/commands.exp: redefine_backtrace_test: expect response to define backtrace
PASS -> UNRESOLVED: gdb.base/commands.exp: redefine_hook_test: define hook-one
PASS -> UNRESOLVED: gdb.base/commands.exp: redefine_hook_test: define one
PASS -> UNRESOLVED: gdb.base/commands.exp: redefine_hook_test: enter commands for one redefinition
PASS -> UNRESOLVED: gdb.base/commands.exp: redefine_hook_test: execute one command
PASS -> UNRESOLVED: gdb.base/commands.exp: redefine_hook_test: redefine one
PASS -> UNRESOLVED: gdb.base/commands.exp: source_file_with_indented_comment: source file
PASS -> UNRESOLVED: gdb.base/commands.exp: stray_arg0_test: #1
PASS -> UNRESOLVED: gdb.base/commands.exp: stray_arg0_test: #2
PASS -> UNRESOLVED: gdb.base/commands.exp: stray_arg0_test: #3
PASS -> UNRESOLVED: gdb.base/commands.exp: stray_arg0_test: #4
PASS -> FAIL: gdb.base/commands.exp: temporary_breakpoint_commands: add cont tbreak command
PASS -> FAIL: gdb.base/commands.exp: temporary_breakpoint_commands: add printf tbreak command
PASS -> UNRESOLVED: gdb.base/commands.exp: temporary_breakpoint_commands: add silent tbreak command
new FAIL: gdb.base/commands.exp: temporary_breakpoint_commands: begin commands in bp_deleted_in_command_test
PASS -> FAIL: gdb.base/commands.exp: temporary_breakpoint_commands: breakpoint
new FAIL: gdb.base/commands.exp: test_command_prompt_position: cannot run to factorial
PASS -> UNRESOLVED: gdb.base/commands.exp: type define without args
PASS -> UNRESOLVED: gdb.base/commands.exp: type if without args
PASS -> UNRESOLVED: gdb.base/commands.exp: type while without args
new FAIL: gdb.base/commands.exp: watchpoint_command_test: cannot run to factorial
new FAIL: gdb.base/compare-sections.exp:
new FAIL: gdb.base/compare-sections.exp: can't run to main
new FAIL: gdb.base/completion.exp:
PASS -> FAIL: gdb.base/completion.exp: complete 'handle keyword'
PASS -> FAIL: gdb.base/completion.exp: complete 'handle signal'
PASS -> FAIL: gdb.base/completion.exp: complete 'info func marke'
PASS -> FAIL: gdb.base/completion.exp: complete 'p "break1'
PASS -> FAIL: gdb.base/completion.exp: complete 'p &values[0] -> a'
PASS -> FAIL: gdb.base/completion.exp: complete 'p no_var_named_this-arg'
PASS -> FAIL: gdb.base/completion.exp: complete 'p values[0] . a'
PASS -> FAIL: gdb.base/completion.exp: complete 'p values[0].a'
PASS -> FAIL: gdb.base/completion.exp: complete 'set follow-fork-mode'
PASS -> FAIL: gdb.base/completion.exp: complete
PASS -> FAIL: gdb.base/completion.exp: complete break break
PASS -> FAIL: gdb.base/completion.exp: complete break break.c:ma
PASS -> FAIL: gdb.base/completion.exp: complete break need
PASS -> FAIL: gdb.base/completion.exp: complete help aliases
PASS -> FAIL: gdb.base/completion.exp: complete ptype enum some_
PASS -> FAIL: gdb.base/completion.exp: complete ptype struct some_
PASS -> FAIL: gdb.base/completion.exp: complete ptype union some_
PASS -> FAIL: gdb.base/completion.exp: completion of field in anonymous union
PASS -> FAIL: gdb.base/completion.exp: ptype completion of field in anonymous union
PASS -> FAIL: gdb.base/completion.exp: set breakpoint pending off
PASS -> UNRESOLVED: gdb.base/completion.exp: set max-completions unlimited
PASS -> FAIL: gdb.base/completion.exp: symbol-name completion limiting using complete command
PASS -> FAIL: gdb.base/completion.exp: symbol-name completion limiting using tab character
PASS -> FAIL: gdb.base/completion.exp: tab complete break break
PASS -> FAIL: gdb.base/completion.exp: tab complete break break.c:ma
PASS -> FAIL: gdb.base/completion.exp: tab complete break need
PASS -> FAIL: gdb.base/completion.exp: whatis completion of field in anonymous union
new FAIL: gdb.base/complex-parts.exp:
new FAIL: gdb.base/complex-parts.exp: can't run to main
new FAIL: gdb.base/complex.exp:
new FAIL: gdb.base/comprdebug.exp:
PASS -> FAIL: gdb.base/comprdebug.exp: file comprdebug0.o
new FAIL: gdb.base/cond-eval-mode.exp:
new FAIL: gdb.base/cond-eval-mode.exp: can't run to main
new FAIL: gdb.base/cond-expr.exp:
new FAIL: gdb.base/condbreak-call-false.exp:
new FAIL: gdb.base/condbreak-call-false.exp: can't run to main
new FAIL: gdb.base/condbreak.exp:
PASS -> FAIL: gdb.base/condbreak.exp: break *main if
PASS -> FAIL: gdb.base/condbreak.exp: break *main task 999 if
PASS -> FAIL: gdb.base/condbreak.exp: break *main thread 999 if
PASS -> FAIL: gdb.base/condbreak.exp: break break.c:47 if
PASS -> FAIL: gdb.base/condbreak.exp: break break.c:47 if 1==1
PASS -> FAIL: gdb.base/condbreak.exp: break main if
PASS -> FAIL: gdb.base/condbreak.exp: break main thread 999 if
PASS -> FAIL: gdb.base/condbreak.exp: break marker1 if
PASS -> FAIL: gdb.base/condbreak.exp: break marker1 if 1==1
PASS -> FAIL: gdb.base/condbreak.exp: break marker2 if
PASS -> FAIL: gdb.base/condbreak.exp: break marker3 if
PASS -> FAIL: gdb.base/condbreak.exp: break marker4
PASS -> FAIL: gdb.base/condbreak.exp: breakpoint function
PASS -> FAIL: gdb.base/condbreak.exp: breakpoint info
PASS -> FAIL: gdb.base/condbreak.exp: complete cond 1 values[0].a
PASS -> FAIL: gdb.base/condbreak.exp: delete 2
PASS -> FAIL: gdb.base/condbreak.exp: delete 3
PASS -> FAIL: gdb.base/condbreak.exp: rerun to main
PASS -> FAIL: gdb.base/condbreak.exp: run until breakpoint at marker1
PASS -> FAIL: gdb.base/condbreak.exp: run until breakpoint at marker2
PASS -> FAIL: gdb.base/condbreak.exp: run until breakpoint at marker3
PASS -> FAIL: gdb.base/condbreak.exp: run until breakpoint at marker4
PASS -> FAIL: gdb.base/condbreak.exp: run until breakpoint set at a line number
new FAIL: gdb.base/consecutive-step-over.exp:
new FAIL: gdb.base/consecutive-step-over.exp: can't run to main
new FAIL: gdb.base/consecutive.exp:
new FAIL: gdb.base/constvars.exp:
new FAIL: gdb.base/continue-after-aborted-step-over.exp: displaced-stepping=off:
new FAIL: gdb.base/continue-after-aborted-step-over.exp: displaced-stepping=off: run to main
new FAIL: gdb.base/continue-after-aborted-step-over.exp: displaced-stepping=on:
new FAIL: gdb.base/continue-after-aborted-step-over.exp: displaced-stepping=on: run to main
new FAIL: gdb.base/continue-all-already-running.exp:
new FAIL: gdb.base/coredump-filter.exp:
PASS -> FAIL: gdb.base/corefile-buildid.exp: exec sepdebug: load core file
PASS -> FAIL: gdb.base/corefile-buildid.exp: exec: load core file
PASS -> FAIL: gdb.base/corefile-buildid.exp: shared sepdebug: load core file
PASS -> FAIL: gdb.base/corefile-buildid.exp: shared: load core file
PASS -> FAIL: gdb.base/corefile-buildid.exp: symlink exec sepdebug: load core file
PASS -> FAIL: gdb.base/corefile-buildid.exp: symlink exec: load core file
PASS -> FAIL: gdb.base/corefile-buildid.exp: symlink shared sepdebug: load core file
PASS -> FAIL: gdb.base/corefile-buildid.exp: symlink shared: load core file
PASS -> FAIL: gdb.base/corefile.exp: $_exitsignal prints SIGABRT
new FAIL: gdb.base/corefile.exp:
PASS -> FAIL: gdb.base/corefile.exp: accessing mmapped data in core file
PASS -> FAIL: gdb.base/corefile.exp: accessing original mmap data in core file
PASS -> FAIL: gdb.base/corefile.exp: backtrace in corefile.exp
PASS -> FAIL: gdb.base/corefile.exp: core-file command
PASS -> FAIL: gdb.base/corefile.exp: core-file warning-free
PASS -> FAIL: gdb.base/corefile.exp: no question: load core
PASS -> FAIL: gdb.base/corefile.exp: print coremaker_bss
PASS -> FAIL: gdb.base/corefile.exp: print coremaker_data
PASS -> FAIL: gdb.base/corefile.exp: print coremaker_ro
PASS -> FAIL: gdb.base/corefile.exp: print func2::coremaker_local
new FAIL: gdb.base/ctxobj.exp:
new FAIL: gdb.base/cursal.exp:
PASS -> FAIL: gdb.base/cursal.exp: list before run
PASS -> FAIL: gdb.base/cvexpr.exp: dwarf:
PASS -> FAIL: gdb.base/dbx.exp: file average.c:1
PASS -> FAIL: gdb.base/dbx.exp: func print_average
PASS -> FAIL: gdb.base/dbx.exp: func sum
PASS -> FAIL: gdb.base/dbx.exp: print first
PASS -> FAIL: gdb.base/dbx.exp: running to main
PASS -> FAIL: gdb.base/dbx.exp: status
PASS -> FAIL: gdb.base/dbx.exp: stop at average.c:30
PASS -> UNRESOLVED: gdb.base/dbx.exp: stop in main
PASS -> FAIL: gdb.base/dbx.exp: stop in sum
PASS -> FAIL: gdb.base/dbx.exp: whereis my_list
new FAIL: gdb.base/dcache-line-read-error.exp:
new FAIL: gdb.base/debug-expr.exp:
new FAIL: gdb.base/debug-expr.exp: run to main
new FAIL: gdb.base/define.exp:
PASS -> FAIL: gdb.base/define.exp: command abbreviations in define: info break shows echo command
PASS -> FAIL: gdb.base/define.exp: command abbreviations in define: run user command
new FAIL: gdb.base/define.exp: define tests suppressed
PASS -> FAIL: gdb.base/define.exp: use hook-stop command
PASS -> FAIL: gdb.base/define.exp: use user command: nextwhere
new FAIL: gdb.base/del.exp:
PASS -> FAIL: gdb.base/del.exp: Remove last breakpoint
PASS -> FAIL: gdb.base/del.exp: breakpoint insertion
new FAIL: gdb.base/detach.exp:
PASS -> FAIL: gdb.base/detach.exp: detach, one
PASS -> FAIL: gdb.base/detach.exp: detach, two
PASS -> FAIL: gdb.base/detach.exp: set should_exit, one
PASS -> FAIL: gdb.base/detach.exp: set should_exit, two
new FAIL: gdb.base/disabled-location.exp:
new FAIL: gdb.base/disabled-location.exp: can't run to main
new FAIL: gdb.base/disasm-end-cu.exp:
new FAIL: gdb.base/display.exp:
new FAIL: gdb.base/display.exp: could not run to main - other tests will fail.
new FAIL: gdb.base/dmsym.exp:
PASS -> FAIL: gdb.base/dmsym.exp: break test_minsym
PASS -> FAIL: gdb.base/dmsym.exp: continue
PASS -> FAIL: gdb.base/dmsym.exp: info line test_minsym
PASS -> FAIL: gdb.base/dmsym.exp: print val
PASS -> FAIL: gdb.base/dmsym.exp: run until breakpoint at BREAK
new FAIL: gdb.base/dmsym.exp: setting breakpoint at dmsym_main.c:31
new FAIL: gdb.base/double-prompt-target-event-error.exp:
new FAIL: gdb.base/double-prompt-target-event-error.exp: ctrlc target event: continue:
new FAIL: gdb.base/double-prompt-target-event-error.exp: ctrlc target event: continue: can't run to main
new FAIL: gdb.base/double-prompt-target-event-error.exp: ctrlc target event: wrapcont:
new FAIL: gdb.base/double-prompt-target-event-error.exp: ctrlc target event: wrapcont: can't run to main
new FAIL: gdb.base/dprintf-bp-same-addr.exp:
new FAIL: gdb.base/dprintf-bp-same-addr.exp: agent:
new FAIL: gdb.base/dprintf-bp-same-addr.exp: agent: can't run to main
new FAIL: gdb.base/dprintf-bp-same-addr.exp: gdb:
new FAIL: gdb.base/dprintf-bp-same-addr.exp: gdb: can't run to main
new FAIL: gdb.base/dprintf-next.exp:
new FAIL: gdb.base/dprintf-next.exp: can't run to main
new FAIL: gdb.base/dprintf-non-stop.exp:
new FAIL: gdb.base/dprintf-non-stop.exp: can't run to main
new FAIL: gdb.base/dprintf-pending.exp:
PASS -> FAIL: gdb.base/dprintf-pending.exp: run to resolved dprintf
new FAIL: gdb.base/dprintf-pending.exp: without symbols:
PASS -> FAIL: gdb.base/dprintf-pending.exp: without symbols: run to resolved dprintf
new FAIL: gdb.base/dprintf.exp:
new FAIL: gdb.base/dso2dso.exp:
new FAIL: gdb.base/dump.exp:
PASS -> FAIL: gdb.base/dump.exp: get hexadecimal valueof "&intarray"
new FAIL: gdb.base/dup-sect.exp:
PASS -> FAIL: gdb.base/dup-sect.exp: var1 after strip
PASS -> FAIL: gdb.base/dup-sect.exp: var2 after strip
new FAIL: gdb.base/duplicate-bp.exp:
new FAIL: gdb.base/duplicate-bp.exp: del_1_stop_2:
new FAIL: gdb.base/duplicate-bp.exp: del_1_stop_2: can't run to main
PASS -> FAIL: gdb.base/duplicate-bp.exp: del_1_stop_2: delete #1, stop at #2
PASS -> FAIL: gdb.base/duplicate-bp.exp: del_1_stop_2: delete $bp_num_1
new FAIL: gdb.base/duplicate-bp.exp: del_2_stop_1:
new FAIL: gdb.base/duplicate-bp.exp: del_2_stop_1: can't run to main
PASS -> FAIL: gdb.base/duplicate-bp.exp: del_2_stop_1: delete #2, stop at #1
PASS -> FAIL: gdb.base/duplicate-bp.exp: del_2_stop_1: delete $bp_num_2
new FAIL: gdb.base/duplicate-bp.exp: dis_1_del_2_stop_3:
new FAIL: gdb.base/duplicate-bp.exp: dis_1_del_2_stop_3: can't run to main
PASS -> FAIL: gdb.base/duplicate-bp.exp: dis_1_del_2_stop_3: delete $bp_num_2
PASS -> FAIL: gdb.base/duplicate-bp.exp: dis_1_del_2_stop_3: disable #1, delete #2, stop at #3
PASS -> FAIL: gdb.base/duplicate-bp.exp: dis_1_del_2_stop_3: disable $bp_num_1
new FAIL: gdb.base/duplicate-bp.exp: dis_1_del_3_stop_1:
new FAIL: gdb.base/duplicate-bp.exp: dis_1_del_3_stop_1: can't run to main
PASS -> FAIL: gdb.base/duplicate-bp.exp: dis_1_del_3_stop_1: delete $bp_num_3
PASS -> FAIL: gdb.base/duplicate-bp.exp: dis_1_del_3_stop_1: disable #1, delete #3, stop at #2
PASS -> FAIL: gdb.base/duplicate-bp.exp: dis_1_del_3_stop_1: disable $bp_num_1
new FAIL: gdb.base/duplicate-bp.exp: dis_2_del_1_stop_3:
new FAIL: gdb.base/duplicate-bp.exp: dis_2_del_1_stop_3: can't run to main
PASS -> FAIL: gdb.base/duplicate-bp.exp: dis_2_del_1_stop_3: delete $bp_num_1
PASS -> FAIL: gdb.base/duplicate-bp.exp: dis_2_del_1_stop_3: disable #2, delete #1, stop at #3
PASS -> FAIL: gdb.base/duplicate-bp.exp: dis_2_del_1_stop_3: disable $bp_num_2
new FAIL: gdb.base/duplicate-bp.exp: dis_2_del_3_stop_1:
new FAIL: gdb.base/duplicate-bp.exp: dis_2_del_3_stop_1: can't run to main
PASS -> FAIL: gdb.base/duplicate-bp.exp: dis_2_del_3_stop_1: delete $bp_num_3
PASS -> FAIL: gdb.base/duplicate-bp.exp: dis_2_del_3_stop_1: disable #2, delete #3, stop at #1
PASS -> FAIL: gdb.base/duplicate-bp.exp: dis_2_del_3_stop_1: disable $bp_num_2
new FAIL: gdb.base/duplicate-bp.exp: dis_3_del_1_stop_2:
new FAIL: gdb.base/duplicate-bp.exp: dis_3_del_1_stop_2: can't run to main
PASS -> FAIL: gdb.base/duplicate-bp.exp: dis_3_del_1_stop_2: delete $bp_num_1
PASS -> FAIL: gdb.base/duplicate-bp.exp: dis_3_del_1_stop_2: disable #3, delete #1, stop at #2
PASS -> FAIL: gdb.base/duplicate-bp.exp: dis_3_del_1_stop_2: disable $bp_num_3
new FAIL: gdb.base/duplicate-bp.exp: dis_3_del_2_stop_1:
new FAIL: gdb.base/duplicate-bp.exp: dis_3_del_2_stop_1: can't run to main
PASS -> FAIL: gdb.base/duplicate-bp.exp: dis_3_del_2_stop_1: delete $bp_num_2
PASS -> FAIL: gdb.base/duplicate-bp.exp: dis_3_del_2_stop_1: disable #3, delete #2, stop at #1
PASS -> FAIL: gdb.base/duplicate-bp.exp: dis_3_del_2_stop_1: disable $bp_num_3
new UNRESOLVED: gdb.base/ena-dis-br.exp:
PASS -> FAIL: gdb.base/ena-dis-br.exp: break 63
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: break main
PASS -> FAIL: gdb.base/ena-dis-br.exp: break marker1
PASS -> FAIL: gdb.base/ena-dis-br.exp: break marker2
PASS -> FAIL: gdb.base/ena-dis-br.exp: break marker3
PASS -> FAIL: gdb.base/ena-dis-br.exp: break marker4
PASS -> FAIL: gdb.base/ena-dis-br.exp: continue from enable count, first time
PASS -> FAIL: gdb.base/ena-dis-br.exp: continue from enable count, second time
PASS -> FAIL: gdb.base/ena-dis-br.exp: continue through enable count, now disabled
PASS -> FAIL: gdb.base/ena-dis-br.exp: continue to auto-deleted break marker3
PASS -> FAIL: gdb.base/ena-dis-br.exp: continue to auto-disabled break marker2
PASS -> FAIL: gdb.base/ena-dis-br.exp: continue to break marker1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: continue to break marker1, 2nd time
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: continue to ignored & auto-deleted break marker1
PASS -> FAIL: gdb.base/ena-dis-br.exp: continue until exit at no stop
PASS -> FAIL: gdb.base/ena-dis-br.exp: continue until exit at no stop at auto-disabled break marker2
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: continue until exit at no stop at ignored & auto-deleted break marker1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: continue until exit at no stop at ignored & disabled break marker1
PASS -> FAIL: gdb.base/ena-dis-br.exp: continue until exit at no stop at ignored break marker1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: continue with ignore count
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: continue with ignore count, not stopped at bpt
new UNRESOLVED: gdb.base/ena-dis-br.exp: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.base/ena-dis-br.exp: delete break marker1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: disable $b1 fooo.1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: disable $b1.1 $b2.1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: disable $b3
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: disable $b4 $b3.1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: disable $b4.1 fooobar
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: disable break marker1
PASS -> FAIL: gdb.base/ena-dis-br.exp: disable break marker4
PASS -> FAIL: gdb.base/ena-dis-br.exp: disable break with count
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: disabled $b1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: disabled $b1.1 and $b2.1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: disabled $b4 and $b3.1,remain enabled $b3
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: disabled $b4.1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: enable $b1 fooo.1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: enable $b1.1 $b2.1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: enable $b3
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: enable $b4 $b3.1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: enable $b4.1 fooobar
PASS -> FAIL: gdb.base/ena-dis-br.exp: enable break marker1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: enable del break marker1
PASS -> FAIL: gdb.base/ena-dis-br.exp: enable del break marker3
PASS -> FAIL: gdb.base/ena-dis-br.exp: enable once break marker2
new UNRESOLVED: gdb.base/ena-dis-br.exp: enable/disable break tests suppressed
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: enabled $b1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: enabled $b1.1 and $b2.1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: enabled $b4 and $b3.1,remain disabled $b3
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: enabled $b4.1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: ignore break marker1
PASS -> FAIL: gdb.base/ena-dis-br.exp: ignore break marker1 -1
PASS -> FAIL: gdb.base/ena-dis-br.exp: ignore break marker1 0
PASS -> FAIL: gdb.base/ena-dis-br.exp: ignore break marker1 1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: ignore break marker1 10
PASS -> FAIL: gdb.base/ena-dis-br.exp: ignore break with missing ignore count
PASS -> FAIL: gdb.base/ena-dis-br.exp: info auto-deleted break marker2
PASS -> FAIL: gdb.base/ena-dis-br.exp: info auto-disabled break marker2 after hitting breakpoint
PASS -> FAIL: gdb.base/ena-dis-br.exp: info auto-disabled break marker2 before hitting breakpoint
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: info break marker1 after hitting breakpoint
PASS -> FAIL: gdb.base/ena-dis-br.exp: info break marker1 before hitting breakpoint
PASS -> FAIL: gdb.base/ena-dis-br.exp: info break marker4
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: info ignored & disabled break marker1
PASS -> FAIL: gdb.base/ena-dis-br.exp: info ignored break marker1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: prepare to continue with ignore count
PASS -> FAIL: gdb.base/ena-dis-br.exp: rerun to main
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: step after continue with ignore count
new FAIL: gdb.base/endian.exp:
PASS -> FAIL: gdb.base/endian.exp: get target endianness
PASS -> FAIL: gdb.base/endian.exp: override auto target endianness big
PASS -> FAIL: gdb.base/endian.exp: override auto target endianness little
PASS -> UNRESOLVED: gdb.base/endian.exp: override target endianness big
PASS -> FAIL: gdb.base/endian.exp: override target endianness little
PASS -> UNRESOLVED: gdb.base/endian.exp: previously big default executable endianness
PASS -> UNRESOLVED: gdb.base/endian.exp: previously big default no executable endianness
PASS -> UNRESOLVED: gdb.base/endian.exp: previously little default executable endianness
PASS -> UNRESOLVED: gdb.base/endian.exp: previously little default no executable endianness
new FAIL: gdb.base/endianity.exp:
new FAIL: gdb.base/endianity.exp: couldn't run to start
new FAIL: gdb.base/ending-run.exp:
PASS -> FAIL: gdb.base/ending-run.exp: Cleared 2 by line
PASS -> UNRESOLVED: gdb.base/ending-run.exp: Step to return
PASS -> FAIL: gdb.base/ending-run.exp: all set to continue
PASS -> FAIL: gdb.base/ending-run.exp: b ending-run.c:1
PASS -> FAIL: gdb.base/ending-run.exp: b ending-run.c:11, one
PASS -> FAIL: gdb.base/ending-run.exp: b ending-run.c:11, two
PASS -> FAIL: gdb.base/ending-run.exp: b ending-run.c:30
PASS -> FAIL: gdb.base/ending-run.exp: bpt at line before routine
PASS -> FAIL: gdb.base/ending-run.exp: clear worked
PASS -> FAIL: gdb.base/ending-run.exp: cleared bp at line before routine
PASS -> FAIL: gdb.base/ending-run.exp: cont
new FAIL: gdb.base/ending-run.exp: need to fix test for new compile outcome
PASS -> FAIL: gdb.base/ending-run.exp: run
PASS -> FAIL: gdb.base/ending-run.exp: step out of main
new FAIL: gdb.base/enum_cond.exp:
new FAIL: gdb.base/enumval.exp:
PASS -> FAIL: gdb.base/enumval.exp: p ZERO
PASS -> FAIL: gdb.base/enumval.exp: print J
PASS -> FAIL: gdb.base/enumval.exp: print K
PASS -> FAIL: gdb.base/enumval.exp: print e
PASS -> FAIL: gdb.base/enumval.exp: print f
new FAIL: gdb.base/eval-avoid-side-effects.exp:
new FAIL: gdb.base/eval-skip.exp:
new FAIL: gdb.base/examine-backward.exp:
new FAIL: gdb.base/exe-lock.exp:
new FAIL: gdb.base/exec-invalid-sysroot.exp:
new FAIL: gdb.base/exec-invalid-sysroot.exp: couldn't run exec-invalid-sysroot
new FAIL: gdb.base/execl-update-breakpoints.exp:
new FAIL: gdb.base/execl-update-breakpoints.exp: couldn't run to main
new FAIL: gdb.base/execution-termios.exp:
new FAIL: gdb.base/execution-termios.exp: continue: can't run to main
new FAIL: gdb.base/execution-termios.exp: finish: can't run to main
new FAIL: gdb.base/execution-termios.exp: infcall: can't run to main
new FAIL: gdb.base/execution-termios.exp: next: can't run to main
new FAIL: gdb.base/exitsignal.exp:
new FAIL: gdb.base/expand-psymtabs.exp:
PASS -> FAIL: gdb.base/expand-psymtabs.exp: expand psymtabs
new FAIL: gdb.base/exprs.exp:
new FAIL: gdb.base/filesym.exp:
PASS -> FAIL: gdb.base/filesym.exp: complete on "filesy"
new FAIL: gdb.base/find-unmapped.exp:
PASS -> FAIL: gdb.base/find.exp: $_
PASS -> FAIL: gdb.base/find.exp: $numfound
new FAIL: gdb.base/find.exp:
PASS -> FAIL: gdb.base/find.exp: breakpoint function in file
PASS -> FAIL: gdb.base/find.exp: find 16-bit pattern
PASS -> FAIL: gdb.base/find.exp: find 32-bit pattern
PASS -> FAIL: gdb.base/find.exp: find 64-bit pattern
PASS -> FAIL: gdb.base/find.exp: find byte pattern with end address
PASS -> FAIL: gdb.base/find.exp: find int64_search_buf, +64/8*100, int64_search_buf
PASS -> FAIL: gdb.base/find.exp: find mixed-sized pattern
PASS -> FAIL: gdb.base/find.exp: find pattern straddling chunk boundary
PASS -> FAIL: gdb.base/find.exp: find string pattern
PASS -> FAIL: gdb.base/find.exp: max-count
PASS -> FAIL: gdb.base/find.exp: pattern found at end of range
PASS -> FAIL: gdb.base/find.exp: pattern not found at end of range
PASS -> FAIL: gdb.base/find.exp: run until function breakpoint
PASS -> FAIL: gdb.base/find.exp: search spanning large range
new FAIL: gdb.base/find.exp: set *
new FAIL: gdb.base/find.exp: set int16_search_buf[10] = 0x1234
new FAIL: gdb.base/find.exp: set int32_search_buf[10] = 0x12345678
new FAIL: gdb.base/find.exp: set int64_search_buf[10] = 0xfedcba9876543210LL
PASS -> FAIL: gdb.base/find.exp: size,max-count, /1/b
PASS -> FAIL: gdb.base/find.exp: size,max-count, /1b
PASS -> FAIL: gdb.base/find.exp: size,max-count, /b/1
PASS -> FAIL: gdb.base/find.exp: size,max-count, /b1
new FAIL: gdb.base/finish-pretty.exp:
new FAIL: gdb.base/finish-pretty.exp: can't run to foo
new FAIL: gdb.base/finish.exp:
new FAIL: gdb.base/fixsection.exp:
new FAIL: gdb.base/fixsection.exp: can't run to main
new FAIL: gdb.base/float.exp:
new FAIL: gdb.base/floatn.exp:
new FAIL: gdb.base/foll-exec.exp:
new FAIL: gdb.base/foll-exec.exp: couldn't run foll-exec
new FAIL: gdb.base/foll-fork.exp:
new FAIL: gdb.base/foll-fork.exp: follow child, detach off, command "continue":
new FAIL: gdb.base/foll-fork.exp: follow child, detach off, command "next 2":
new FAIL: gdb.base/foll-fork.exp: follow child, detach on, command "continue":
new FAIL: gdb.base/foll-fork.exp: follow child, detach on, command "next 2":
new FAIL: gdb.base/foll-fork.exp: follow default, detach default, command "continue":
new FAIL: gdb.base/foll-fork.exp: follow default, detach default, command "next 2":
new FAIL: gdb.base/foll-fork.exp: follow parent, detach off, command "continue":
new FAIL: gdb.base/foll-fork.exp: follow parent, detach off, command "next 2":
new FAIL: gdb.base/foll-fork.exp: follow parent, detach on, command "continue":
new FAIL: gdb.base/foll-fork.exp: follow parent, detach on, command "next 2":
new FAIL: gdb.base/foll-vfork.exp: check vfork support:
new FAIL: gdb.base/foll-vfork.exp: exec: vfork and exec child follow, through step:
new FAIL: gdb.base/foll-vfork.exp: exec: vfork and exec child follow, to main bp:
new FAIL: gdb.base/foll-vfork.exp: exec: vfork child follow, finish after tcatch vfork:
new FAIL: gdb.base/foll-vfork.exp: exec: vfork parent follow, finish after tcatch vfork:
new FAIL: gdb.base/foll-vfork.exp: exec: vfork parent follow, through step:
new FAIL: gdb.base/foll-vfork.exp: exec: vfork parent follow, to bp:
new FAIL: gdb.base/foll-vfork.exp: exec: vfork relations in info inferiors:
new FAIL: gdb.base/foll-vfork.exp: exit: vfork child follow, finish after tcatch vfork:
new FAIL: gdb.base/foll-vfork.exp: exit: vfork child follow, to exit:
new FAIL: gdb.base/foll-vfork.exp: exit: vfork parent follow, finish after tcatch vfork:
new FAIL: gdb.base/foll-vfork.exp: exit: vfork parent follow, through step:
new FAIL: gdb.base/foll-vfork.exp: exit: vfork parent follow, to bp:
new FAIL: gdb.base/foll-vfork.exp: exit: vfork relations in info inferiors:
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=off:
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=off: can't run to main
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=on:
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=on: can't run to main
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: non-stop:
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: non-stop: can't run to main
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=parent: all-stop: schedule-multiple=off:
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=parent: all-stop: schedule-multiple=off: can't run to main
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=parent: all-stop: schedule-multiple=on:
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=parent: all-stop: schedule-multiple=on: can't run to main
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=parent: non-stop:
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=parent: non-stop: can't run to main
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=child: all-stop: schedule-multiple=off:
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=child: all-stop: schedule-multiple=off: can't run to main
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=child: all-stop: schedule-multiple=on:
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=child: all-stop: schedule-multiple=on: can't run to main
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=child: non-stop:
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=child: non-stop: can't run to main
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=parent: all-stop: schedule-multiple=off:
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=parent: all-stop: schedule-multiple=off: can't run to main
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=parent: all-stop: schedule-multiple=on:
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=parent: all-stop: schedule-multiple=on: can't run to main
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=parent: non-stop:
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=parent: non-stop: can't run to main
new FAIL: gdb.base/fortran-sym-case.exp:
new FAIL: gdb.base/frame-args.exp:
new FAIL: gdb.base/frame-selection.exp:
PASS -> FAIL: gdb.base/frame-selection.exp: backtrace at breakpoint
PASS -> FAIL: gdb.base/frame-selection.exp: continue to breakpoint: frame_2
PASS -> FAIL: gdb.base/frame-selection.exp: frame 0
PASS -> FAIL: gdb.base/frame-selection.exp: frame 1
PASS -> FAIL: gdb.base/frame-selection.exp: frame 2
PASS -> FAIL: gdb.base/frame-selection.exp: frame 3
PASS -> FAIL: gdb.base/frame-selection.exp: get_frame_address: frame 0
PASS -> FAIL: gdb.base/frame-selection.exp: get_frame_address: frame 1
PASS -> FAIL: gdb.base/frame-selection.exp: get_frame_address: frame 2
new FAIL: gdb.base/frame-selection.exp: setting breakpoint at frame_2
new FAIL: gdb.base/frameapply.exp:
new FAIL: gdb.base/frameapply.exp: can't run to setup_done
new FAIL: gdb.base/freebpcmd.exp:
PASS -> FAIL: gdb.base/freebpcmd.exp: run program with breakpoint commands
PASS -> FAIL: gdb.base/freebpcmd.exp: send breakpoint commands
PASS -> FAIL: gdb.base/freebpcmd.exp: set breakpoint
new FAIL: gdb.base/fullname.exp:
PASS -> FAIL: gdb.base/fullname.exp: set breakpoint at main - built absolute
PASS -> FAIL: gdb.base/fullname.exp: set breakpoint at main - built other
PASS -> FAIL: gdb.base/fullname.exp: set breakpoint at main - built relative
PASS -> FAIL: gdb.base/fullname.exp: set breakpoint by full path after loading symbols - built absolute
PASS -> FAIL: gdb.base/fullname.exp: set breakpoint by full path after loading symbols - built other
PASS -> FAIL: gdb.base/fullname.exp: set breakpoint by full path after loading symbols - built relative
PASS -> FAIL: gdb.base/fullname.exp: set breakpoint by full path before loading symbols - built absolute
PASS -> FAIL: gdb.base/fullname.exp: set breakpoint by full path before loading symbols - built other
PASS -> FAIL: gdb.base/fullname.exp: set breakpoint by full path before loading symbols - built relative
new FAIL: gdb.base/fullpath-expand.exp:
PASS -> FAIL: gdb.base/fullpath-expand.exp: info source
PASS -> FAIL: gdb.base/fullpath-expand.exp: list func
PASS -> FAIL: gdb.base/fullpath-expand.exp: rbreak XXX/fullpath-expand-func.c:func
new FAIL: gdb.base/func-ptr.exp:
new FAIL: gdb.base/func-ptr.exp: can't run to main
new FAIL: gdb.base/func-ptrs.exp:
new FAIL: gdb.base/funcargs.exp:
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace after alloca
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call6a
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call6b
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call6c
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call6d
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call6e
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call6f
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call6g
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call6h
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call6i
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call6j
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call6k
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call7a
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call7b
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call7c
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call7d
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call7e
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call7f
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call7g
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call7h
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call7i
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call7j
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call7k
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call_after_alloca_subr
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace in indirectly called function
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace through call with trampolines
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call0a
PASS -> FAIL: gdb.base/funcargs.exp: continue to call0b
PASS -> FAIL: gdb.base/funcargs.exp: continue to call0c
PASS -> FAIL: gdb.base/funcargs.exp: continue to call0d
PASS -> FAIL: gdb.base/funcargs.exp: continue to call0e
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call1b
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call1c
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call1d
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call1e
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call2b
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call2c
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call2d
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call2e
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call2f
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call2g
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call2h
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call2i
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call3b
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call3c
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call4b
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call5b
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call6b
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call6c
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call6d
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call6e
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call6f
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call6g
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call6h
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call6i
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call6j
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call6k
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call7b
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call7c
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call7d
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call7e
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call7f
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call7g
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call7h
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call7i
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call7j
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call7k
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to callc1b
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to callc2b
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to callcb
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to callcc
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to callcd
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to callce
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to callcf
new UNRESOLVED: gdb.base/funcargs.exp: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/funcargs.exp: finish from indirectly called function
PASS -> UNRESOLVED: gdb.base/funcargs.exp: finish from marker_call_with_trampolines
PASS -> UNRESOLVED: gdb.base/funcargs.exp: next in localvars_after_alloca
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print *cp
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print *dp
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print *fp
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print *ip
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print *lp
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print *sp
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print *stp
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print *ucp
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print *uip
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print *ulp
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print *unp
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print *usp
PASS -> FAIL: gdb.base/funcargs.exp: print c after run to call0a
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print c after run to call2a
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print c after runto localvars_after_alloca
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print c in call_after_alloca
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print c in localvars_after_alloca
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print c in localvars_in_indirect_call
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print d1 after run to call2a
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print d2 after run to call2a
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print f1 after run to call2a
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print f2 after run to call2a
PASS -> FAIL: gdb.base/funcargs.exp: print i after run to call0a
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print i after run to call2a
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print i after runto localvars_after_alloca
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print i in call_after_alloca
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print i in localvars_after_alloca
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print i in localvars_in_indirect_call
PASS -> FAIL: gdb.base/funcargs.exp: print l after run to call0a
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print l after run to call2a
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print l after runto localvars_after_alloca
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print l in call_after_alloca
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print l in localvars_after_alloca
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print l in localvars_in_indirect_call
PASS -> FAIL: gdb.base/funcargs.exp: print s after run to call0a
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print s after run to call2a
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print s after runto localvars_after_alloca
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print s in call_after_alloca
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print s in localvars_after_alloca
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print s in localvars_in_indirect_call
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print st
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print uc
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print ui
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print ul
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print un
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print us
PASS -> UNRESOLVED: gdb.base/funcargs.exp: recursive passing of structs by value
PASS -> FAIL: gdb.base/funcargs.exp: run to call0a
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call0a
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call0b
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call0c
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call0d
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call0e
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call1a
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call1b
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call1c
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call1d
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call1e
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call2a
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call2b
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call2c
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call2d
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call2e
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call2f
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call2g
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call2h
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call2i
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call3a
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call3b
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call3c
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call4a
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call4b
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call5a
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call5b
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call6a
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call6b
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call6c
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call6d
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call6e
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call6f
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call6g
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call6h
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call6i
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call6j
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call6k
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call7a
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call7b
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call7c
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call7d
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call7e
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call7f
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call7g
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call7h
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call7i
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call7j
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call7k
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at callc1a
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at callc1b
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at callc2a
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at callc2b
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at callca
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at callcb
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at callcc
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at callcd
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at callce
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at callcf
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at hitbottom
PASS -> UNRESOLVED: gdb.base/funcargs.exp: stepping back to main from function called with trampolines
PASS -> UNRESOLVED: gdb.base/funcargs.exp: stepping into function called with trampolines
PASS -> UNRESOLVED: gdb.base/funcargs.exp: stepping into indirectly called function
new FAIL: gdb.base/gcore-buffer-overflow.exp:
new FAIL: gdb.base/gcore-relro-pie.exp:
new FAIL: gdb.base/gcore-relro-pie.exp: can't run to break_here
new FAIL: gdb.base/gcore-relro.exp:
new FAIL: gdb.base/gcore-tls-pie.exp:
new FAIL: gdb.base/gcore-tls-pie.exp: can't run to break_here
new FAIL: gdb.base/gcore.exp:
new FAIL: gdb.base/gdb-caching-proc.exp:
new FAIL: gdb.base/gdb-caching-proc.exp: argv[0] should be available on this target
new FAIL: gdb.base/gdb-caching-proc.exp: break main
new FAIL: gdb.base/gdb-caching-proc.exp: run to main
new FAIL: gdb.base/gdb-sigterm.exp:
PASS -> FAIL: gdb.base/gdb-sigterm.exp: 50 SIGTERM passes
new FAIL: gdb.base/gdb1090.exp:
new FAIL: gdb.base/gdb1090.exp: can't run to main
new FAIL: gdb.base/gdb11530.exp:
new FAIL: gdb.base/gdb11530.exp: run to main
new FAIL: gdb.base/gdb11531.exp:
new FAIL: gdb.base/gdb11531.exp: run to main
new FAIL: gdb.base/gdb1250.exp:
new FAIL: gdb.base/gdb1555.exp:
new FAIL: gdb.base/gdb1555.exp: can't run to main
new FAIL: gdb.base/gdb1821.exp:
new FAIL: gdb.base/gdbvars.exp:
PASS -> FAIL: gdb.base/gdbvars.exp: Set a new convenience variable to a program variable
new FAIL: gdb.base/global-var-nested-by-dso.exp:
new FAIL: gdb.base/gnu-debugdata.exp:
new FAIL: gdb.base/gnu-debugdata.exp: have symtab
new FAIL: gdb.base/gnu_vector.exp:
new FAIL: gdb.base/gnu_vector.exp: runto main
new FAIL: gdb.base/hashline1.exp:
PASS -> FAIL: gdb.base/hashline1.exp: set breakpoint
new FAIL: gdb.base/hashline2.exp:
PASS -> FAIL: gdb.base/hashline2.exp: set breakpoint
new FAIL: gdb.base/hashline3.exp:
PASS -> FAIL: gdb.base/hashline3.exp: set breakpoint
new FAIL: gdb.base/hbreak-in-shr-unsupported.exp:
new FAIL: gdb.base/hbreak-in-shr-unsupported.exp: can't run to main
new FAIL: gdb.base/hbreak-unmapped.exp:
new FAIL: gdb.base/hbreak-unmapped.exp: can't run to main
new FAIL: gdb.base/hbreak.exp:
new FAIL: gdb.base/hbreak2.exp:
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: backtrace from factorial
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: backtrace while in called function
new FAIL: gdb.base/hbreak2.exp: break tests suppressed
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: clear current line has no breakpoint disallowed
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: clear line has no breakpoint disallowed
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: continue to factorial
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: continue to hardware breakpoint at }
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: continue until exit at recursive next test
new UNRESOLVED: gdb.base/hbreak2.exp: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: finish from called function
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: hardware break at factorial
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: hardware break on default location
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: hardware break on non-existent source line
PASS -> FAIL: gdb.base/hbreak2.exp: hardware breakpoint at start of multi line if conditional
PASS -> FAIL: gdb.base/hbreak2.exp: hardware breakpoint at start of multi line while conditional
PASS -> FAIL: gdb.base/hbreak2.exp: hardware breakpoint function
PASS -> FAIL: gdb.base/hbreak2.exp: hardware breakpoint function in file
PASS -> FAIL: gdb.base/hbreak2.exp: hardware breakpoint function, optimized file
PASS -> FAIL: gdb.base/hbreak2.exp: hardware breakpoint info
PASS -> FAIL: gdb.base/hbreak2.exp: hardware breakpoint insertion
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: hardware breakpoint line number
PASS -> FAIL: gdb.base/hbreak2.exp: hardware breakpoint line number in file
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: hardware breakpoint offset +1
PASS -> FAIL: gdb.base/hbreak2.exp: hardware breakpoint quoted function
PASS -> FAIL: gdb.base/hbreak2.exp: hardware breakpoint small function, optimized file
PASS -> FAIL: gdb.base/hbreak2.exp: hardware breakpoint support
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: hardware breakpoint with trailing garbage disallowed
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: hit hardware breakpoint on called function
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: hit silent hardware break bp_location1
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: info silent hardware break bp_location1
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: kill program
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: next over recursive call
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: next to recursive call
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: run until breakpoint set at a line number
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: run until file:function
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: run until file:linenum breakpoint
PASS -> FAIL: gdb.base/hbreak2.exp: run until hardware breakpoint set at small function, optimized file
PASS -> FAIL: gdb.base/hbreak2.exp: run until hardware function breakpoint, optimized file
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: run until quoted breakpoint
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: set breakpoint pending off
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: set convenience variable $foo to 81.5
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: set convenience variable $foo to bp_location11
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: set hardware breakpoint on to-be-called function
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: set hardware breakpoint via convenience variable
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: set hardware breakpoint via non-integer convenience variable disallowed
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: set silent break bp_location1
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: set to-be-silent hardware break bp_location1
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: setting hardware breakpoint at }
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: step onto hardware breakpoint
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: step over hardware breakpoint
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: stopped for silent hardware break bp_location1
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: temporary hardware breakpoint function
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: temporary hardware breakpoint function in file
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: temporary hardware breakpoint info
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: temporary hardware breakpoint line number #1
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: temporary hardware breakpoint line number #2
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: temporary hardware breakpoint line number in file #1
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: temporary hardware breakpoint line number in file #2
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: thread-specific hardware breakpoint on bogus thread ID disallowed
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: thread-specific hardware breakpoint on non-existent thread disallowed
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: until bp_location1
PASS -> FAIL: gdb.base/hbreak2.exp: use `list' to establish default source file
new FAIL: gdb.base/hook-stop.exp: hook-stop kills inferior:
new FAIL: gdb.base/hook-stop.exp: hook-stop kills inferior: can't run to main
new FAIL: gdb.base/hook-stop.exp: hook-stop runs before frame print:
new FAIL: gdb.base/hook-stop.exp: hook-stop runs before frame print: can't run to main
new FAIL: gdb.base/hook-stop.exp: hook-stop runs continue&:
new FAIL: gdb.base/hook-stop.exp: hook-stop runs continue&: can't run to main
new FAIL: gdb.base/hook-stop.exp: hook-stop runs continue:
new FAIL: gdb.base/hook-stop.exp: hook-stop runs continue: can't run to main
new FAIL: gdb.base/hook-stop.exp: hook-stop runs next:
new FAIL: gdb.base/hook-stop.exp: hook-stop runs next: can't run to main
new FAIL: gdb.base/huge.exp:
new FAIL: gdb.base/included.exp:
PASS -> UNRESOLVED: gdb.base/included.exp: list integer
PASS -> FAIL: gdb.base/included.exp: ptype integer
new FAIL: gdb.base/index-cache.exp:
new FAIL: gdb.base/index-cache.exp: test_basic_stuff:
new FAIL: gdb.base/index-cache.exp: test_cache_disabled:
new FAIL: gdb.base/index-cache.exp: test_cache_enabled_hit:
PASS -> FAIL: gdb.base/index-cache.exp: test_cache_enabled_hit: check index-cache stats
new FAIL: gdb.base/index-cache.exp: test_cache_enabled_miss:
PASS -> FAIL: gdb.base/index-cache.exp: test_cache_enabled_miss: at least one file was created
PASS -> FAIL: gdb.base/index-cache.exp: test_cache_enabled_miss: check index-cache stats
PASS -> FAIL: gdb.base/index-cache.exp: test_cache_enabled_miss: expected file is there
new FAIL: gdb.base/infcall-exec.exp:
new FAIL: gdb.base/infcall-input.exp:
new FAIL: gdb.base/infcall-input.exp: couldn't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tc-td:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tc-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tc-tf:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tc-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tc-tld:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tc-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tc:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tc:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-td:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tf:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ti:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ti: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tl:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tl: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tld:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tll:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tll: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ts:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ts: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tdc:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tdc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tc:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-td:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tf:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-ti:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-ti: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tl:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tl: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tld:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tll:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tll: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-ts:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-ts: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tfc:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tfc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-td:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tf:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tld:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ti:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ti: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tl-td:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tl-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tl-tf:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tl-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tl-tld:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tl-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tl:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tl: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tc:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-td:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tf:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-ti:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-ti: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tl:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tl: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tld:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tll:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tll: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-ts:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-ts: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tldc:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tldc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tll-td:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tll-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tll-tf:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tll-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tll-tld:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tll-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tll:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tll: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ts-td:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ts-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ts-tf:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ts-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ts-tld:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ts-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ts:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ts: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tc-td:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tc-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tc-tf:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tc-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tc-tld:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tc-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tc:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-tc:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-tc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-td:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-tf:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-ti:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-ti: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-tl:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-tl: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-tld:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-tll:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-tll: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-ts:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-ts: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tdc:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tdc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tc:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-td:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tf:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-ti:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-ti: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tl:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tl: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tld:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tll:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tll: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-ts:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-ts: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tfc:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tfc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ti-td:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ti-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tf:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tld:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ti:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ti: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tl-td:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tl-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tl-tf:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tl-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tl-tld:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tl-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tl:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tl: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tc:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-td:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tf:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-ti:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-ti: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tl:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tl: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tld:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tll:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tll: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-ts:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-ts: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tldc:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tldc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tll-td:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tll-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tll-tf:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tll-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tll-tld:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tll-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tll:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tll: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ts-td:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ts-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ts-tf:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ts-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ts-tld:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ts-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ts:
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ts: can't run to main
new FAIL: gdb.base/inferior-died.exp:
new FAIL: gdb.base/infnan.exp:
PASS -> FAIL: gdb.base/infnan.exp: print a
PASS -> FAIL: gdb.base/infnan.exp: print b
new FAIL: gdb.base/info-fun.exp: n_flag=0: NO:
new FAIL: gdb.base/info-fun.exp: n_flag=0: NO: can't run to main
new FAIL: gdb.base/info-macros.exp:
new FAIL: gdb.base/info-os.exp:
new FAIL: gdb.base/info-os.exp: cannot run to main
new FAIL: gdb.base/info-proc.exp:
new FAIL: gdb.base/info-program.exp:
new FAIL: gdb.base/info-program.exp: can't run to main
new FAIL: gdb.base/info-shared.exp:
new FAIL: gdb.base/info-target.exp:
PASS -> FAIL: gdb.base/info-target.exp: info target
new FAIL: gdb.base/info-types.exp: l=c++:
new FAIL: gdb.base/info-types.exp: l=c++: can't run to main
new FAIL: gdb.base/info-types.exp: l=c:
new FAIL: gdb.base/info-types.exp: l=c: can't run to main
new FAIL: gdb.base/info-var.exp:
PASS -> FAIL: gdb.base/info-var.exp: info variables
PASS -> FAIL: gdb.base/info-var.exp: info variables -n
PASS -> FAIL: gdb.base/info-var.exp: info variables -n global
new FAIL: gdb.base/info_minsym.exp:
PASS -> FAIL: gdb.base/info_minsym.exp: minsym functions found
PASS -> FAIL: gdb.base/info_minsym.exp: minsym variables found
new FAIL: gdb.base/info_qt.exp:
new FAIL: gdb.base/info_qt.exp: can't run to setup_done
new FAIL: gdb.base/info_sources.exp:
PASS -> FAIL: gdb.base/infoline-reloc-main-from-zero.exp: add-symbol-file
PASS -> FAIL: gdb.base/infoline-reloc-main-from-zero.exp: info line main
new FAIL: gdb.base/infoline.exp:
PASS -> FAIL: gdb.base/infoline.exp: info line infoline.c:18
new FAIL: gdb.base/interp.exp:
PASS -> FAIL: gdb.base/interp.exp: interpreter-exec mi1 "-break-insert main"
PASS -> FAIL: gdb.base/interp.exp: interpreter-exec mi2 "-break-insert main"
PASS -> FAIL: gdb.base/interp.exp: interpreter-exec mi3 "-break-insert main"
new FAIL: gdb.base/interp.exp: run to main
new FAIL: gdb.base/interrupt-daemon.exp:
new FAIL: gdb.base/interrupt-daemon.exp: can't run to daemon_main function
new FAIL: gdb.base/interrupt-noterm.exp:
new FAIL: gdb.base/interrupt-noterm.exp: can't run to main
new FAIL: gdb.base/interrupt.exp:
new FAIL: gdb.base/jit-exec.exp:
new FAIL: gdb.base/jit-exec.exp: can't run to main
PASS -> FAIL: gdb.base/jit-simple.exp: shared: change addr: address changed
new FAIL: gdb.base/jit-simple.exp: shared: change addr: initial run:
PASS -> FAIL: gdb.base/jit-simple.exp: shared: change addr: initial run: get address of __jit_debug_descriptor
PASS -> FAIL: gdb.base/jit-simple.exp: shared: change addr: initial run: maint info breakpoints shows jit breakpoint
PASS -> FAIL: gdb.base/jit-simple.exp: shared: change addr: second run: get address of __jit_debug_descriptor
PASS -> FAIL: gdb.base/jit-simple.exp: shared: change addr: second run: maint info breakpoints shows jit breakpoint
new FAIL: gdb.base/jit-simple.exp: shared: same addr: initial run:
PASS -> FAIL: gdb.base/jit-simple.exp: shared: same addr: initial run: get address of __jit_debug_descriptor
PASS -> FAIL: gdb.base/jit-simple.exp: shared: same addr: initial run: maint info breakpoints shows jit breakpoint
PASS -> FAIL: gdb.base/jit-simple.exp: shared: same addr: second run: get address of __jit_debug_descriptor
PASS -> FAIL: gdb.base/jit-simple.exp: shared: same addr: second run: maint info breakpoints shows jit breakpoint
PASS -> FAIL: gdb.base/jit-simple.exp: standalone: change addr: address changed
new FAIL: gdb.base/jit-simple.exp: standalone: change addr: initial run:
PASS -> FAIL: gdb.base/jit-simple.exp: standalone: change addr: initial run: get address of __jit_debug_descriptor
PASS -> FAIL: gdb.base/jit-simple.exp: standalone: change addr: initial run: maint info breakpoints shows jit breakpoint
PASS -> FAIL: gdb.base/jit-simple.exp: standalone: change addr: second run: get address of __jit_debug_descriptor
PASS -> FAIL: gdb.base/jit-simple.exp: standalone: change addr: second run: maint info breakpoints shows jit breakpoint
new FAIL: gdb.base/jit-simple.exp: standalone: same addr: initial run:
PASS -> FAIL: gdb.base/jit-simple.exp: standalone: same addr: initial run: get address of __jit_debug_descriptor
PASS -> FAIL: gdb.base/jit-simple.exp: standalone: same addr: initial run: maint info breakpoints shows jit breakpoint
PASS -> FAIL: gdb.base/jit-simple.exp: standalone: same addr: second run: get address of __jit_debug_descriptor
PASS -> FAIL: gdb.base/jit-simple.exp: standalone: same addr: second run: maint info breakpoints shows jit breakpoint
new FAIL: gdb.base/jit-so.exp: one_jit_test-1:
new FAIL: gdb.base/jit-so.exp: one_jit_test-1: can't run to main
new FAIL: gdb.base/jit-so.exp: one_jit_test-2:
new FAIL: gdb.base/jit-so.exp: one_jit_test-2: can't run to main
new FAIL: gdb.base/jit.exp: PIE: one_jit_test-1:
new FAIL: gdb.base/jit.exp: PIE: one_jit_test-1: can't run to main
new FAIL: gdb.base/jit.exp: one_jit_test-1:
new FAIL: gdb.base/jit.exp: one_jit_test-1: can't run to main
new FAIL: gdb.base/jit.exp: one_jit_test-2:
new FAIL: gdb.base/jit.exp: one_jit_test-2: can't run to main
new FAIL: gdb.base/jump.exp:
new FAIL: gdb.base/kill-after-signal.exp:
new FAIL: gdb.base/killed-outside.exp:
new FAIL: gdb.base/killed-outside.exp: continue:
new FAIL: gdb.base/killed-outside.exp: info threads:
new FAIL: gdb.base/killed-outside.exp: registers:
new FAIL: gdb.base/killed-outside.exp: stepi:
new FAIL: gdb.base/label.exp:
new FAIL: gdb.base/label.exp: label tests suppressed
new FAIL: gdb.base/langs.exp:
PASS -> FAIL: gdb.base/langs.exp: break on nonexistent function in langs.exp
new FAIL: gdb.base/large-frame.exp: optimize=-O0:
new FAIL: gdb.base/large-frame.exp: optimize=-O1:
new FAIL: gdb.base/large-frame.exp: optimize=-O2:
new FAIL: gdb.base/ldbl_e308.exp:
new FAIL: gdb.base/line-symtabs.exp:
new FAIL: gdb.base/line-symtabs.exp: can't run to main
new FAIL: gdb.base/lineinc.exp:
PASS -> FAIL: gdb.base/lineinc.exp: tolerate macro info with multiple #inclusions per line
new FAIL: gdb.base/linespecs.exp:
PASS -> FAIL: gdb.base/linespecs.exp: list c:/foo/bar/baz.c
PASS -> FAIL: gdb.base/linespecs.exp: list c:/foo/bar/baz.c:1
PASS -> FAIL: gdb.base/linespecs.exp: list fooc:/foo/bar/baz.c
PASS -> FAIL: gdb.base/linespecs.exp: list fooc:/foo/bar/baz.c:1
new FAIL: gdb.base/list-ambiguous.exp:
PASS -> FAIL: gdb.base/list-ambiguous.exp: edit ambiguous_fun
PASS -> FAIL: gdb.base/list-ambiguous.exp: edit ambiguous_var
PASS -> FAIL: gdb.base/list-ambiguous.exp: list ,ambiguous_fun
PASS -> FAIL: gdb.base/list-ambiguous.exp: list ,ambiguous_var
PASS -> FAIL: gdb.base/list-ambiguous.exp: list ambiguous_fun
PASS -> FAIL: gdb.base/list-ambiguous.exp: list ambiguous_fun,
PASS -> FAIL: gdb.base/list-ambiguous.exp: list ambiguous_fun,ambiguous_fun
PASS -> FAIL: gdb.base/list-ambiguous.exp: list ambiguous_fun,main
PASS -> FAIL: gdb.base/list-ambiguous.exp: list ambiguous_var
PASS -> FAIL: gdb.base/list-ambiguous.exp: list ambiguous_var,
PASS -> FAIL: gdb.base/list-ambiguous.exp: list ambiguous_var,ambiguous_var
PASS -> FAIL: gdb.base/list-ambiguous.exp: list ambiguous_var,main
PASS -> FAIL: gdb.base/list-ambiguous.exp: list main,ambiguous_fun
PASS -> FAIL: gdb.base/list-ambiguous.exp: list main,ambiguous_var
new FAIL: gdb.base/list-missing-source.exp:
new FAIL: gdb.base/list-missing-source.exp: can't run to main
new FAIL: gdb.base/list.exp:
PASS -> FAIL: gdb.base/list.exp: beginning of file error after "list -" command
PASS -> FAIL: gdb.base/list.exp: end of file error after "list" command
PASS -> FAIL: gdb.base/list.exp: end of file error after using 'return' to repeat the list command
PASS -> FAIL: gdb.base/list.exp: first use of "list +INVALID"
PASS -> FAIL: gdb.base/list.exp: first use of "list -INVALID"
PASS -> FAIL: gdb.base/list.exp: forward-search 6789
PASS -> FAIL: gdb.base/list.exp: list 'list0.c:main'
PASS -> FAIL: gdb.base/list.exp: list ,5
new FAIL: gdb.base/list.exp: list - after stop: 10, 10:
new FAIL: gdb.base/list.exp: list - after stop: 10, 10: can't run to main
new FAIL: gdb.base/list.exp: list - after stop: 10, 1:
new FAIL: gdb.base/list.exp: list - after stop: 10, 1: can't run to main
new FAIL: gdb.base/list.exp: list - after stop: 10, 2:
new FAIL: gdb.base/list.exp: list - after stop: 10, 2: can't run to main
new FAIL: gdb.base/list.exp: list - after stop: 10, 3:
new FAIL: gdb.base/list.exp: list - after stop: 10, 3: can't run to main
PASS -> FAIL: gdb.base/list.exp: list 1
new FAIL: gdb.base/list.exp: list 1-7
new FAIL: gdb.base/list.exp: list 15-24
new FAIL: gdb.base/list.exp: list 18-27
new FAIL: gdb.base/list.exp: list 25-34
new FAIL: gdb.base/list.exp: list 35-42
new FAIL: gdb.base/list.exp: list 8-17
new FAIL: gdb.base/list.exp: list after stop: 1, 10:
new FAIL: gdb.base/list.exp: list after stop: 1, 10: can't run to main
new FAIL: gdb.base/list.exp: list after stop: 10, 10:
new FAIL: gdb.base/list.exp: list after stop: 10, 10: can't run to main
new FAIL: gdb.base/list.exp: list after stop: 10, 1:
new FAIL: gdb.base/list.exp: list after stop: 10, 1: can't run to main
new FAIL: gdb.base/list.exp: list after stop: 10, 2:
new FAIL: gdb.base/list.exp: list after stop: 10, 2: can't run to main
new FAIL: gdb.base/list.exp: list after stop: 10, 3:
new FAIL: gdb.base/list.exp: list after stop: 10, 3: can't run to main
PASS -> FAIL: gdb.base/list.exp: list default lines around main
PASS -> FAIL: gdb.base/list.exp: list filename:function; nonexistant file
PASS -> FAIL: gdb.base/list.exp: list filename:function; nonexistant function
PASS -> FAIL: gdb.base/list.exp: list function in include file
PASS -> FAIL: gdb.base/list.exp: list function in source file 1
PASS -> FAIL: gdb.base/list.exp: list function in source file 2
PASS -> FAIL: gdb.base/list.exp: list line 1 in include file
PASS -> FAIL: gdb.base/list.exp: list line 1 with listsize 1
PASS -> FAIL: gdb.base/list.exp: list line 1 with listsize 100
PASS -> FAIL: gdb.base/list.exp: list line 1 with listsize 2
PASS -> FAIL: gdb.base/list.exp: list line 1 with listsize 3
PASS -> FAIL: gdb.base/list.exp: list line 1 with listsize 4
PASS -> FAIL: gdb.base/list.exp: list line 1 with unlimited listsize
PASS -> FAIL: gdb.base/list.exp: list line 10 with listsize 100
PASS -> FAIL: gdb.base/list.exp: list line 2 with listsize 1
PASS -> FAIL: gdb.base/list.exp: list line 2 with listsize 2
PASS -> FAIL: gdb.base/list.exp: list line 2 with listsize 3
PASS -> FAIL: gdb.base/list.exp: list line 2 with listsize 4
PASS -> FAIL: gdb.base/list.exp: list line 3 with listsize 2
PASS -> FAIL: gdb.base/list.exp: list line 3 with listsize 3
PASS -> FAIL: gdb.base/list.exp: list line 3 with listsize 4
PASS -> FAIL: gdb.base/list.exp: list line 4 with listsize 4
new FAIL: gdb.base/list.exp: list list.c:10
new FAIL: gdb.base/list.exp: list list0.c:1
new FAIL: gdb.base/list.exp: list list0.c:10
new FAIL: gdb.base/list.exp: list list0.c:33
new FAIL: gdb.base/list.exp: list list0.c:main
new FAIL: gdb.base/list.exp: list list0.c:unused
new FAIL: gdb.base/list.exp: list list0.h:foo
new FAIL: gdb.base/list.exp: list list1.c:1
new FAIL: gdb.base/list.exp: list list1.c:12
new FAIL: gdb.base/list.exp: list list1.c:bar
new FAIL: gdb.base/list.exp: list list1.c:unused
PASS -> FAIL: gdb.base/list.exp: list long_line
PASS -> FAIL: gdb.base/list.exp: list message for lines past EOF
PASS -> FAIL: gdb.base/list.exp: list range, must be same files
PASS -> FAIL: gdb.base/list.exp: list range; both bounds past EOF
PASS -> FAIL: gdb.base/list.exp: list range; filename:line1,filename:line2
PASS -> FAIL: gdb.base/list.exp: list range; line1,line2
PASS -> FAIL: gdb.base/list.exp: list range; upper bound past EOF
PASS -> FAIL: gdb.base/list.exp: reverse-search 67
PASS -> FAIL: gdb.base/list.exp: reverse-search 6789
PASS -> FAIL: gdb.base/list.exp: search 4321
PASS -> FAIL: gdb.base/list.exp: search 6789
PASS -> FAIL: gdb.base/list.exp: second use of "list +INVALID"
PASS -> FAIL: gdb.base/list.exp: second use of "list -INVALID"
PASS -> UNRESOLVED: gdb.base/list.exp: setting listsize to 10 #7
new FAIL: gdb.base/load-command.exp:
new FAIL: gdb.base/load-command.exp: can't run to main
new FAIL: gdb.base/logical.exp:
new FAIL: gdb.base/long-inferior-output.exp:
new FAIL: gdb.base/long-inferior-output.exp: run to main
new FAIL: gdb.base/long_long.exp:
new FAIL: gdb.base/long_long.exp: run to known_types
new FAIL: gdb.base/longest-types.exp:
PASS -> FAIL: gdb.base/longest-types.exp: print &f->buf
new FAIL: gdb.base/longjmp.exp:
new FAIL: gdb.base/longjmp.exp: can't run to main
new FAIL: gdb.base/macscp.exp:
PASS -> FAIL: gdb.base/macscp.exp: info macro FROM_COMMANDLINE
PASS -> FAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp2_2'
PASS -> FAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp3_2'
PASS -> FAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp_4_2_from_macscp2'
KFAIL -> FAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp_4_2_from_macscp3'
PASS -> FAIL: gdb.base/macscp.exp: info macro WHERE after `list main'
PASS -> FAIL: gdb.base/macscp.exp: info macro __FILE__ before running
PASS -> FAIL: gdb.base/macscp.exp: info macro __LINE__ before running
PASS -> FAIL: gdb.base/macscp.exp: list macscp4_2_from_macscp2
PASS -> FAIL: gdb.base/macscp.exp: list macscp4_2_from_macscp3
new FAIL: gdb.base/macscp.exp: macro tests suppressed: couldn't run to main
new FAIL: gdb.base/macscp.exp: test macro information
new FAIL: gdb.base/maint.exp:
PASS -> UNRESOLVED: gdb.base/maint.exp: check maint info sections output
PASS -> FAIL: gdb.base/maint.exp: maint info breakpoints
PASS -> FAIL: gdb.base/maint.exp: maint info line-table w/o a file name
PASS -> FAIL: gdb.base/maint.exp: maint info line-table with filename of current symtab
PASS -> FAIL: gdb.base/maint.exp: maint info line-table with filename of symtab that is not current
PASS -> FAIL: gdb.base/maint.exp: maint info sections .text
PASS -> FAIL: gdb.base/maint.exp: maint info sections CODE
PASS -> FAIL: gdb.base/maint.exp: maint info sections DATA
PASS -> FAIL: gdb.base/maint.exp: maint print msymbols, absolute pathname
PASS -> FAIL: gdb.base/maint.exp: maint print msymbols, relative pathname
PASS -> FAIL: gdb.base/maint.exp: maint print objfiles: header
PASS -> FAIL: gdb.base/maint.exp: maint print objfiles: psymtabs
PASS -> FAIL: gdb.base/maint.exp: maint print objfiles: symtabs
new FAIL: gdb.base/maint.exp: maint print psymbols -pc
new FAIL: gdb.base/maint.exp: maint print psymbols -source
PASS -> FAIL: gdb.base/maint.exp: maint print statistics
PASS -> FAIL: gdb.base/maint.exp: maint print symbols -pc
PASS -> FAIL: gdb.base/maint.exp: maint print symbols -source
PASS -> FAIL: gdb.base/maint.exp: maint print type
PASS -> FAIL: gdb.base/maint.exp: mt expand-symtabs
new FAIL: gdb.base/max-depth.exp: l=c++:
new FAIL: gdb.base/max-depth.exp: l=c++: can't run to main
new FAIL: gdb.base/max-depth.exp: l=c:
new FAIL: gdb.base/max-depth.exp: l=c: can't run to main
new FAIL: gdb.base/max-value-size.exp:
new FAIL: gdb.base/max-value-size.exp: can't run to main
new FAIL: gdb.base/memattr.exp:
PASS -> FAIL: gdb.base/memattr.exp: create mem region 1
PASS -> FAIL: gdb.base/memattr.exp: create mem region 2
PASS -> FAIL: gdb.base/memattr.exp: create mem region 3
PASS -> FAIL: gdb.base/memattr.exp: create mem region 4
PASS -> FAIL: gdb.base/memattr.exp: create mem region 5
PASS -> FAIL: gdb.base/memattr.exp: delete mem 1
PASS -> FAIL: gdb.base/memattr.exp: delete mem 2 4
PASS -> FAIL: gdb.base/memattr.exp: disable mem 1
PASS -> FAIL: gdb.base/memattr.exp: disable mem 2 4
PASS -> FAIL: gdb.base/memattr.exp: enable mem 1
PASS -> FAIL: gdb.base/memattr.exp: enable mem 2-4
new FAIL: gdb.base/memattr.exp: get address of mem1
new FAIL: gdb.base/memattr.exp: get address of mem2
new FAIL: gdb.base/memattr.exp: get address of mem3
new FAIL: gdb.base/memattr.exp: get address of mem4
new FAIL: gdb.base/memattr.exp: get address of mem5
new FAIL: gdb.base/memattr.exp: get end of mem1
new FAIL: gdb.base/memattr.exp: get end of mem2
new FAIL: gdb.base/memattr.exp: get end of mem3
new FAIL: gdb.base/memattr.exp: get end of mem4
new FAIL: gdb.base/memattr.exp: get end of mem5
PASS -> FAIL: gdb.base/memattr.exp: info mem
PASS -> FAIL: gdb.base/memattr.exp: mem 1 to 5 were disabled
PASS -> FAIL: gdb.base/memattr.exp: mem 1 to 5 were enabled
PASS -> FAIL: gdb.base/memattr.exp: mem 1 was deleted
PASS -> FAIL: gdb.base/memattr.exp: mem 1 was disabled
PASS -> FAIL: gdb.base/memattr.exp: mem 1 was enabled
PASS -> FAIL: gdb.base/memattr.exp: mem 2 and 4 were deleted
PASS -> FAIL: gdb.base/memattr.exp: mem 2 and 4 were disabled
PASS -> FAIL: gdb.base/memattr.exp: mem 2-4 were deleted
PASS -> FAIL: gdb.base/memattr.exp: mem 2-4 were enabled
PASS -> FAIL: gdb.base/memattr.exp: mem1 can be written
PASS -> FAIL: gdb.base/memattr.exp: mem1 cannot be read
PASS -> FAIL: gdb.base/memattr.exp: mem2 can be read
PASS -> FAIL: gdb.base/memattr.exp: mem2 cannot be written
new FAIL: gdb.base/mips_pro.exp:
new FAIL: gdb.base/miscexprs.exp:
new FAIL: gdb.base/moribund-step.exp:
new FAIL: gdb.base/msym-lang.exp:
PASS -> FAIL: gdb.base/msym-lang.exp: info func foo
new FAIL: gdb.base/multi-forks.exp:
PASS -> FAIL: gdb.base/multi-forks.exp: detach 2
PASS -> FAIL: gdb.base/multi-forks.exp: detach 3
PASS -> FAIL: gdb.base/multi-forks.exp: detach 4
PASS -> FAIL: gdb.base/multi-forks.exp: detach 5
PASS -> FAIL: gdb.base/multi-forks.exp: did kill 10
PASS -> FAIL: gdb.base/multi-forks.exp: did kill 11
PASS -> FAIL: gdb.base/multi-forks.exp: did kill 12
PASS -> FAIL: gdb.base/multi-forks.exp: did kill 13
PASS -> FAIL: gdb.base/multi-forks.exp: did kill 14
PASS -> FAIL: gdb.base/multi-forks.exp: did kill 15
PASS -> FAIL: gdb.base/multi-forks.exp: did kill 16
PASS -> FAIL: gdb.base/multi-forks.exp: did kill 6
PASS -> FAIL: gdb.base/multi-forks.exp: did kill 7
PASS -> FAIL: gdb.base/multi-forks.exp: did kill 8
PASS -> FAIL: gdb.base/multi-forks.exp: did kill 9
PASS -> FAIL: gdb.base/multi-forks.exp: follow child, print pids
PASS -> FAIL: gdb.base/multi-forks.exp: follow parent, print pids
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 1
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 10
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 11
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 12
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 13
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 14
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 15
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 2
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 3
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 4
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 5
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 6
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 7
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 8
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 9
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 1
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 10
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 11
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 12
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 13
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 14
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 15
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 16
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 2
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 3
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 4
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 5
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 6
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 7
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 8
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 9
PASS -> FAIL: gdb.base/multi-forks.exp: kill 10
PASS -> FAIL: gdb.base/multi-forks.exp: kill 11
PASS -> FAIL: gdb.base/multi-forks.exp: kill 12
PASS -> FAIL: gdb.base/multi-forks.exp: kill 13
PASS -> FAIL: gdb.base/multi-forks.exp: kill 14
PASS -> FAIL: gdb.base/multi-forks.exp: kill 15
PASS -> FAIL: gdb.base/multi-forks.exp: kill 16
PASS -> FAIL: gdb.base/multi-forks.exp: kill 6
PASS -> FAIL: gdb.base/multi-forks.exp: kill 7
PASS -> FAIL: gdb.base/multi-forks.exp: kill 8
PASS -> FAIL: gdb.base/multi-forks.exp: kill 9
PASS -> FAIL: gdb.base/multi-forks.exp: restart final
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 1
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 10
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 11
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 12
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 13
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 14
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 15
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 16
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 2
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 3
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 4
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 5
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 6
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 7
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 8
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 9
new FAIL: gdb.base/multi-forks.exp: setting breakpoint at 40
new FAIL: gdb.base/nested-addr.exp:
new FAIL: gdb.base/nested-subp1.exp:
new FAIL: gdb.base/nested-subp2.exp:
new FAIL: gdb.base/nested-subp3.exp:
new FAIL: gdb.base/new-ui-echo.exp: extra console as driver:
PASS -> UNRESOLVED: gdb.base/new-ui-echo.exp: extra console as driver: breakpoint hit reported on main console too
PASS -> FAIL: gdb.base/new-ui-echo.exp: extra console as driver: run to breakpoint on extra console
PASS -> FAIL: gdb.base/new-ui-echo.exp: extra console as driver: set breakpoint using extra console
new FAIL: gdb.base/new-ui-echo.exp: main console as driver:
PASS -> FAIL: gdb.base/new-ui-echo.exp: main console as driver: breakpoint hit reported on extra console too
PASS -> FAIL: gdb.base/new-ui-echo.exp: main console as driver: next on extra console
PASS -> FAIL: gdb.base/new-ui-echo.exp: main console as driver: run to breakpoint on main console
PASS -> FAIL: gdb.base/new-ui-echo.exp: main console as driver: set breakpoint using main console
new FAIL: gdb.base/new-ui.exp: do_test:
new FAIL: gdb.base/new-ui.exp: do_test_invalid_args:
new FAIL: gdb.base/new-ui.exp: do_test_invalid_args: could not run to main
new FAIL: gdb.base/nextoverexit.exp:
new FAIL: gdb.base/nodebug.exp:
new FAIL: gdb.base/nofield.exp:
PASS -> FAIL: gdb.base/nofield.exp: ptype struct empty
PASS -> FAIL: gdb.base/nofield.exp: ptype struct not_empty
PASS -> FAIL: gdb.base/nofield.exp: ptype union empty_union
new FAIL: gdb.base/noreturn-finish.exp:
new FAIL: gdb.base/noreturn-return.exp:
new FAIL: gdb.base/offsets.exp:
PASS -> FAIL: gdb.base/offsets.exp: print &big_struct test
new FAIL: gdb.base/offsets.exp: print &big_struct.second test
new FAIL: gdb.base/opaque.exp:
PASS -> FAIL: gdb.base/opaque.exp: ptype on opaque struct instance
PASS -> FAIL: gdb.base/opaque.exp: ptype on opaque struct pointer
PASS -> FAIL: gdb.base/opaque.exp: ptype on opaque struct tagname
PASS -> FAIL: gdb.base/opaque.exp: whatis on opaque struct instance
PASS -> FAIL: gdb.base/opaque.exp: whatis on opaque struct pointer
new FAIL: gdb.base/options.exp: test-backtrace:
new FAIL: gdb.base/options.exp: test-backtrace: cannot run to main
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: faas -
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: faas -- -
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: faas -foo
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: frame apply 1 -
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: frame apply 1 -foo
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: frame apply all -
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: frame apply all -foo
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: frame apply level 0 -
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: frame apply level 0 -foo
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: frame apply level 0-
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: no-trailing-space: faas --
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: no-trailing-space: frame apply 1 --
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: no-trailing-space: frame apply all --
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: no-trailing-space: frame apply level 0 --
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: faas --
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: frame apply 1 --
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: frame apply all --
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: frame apply level 0 --
new FAIL: gdb.base/options.exp: test-print:
new FAIL: gdb.base/options.exp: test-print: cannot run to main
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: thread apply 1 -foo
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: thread apply all -foo
new FAIL: gdb.base/paginate-after-ctrl-c-running.exp: ctrlc target running:
new FAIL: gdb.base/paginate-after-ctrl-c-running.exp: ctrlc target running: can't run to main
new FAIL: gdb.base/paginate-bg-execution.exp: cancel with ctrl-c:
new FAIL: gdb.base/paginate-bg-execution.exp: cancel with ctrl-c: can't run to main
new FAIL: gdb.base/paginate-bg-execution.exp: cancel with quit:
new FAIL: gdb.base/paginate-bg-execution.exp: cancel with quit: can't run to main
new FAIL: gdb.base/paginate-bg-execution.exp: paginate:
new FAIL: gdb.base/paginate-bg-execution.exp: paginate: can't run to main
new FAIL: gdb.base/paginate-execution-startup.exp: probe support: run to main
new FAIL: gdb.base/paginate-inferior-exit.exp: paginate:
new FAIL: gdb.base/paginate-inferior-exit.exp: paginate: can't run to main
new FAIL: gdb.base/pc-fp.exp:
new UNRESOLVED: gdb.base/pending.exp:
PASS -> FAIL: gdb.base/pending.exp: breakpoint function
PASS -> FAIL: gdb.base/pending.exp: continue to resolved breakpoint 1
PASS -> FAIL: gdb.base/pending.exp: continue to resolved breakpoint 2
PASS -> FAIL: gdb.base/pending.exp: continue to resolved breakpoint 3
PASS -> FAIL: gdb.base/pending.exp: multiple pending breakpoints
PASS -> FAIL: gdb.base/pending.exp: multiple pending breakpoints 2
PASS -> FAIL: gdb.base/pending.exp: pending disabled
PASS -> FAIL: gdb.base/pending.exp: pending disabled plus commands
PASS -> FAIL: gdb.base/pending.exp: pending plus condition
PASS -> FAIL: gdb.base/pending.exp: pending plus real breakpoint info
PASS -> FAIL: gdb.base/pending.exp: run to resolved breakpoint 1
PASS -> FAIL: gdb.base/pending.exp: running to main
new FAIL: gdb.base/pending.exp: setting breakpoint at main
PASS -> UNRESOLVED: gdb.base/pending.exp: verify pending breakpoint after restart
new FAIL: gdb.base/permissions.exp:
new FAIL: gdb.base/pie-fork.exp:
new FAIL: gdb.base/pie-fork.exp: test_detach_on_fork_follow_child:
new FAIL: gdb.base/pie-fork.exp: test_detach_on_fork_follow_child: can't run to main
PASS -> FAIL: gdb.base/pie-fork.exp: test_detach_on_fork_follow_child: continue
new FAIL: gdb.base/pie-fork.exp: test_detach_on_fork_follow_parent:
new FAIL: gdb.base/pie-fork.exp: test_detach_on_fork_follow_parent: can't run to main
PASS -> FAIL: gdb.base/pie-fork.exp: test_detach_on_fork_follow_parent: continue
new FAIL: gdb.base/pie-fork.exp: test_no_detach_on_fork:
new FAIL: gdb.base/pie-fork.exp: test_no_detach_on_fork: can't run to main
PASS -> FAIL: gdb.base/pie-fork.exp: test_no_detach_on_fork: continue
new FAIL: gdb.base/pointers.exp:
new FAIL: gdb.base/pr10179.exp:
new FAIL: gdb.base/pr11022.exp:
new FAIL: gdb.base/pr11022.exp: can't run to main
new FAIL: gdb.base/pretty-print.exp:
new FAIL: gdb.base/print-file-var.exp: lang=c++: hidden=0: dlopen=0: version_id_main=0:
new FAIL: gdb.base/print-file-var.exp: lang=c++: hidden=0: dlopen=0: version_id_main=1:
new FAIL: gdb.base/print-file-var.exp: lang=c++: hidden=0: dlopen=1: version_id_main=0:
new FAIL: gdb.base/print-file-var.exp: lang=c++: hidden=0: dlopen=1: version_id_main=1:
new FAIL: gdb.base/print-file-var.exp: lang=c++: hidden=1: dlopen=0: version_id_main=0:
new FAIL: gdb.base/print-file-var.exp: lang=c++: hidden=1: dlopen=0: version_id_main=1:
new FAIL: gdb.base/print-file-var.exp: lang=c++: hidden=1: dlopen=1: version_id_main=0:
new FAIL: gdb.base/print-file-var.exp: lang=c++: hidden=1: dlopen=1: version_id_main=1:
new FAIL: gdb.base/print-file-var.exp: lang=c: hidden=0: dlopen=0: version_id_main=0:
new FAIL: gdb.base/print-file-var.exp: lang=c: hidden=0: dlopen=0: version_id_main=1:
new FAIL: gdb.base/print-file-var.exp: lang=c: hidden=0: dlopen=1: version_id_main=0:
new FAIL: gdb.base/print-file-var.exp: lang=c: hidden=0: dlopen=1: version_id_main=1:
new FAIL: gdb.base/print-file-var.exp: lang=c: hidden=1: dlopen=0: version_id_main=0:
new FAIL: gdb.base/print-file-var.exp: lang=c: hidden=1: dlopen=0: version_id_main=1:
new FAIL: gdb.base/print-file-var.exp: lang=c: hidden=1: dlopen=1: version_id_main=0:
new FAIL: gdb.base/print-file-var.exp: lang=c: hidden=1: dlopen=1: version_id_main=1:
new FAIL: gdb.base/print-symbol-loading.exp:
new FAIL: gdb.base/printcmds.exp:
new FAIL: gdb.base/printcmds.exp: can't run to main
PASS -> FAIL: gdb.base/printcmds.exp: p ctable1[120] #1
new FAIL: gdb.base/prologue-include.exp:
PASS -> FAIL: gdb.base/prologue-include.exp: breakpoint main
new FAIL: gdb.base/prologue.exp:
new FAIL: gdb.base/psymtab.exp:
PASS -> FAIL: gdb.base/psymtab.exp: Don't search past end of psymtab.
new FAIL: gdb.base/ptr-typedef.exp:
PASS -> FAIL: gdb.base/ptr-typedef.exp: print foo_ptr
PASS -> FAIL: gdb.base/ptr-typedef.exp: print foz_ptr
new FAIL: gdb.base/ptype-offsets.exp:
PASS -> FAIL: gdb.base/ptype-offsets.exp: ptype /TMo struct abc
PASS -> FAIL: gdb.base/ptype-offsets.exp: ptype /o struct abc
PASS -> FAIL: gdb.base/ptype-offsets.exp: ptype /o struct asd
PASS -> FAIL: gdb.base/ptype-offsets.exp: ptype /o struct poi
PASS -> FAIL: gdb.base/ptype-offsets.exp: ptype /o struct pqr
PASS -> FAIL: gdb.base/ptype-offsets.exp: ptype /o struct tyu
PASS -> FAIL: gdb.base/ptype-offsets.exp: ptype /o uint8_t
PASS -> FAIL: gdb.base/ptype-offsets.exp: ptype /o union qwe
PASS -> FAIL: gdb.base/ptype-offsets.exp: ptype /oTM struct abc
PASS -> FAIL: gdb.base/ptype-offsets.exp: ptype/o static_member
PASS -> FAIL: gdb.base/ptype-offsets.exp: whatis /o asd
new FAIL: gdb.base/ptype.exp:
PASS -> FAIL: gdb.base/ptype.exp: printing typedef'd struct
PASS -> FAIL: gdb.base/ptype.exp: printing typedef'd union
PASS -> FAIL: gdb.base/ptype.exp: ptype fffptr
PASS -> FAIL: gdb.base/ptype.exp: ptype ffptr
PASS -> FAIL: gdb.base/ptype.exp: ptype foo typedef after first list of charfoo
PASS -> FAIL: gdb.base/ptype.exp: ptype foo typedef after first list of intfoo
PASS -> FAIL: gdb.base/ptype.exp: ptype foo typedef after second list of charfoo
PASS -> FAIL: gdb.base/ptype.exp: ptype foo typedef after second list of intfoo
PASS -> FAIL: gdb.base/ptype.exp: ptype fptr
PASS -> FAIL: gdb.base/ptype.exp: ptype fptr2
PASS -> UNRESOLVED: gdb.base/ptype.exp: ptype func_type
PASS -> FAIL: gdb.base/ptype.exp: ptype inner int
PASS -> FAIL: gdb.base/ptype.exp: ptype inner structure
PASS -> FAIL: gdb.base/ptype.exp: ptype inner union
PASS -> FAIL: gdb.base/ptype.exp: ptype int
PASS -> FAIL: gdb.base/ptype.exp: ptype linked list structure
PASS -> FAIL: gdb.base/ptype.exp: ptype linked list union
PASS -> FAIL: gdb.base/ptype.exp: ptype misordered enumeration
PASS -> FAIL: gdb.base/ptype.exp: ptype named enumeration
PASS -> FAIL: gdb.base/ptype.exp: ptype named enumeration member
PASS -> FAIL: gdb.base/ptype.exp: ptype named typedef'd enumf'd enum
PASS -> FAIL: gdb.base/ptype.exp: ptype nested structure
PASS -> FAIL: gdb.base/ptype.exp: ptype nested structure #2
PASS -> FAIL: gdb.base/ptype.exp: ptype nested union
PASS -> FAIL: gdb.base/ptype.exp: ptype new_fptr
PASS -> FAIL: gdb.base/ptype.exp: ptype old_fptr
PASS -> FAIL: gdb.base/ptype.exp: ptype outer int
PASS -> FAIL: gdb.base/ptype.exp: ptype outer structure
PASS -> FAIL: gdb.base/ptype.exp: ptype pv_char_array
PASS -> FAIL: gdb.base/ptype.exp: ptype short
PASS -> FAIL: gdb.base/ptype.exp: ptype structure
PASS -> FAIL: gdb.base/ptype.exp: ptype t_char_array
PASS -> FAIL: gdb.base/ptype.exp: ptype the_highest
PASS -> FAIL: gdb.base/ptype.exp: ptype union
PASS -> FAIL: gdb.base/ptype.exp: ptype unnamed enumeration
PASS -> FAIL: gdb.base/ptype.exp: ptype unnamed enumeration member
PASS -> FAIL: gdb.base/ptype.exp: ptype unnamed enumeration member #2
PASS -> FAIL: gdb.base/ptype.exp: ptype unnamed typedef'd enumeration
PASS -> FAIL: gdb.base/ptype.exp: ptype v_struct1->v_float_member
PASS -> FAIL: gdb.base/ptype.exp: ptype v_struct1.v_float_member
PASS -> FAIL: gdb.base/ptype.exp: ptype v_t_struct_p->v_float_member
PASS -> FAIL: gdb.base/ptype.exp: ptype v_t_struct_p.v_float_member
PASS -> FAIL: gdb.base/ptype.exp: ptype xptr
PASS -> UNRESOLVED: gdb.base/ptype.exp: whatis unnamed typedef'd enum
new FAIL: gdb.base/quit-live.exp: appear_how=run: extra_inferior=0: quit_how=quit:
new FAIL: gdb.base/quit-live.exp: appear_how=run: extra_inferior=0: quit_how=quit: can't run to main
new FAIL: gdb.base/quit-live.exp: appear_how=run: extra_inferior=0: quit_how=sighup:
new FAIL: gdb.base/quit-live.exp: appear_how=run: extra_inferior=0: quit_how=sighup: can't run to main
new FAIL: gdb.base/quit-live.exp: appear_how=run: extra_inferior=0: quit_how=sigterm:
new FAIL: gdb.base/quit-live.exp: appear_how=run: extra_inferior=0: quit_how=sigterm: can't run to main
new FAIL: gdb.base/quit-live.exp: appear_how=run: extra_inferior=1: quit_how=quit:
new FAIL: gdb.base/quit-live.exp: appear_how=run: extra_inferior=1: quit_how=quit: can't run to main
new FAIL: gdb.base/quit-live.exp: appear_how=run: extra_inferior=1: quit_how=sighup:
new FAIL: gdb.base/quit-live.exp: appear_how=run: extra_inferior=1: quit_how=sighup: can't run to main
new FAIL: gdb.base/quit-live.exp: appear_how=run: extra_inferior=1: quit_how=sigterm:
new FAIL: gdb.base/quit-live.exp: appear_how=run: extra_inferior=1: quit_how=sigterm: can't run to main
new FAIL: gdb.base/random-signal.exp:
new FAIL: gdb.base/random-signal.exp: run:
new FAIL: gdb.base/randomize.exp:
new FAIL: gdb.base/range-stepping.exp:
new FAIL: gdb.base/range-stepping.exp: can't run to main
new FAIL: gdb.base/readline-ask.exp:
PASS -> FAIL: gdb.base/readline-ask.exp: abort ask message
PASS -> UNRESOLVED: gdb.base/readline-ask.exp: abort more message
PASS -> FAIL: gdb.base/readline-ask.exp: ask message
PASS -> FAIL: gdb.base/readline-ask.exp: ask message for 01 and 02
PASS -> FAIL: gdb.base/readline-ask.exp: ask message no
PASS -> FAIL: gdb.base/readline-ask.exp: more finish for 04
PASS -> FAIL: gdb.base/readline-ask.exp: more message for 01 and 02
PASS -> FAIL: gdb.base/readline-ask.exp: more message for 03
new FAIL: gdb.base/readnever.exp:
new FAIL: gdb.base/realname-expand.exp:
PASS -> FAIL: gdb.base/realname-expand.exp: break realname-expand-real.c:func
PASS -> FAIL: gdb.base/realname-expand.exp: rbreak realname-expand-real.c:func
new FAIL: gdb.base/recpar.exp:
new FAIL: gdb.base/recurse.exp:
new FAIL: gdb.base/reggroups.exp:
new FAIL: gdb.base/reggroups.exp: can't run to main
new FAIL: gdb.base/relational.exp:
new FAIL: gdb.base/relativedebug.exp:
new FAIL: gdb.base/relativedebug.exp: continue
new FAIL: gdb.base/relativedebug.exp: pause found in backtrace
PASS -> FAIL: gdb.base/relocate.exp: add-symbol-file relocate.o $offset
PASS -> FAIL: gdb.base/relocate.exp: add-symbol-file relocate.o 0
PASS -> FAIL: gdb.base/relocate.exp: function foo has a different address
PASS -> FAIL: gdb.base/relocate.exp: functions have different addresses
PASS -> FAIL: gdb.base/relocate.exp: get address of function_bar
PASS -> FAIL: gdb.base/relocate.exp: get address of function_foo
PASS -> FAIL: gdb.base/relocate.exp: get address of global_bar
PASS -> FAIL: gdb.base/relocate.exp: get address of global_foo
PASS -> FAIL: gdb.base/relocate.exp: get address of static_bar
PASS -> FAIL: gdb.base/relocate.exp: get address of static_foo
PASS -> FAIL: gdb.base/relocate.exp: global variables have different addresses
PASS -> FAIL: gdb.base/relocate.exp: static variables have different addresses
PASS -> FAIL: gdb.base/relocate.exp: symbol-file with -- and -readnow
PASS -> FAIL: gdb.base/relocate.exp: symbol-file with -readnow first
PASS -> FAIL: gdb.base/relocate.exp: symbol-file with -readnow second
PASS -> FAIL: gdb.base/relocate.exp: symbol-file with offset
new FAIL: gdb.base/remote.exp:
new FAIL: gdb.base/remote.exp: cannot run to main
PASS -> FAIL: gdb.base/remote.exp: get integer valueof "sizeof
new FAIL: gdb.base/remote.exp: timed download `remote' - limit, 0 - loading executable
new FAIL: gdb.base/remote.exp: timed download `remote' - limit, 398 - loading executable
new FAIL: gdb.base/remote.exp: timed download `remote' - limit, 400 - loading executable
new UNRESOLVED: gdb.base/reread.exp: opts= "" "" :
PASS -> FAIL: gdb.base/reread.exp: opts= "" "" : breakpoint foo in first file
PASS -> FAIL: gdb.base/reread.exp: opts= "" "" : continue until exit at second pass
PASS -> FAIL: gdb.base/reread.exp: opts= "" "" : run to foo
PASS -> FAIL: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/reread.exp: opts= "" "" : second pass: run to foo
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" :
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : breakpoint foo in first file
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : continue until exit at second pass
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : shell sleep 1
new FAIL: gdb.base/restore.exp:
new FAIL: gdb.base/return-nodebug.exp:
new FAIL: gdb.base/return.exp:
new FAIL: gdb.base/return2.exp:
new FAIL: gdb.base/save-bp.exp:
new FAIL: gdb.base/savedregs.exp:
new FAIL: gdb.base/savedregs.exp: can't run to main
new FAIL: gdb.base/scope.exp:
PASS -> FAIL: gdb.base/scope.exp: print 'scope0.c'::filelocal before run
PASS -> FAIL: gdb.base/scope.exp: print 'scope0.c'::filelocal_bss before run
PASS -> FAIL: gdb.base/scope.exp: print 'scope0.c'::filelocal_ro
new FAIL: gdb.base/sep.exp:
PASS -> FAIL: gdb.base/sep.exp: breakpoint inside included file
PASS -> FAIL: gdb.base/sep.exp: list using location inside included file
new FAIL: gdb.base/sepdebug.exp:
PASS -> FAIL: gdb.base/sepdebug.exp: Temporary breakpoint function in file
PASS -> FAIL: gdb.base/sepdebug.exp: Temporary breakpoint info
PASS -> FAIL: gdb.base/sepdebug.exp: Temporary breakpoint line number in file #2
PASS -> FAIL: gdb.base/sepdebug.exp: break on default location, 1st time
PASS -> FAIL: gdb.base/sepdebug.exp: break on default location, 2nd time
PASS -> FAIL: gdb.base/sepdebug.exp: break on default location, 3rd time
PASS -> FAIL: gdb.base/sepdebug.exp: break on default location, 4th time
PASS -> FAIL: gdb.base/sepdebug.exp: break on non-existent source line
PASS -> FAIL: gdb.base/sepdebug.exp: breakpoint at start of multi line if conditional
PASS -> FAIL: gdb.base/sepdebug.exp: breakpoint at start of multi line while conditional
PASS -> FAIL: gdb.base/sepdebug.exp: breakpoint duplicate
PASS -> FAIL: gdb.base/sepdebug.exp: breakpoint function
PASS -> FAIL: gdb.base/sepdebug.exp: breakpoint function in file
PASS -> FAIL: gdb.base/sepdebug.exp: breakpoint info
PASS -> FAIL: gdb.base/sepdebug.exp: breakpoint line number
PASS -> FAIL: gdb.base/sepdebug.exp: breakpoint line number in file
PASS -> FAIL: gdb.base/sepdebug.exp: breakpoint offset +1
PASS -> FAIL: gdb.base/sepdebug.exp: breakpoint quoted function
new FAIL: gdb.base/sepdebug.exp: no debug information found.
PASS -> FAIL: gdb.base/sepdebug.exp: run until breakpoint set at a line number
PASS -> FAIL: gdb.base/sepdebug.exp: run until file:function
PASS -> FAIL: gdb.base/sepdebug.exp: run until file:linenum breakpoint
PASS -> FAIL: gdb.base/sepdebug.exp: run until function breakpoint
PASS -> FAIL: gdb.base/sepdebug.exp: run until quoted breakpoint
new FAIL: gdb.base/sepdebug.exp: sepdebug tests suppressed
PASS -> FAIL: gdb.base/sepdebug.exp: set to-be-silent break bp_location1
PASS -> FAIL: gdb.base/sepdebug.exp: step onto breakpoint
PASS -> FAIL: gdb.base/sepdebug.exp: temporary breakpoint function
PASS -> FAIL: gdb.base/sepdebug.exp: temporary breakpoint line number #1
PASS -> FAIL: gdb.base/sepdebug.exp: temporary breakpoint line number #2
PASS -> FAIL: gdb.base/sepdebug.exp: temporary breakpoint line number in file #1
PASS -> FAIL: gdb.base/sepdebug.exp: until bp_location1
PASS -> FAIL: gdb.base/sepdebug.exp: use `list' to establish default source file
new FAIL: gdb.base/sepsymtab.exp:
PASS -> FAIL: gdb.base/sepsymtab.exp: info sym main
new FAIL: gdb.base/server-del-break.exp:
PASS -> FAIL: gdb.base/server-del-break.exp: break main
new FAIL: gdb.base/set-inferior-tty.exp: command=set inferior-tty:
new FAIL: gdb.base/set-inferior-tty.exp: command=tty:
new FAIL: gdb.base/set-lang-auto.exp:
new FAIL: gdb.base/set-noassign.exp:
new FAIL: gdb.base/set-noassign.exp: can't run to main
new FAIL: gdb.base/setshow.exp:
new FAIL: gdb.base/setshow.exp: can't run to main
new FAIL: gdb.base/settings.exp: test-string filename:
new FAIL: gdb.base/settings.exp: test-string optional-filename:
new FAIL: gdb.base/settings.exp: test-string string-noescape:
new FAIL: gdb.base/settings.exp: test-string string:
new FAIL: gdb.base/setvar.exp:
new FAIL: gdb.base/shlib-call.exp:
PASS -> FAIL: gdb.base/shlib-call.exp: breakpoint function shr2
PASS -> FAIL: gdb.base/shlib-call.exp: continue until exit
PASS -> FAIL: gdb.base/shlib-call.exp: next over shr1
PASS -> UNRESOLVED: gdb.base/shlib-call.exp: next to shr1
PASS -> FAIL: gdb.base/shlib-call.exp: print g
PASS -> FAIL: gdb.base/shlib-call.exp: print mainshr1
PASS -> FAIL: gdb.base/shlib-call.exp: print shr1
PASS -> FAIL: gdb.base/shlib-call.exp: run to bp in shared library
PASS -> FAIL: gdb.base/shlib-call.exp: run until breakpoint set at a function
PASS -> FAIL: gdb.base/shlib-call.exp: step into mainshr1
PASS -> FAIL: gdb.base/shlib-call.exp: step out of shr2 to main
PASS -> FAIL: gdb.base/shreloc.exp:
new FAIL: gdb.base/shreloc.exp: can't run to main
new FAIL: gdb.base/sigall.exp:
PASS -> FAIL: gdb.base/sigall.exp: advance to 33
PASS -> FAIL: gdb.base/sigall.exp: advance to 34
PASS -> FAIL: gdb.base/sigall.exp: advance to 35
PASS -> FAIL: gdb.base/sigall.exp: advance to 36
PASS -> FAIL: gdb.base/sigall.exp: advance to 37
PASS -> FAIL: gdb.base/sigall.exp: advance to 38
PASS -> FAIL: gdb.base/sigall.exp: advance to 39
PASS -> FAIL: gdb.base/sigall.exp: advance to 40
PASS -> FAIL: gdb.base/sigall.exp: advance to 41
PASS -> FAIL: gdb.base/sigall.exp: advance to 42
PASS -> FAIL: gdb.base/sigall.exp: advance to 43
PASS -> FAIL: gdb.base/sigall.exp: advance to 44
PASS -> FAIL: gdb.base/sigall.exp: advance to 45
PASS -> FAIL: gdb.base/sigall.exp: advance to 46
PASS -> FAIL: gdb.base/sigall.exp: advance to 47
PASS -> FAIL: gdb.base/sigall.exp: advance to 48
PASS -> FAIL: gdb.base/sigall.exp: advance to 49
PASS -> FAIL: gdb.base/sigall.exp: advance to 50
PASS -> FAIL: gdb.base/sigall.exp: advance to 51
PASS -> FAIL: gdb.base/sigall.exp: advance to 52
PASS -> FAIL: gdb.base/sigall.exp: advance to 53
PASS -> FAIL: gdb.base/sigall.exp: advance to 54
PASS -> FAIL: gdb.base/sigall.exp: advance to 55
PASS -> FAIL: gdb.base/sigall.exp: advance to 56
PASS -> FAIL: gdb.base/sigall.exp: advance to 57
PASS -> FAIL: gdb.base/sigall.exp: advance to 58
PASS -> FAIL: gdb.base/sigall.exp: advance to 59
PASS -> FAIL: gdb.base/sigall.exp: advance to 60
PASS -> FAIL: gdb.base/sigall.exp: advance to 61
PASS -> FAIL: gdb.base/sigall.exp: advance to 62
PASS -> FAIL: gdb.base/sigall.exp: advance to 63
PASS -> FAIL: gdb.base/sigall.exp: advance to ALRM
PASS -> FAIL: gdb.base/sigall.exp: advance to BUS
PASS -> FAIL: gdb.base/sigall.exp: advance to CHLD
PASS -> FAIL: gdb.base/sigall.exp: advance to CONT
PASS -> FAIL: gdb.base/sigall.exp: advance to DANGER
PASS -> FAIL: gdb.base/sigall.exp: advance to EMT
PASS -> FAIL: gdb.base/sigall.exp: advance to FPE
PASS -> FAIL: gdb.base/sigall.exp: advance to GRANT
PASS -> FAIL: gdb.base/sigall.exp: advance to HUP
PASS -> FAIL: gdb.base/sigall.exp: advance to ILL
PASS -> FAIL: gdb.base/sigall.exp: advance to IO
PASS -> FAIL: gdb.base/sigall.exp: advance to LOST
PASS -> FAIL: gdb.base/sigall.exp: advance to LWP
PASS -> FAIL: gdb.base/sigall.exp: advance to MSG
PASS -> FAIL: gdb.base/sigall.exp: advance to PHONE
PASS -> FAIL: gdb.base/sigall.exp: advance to PIPE
PASS -> FAIL: gdb.base/sigall.exp: advance to POLL
PASS -> FAIL: gdb.base/sigall.exp: advance to PRIO
PASS -> FAIL: gdb.base/sigall.exp: advance to PROF
PASS -> FAIL: gdb.base/sigall.exp: advance to PWR
PASS -> FAIL: gdb.base/sigall.exp: advance to QUIT
PASS -> FAIL: gdb.base/sigall.exp: advance to RETRACT
PASS -> FAIL: gdb.base/sigall.exp: advance to SAK
PASS -> FAIL: gdb.base/sigall.exp: advance to SEGV
PASS -> FAIL: gdb.base/sigall.exp: advance to SOUND
PASS -> FAIL: gdb.base/sigall.exp: advance to SYS
PASS -> FAIL: gdb.base/sigall.exp: advance to TERM
PASS -> FAIL: gdb.base/sigall.exp: advance to TSTP
PASS -> FAIL: gdb.base/sigall.exp: advance to TTIN
PASS -> FAIL: gdb.base/sigall.exp: advance to TTOU
PASS -> FAIL: gdb.base/sigall.exp: advance to URG
PASS -> FAIL: gdb.base/sigall.exp: advance to USR1
PASS -> FAIL: gdb.base/sigall.exp: advance to USR2
PASS -> FAIL: gdb.base/sigall.exp: advance to VTALRM
PASS -> FAIL: gdb.base/sigall.exp: advance to WAITING
PASS -> FAIL: gdb.base/sigall.exp: advance to WINCH
PASS -> FAIL: gdb.base/sigall.exp: advance to WIND
PASS -> FAIL: gdb.base/sigall.exp: advance to XCPU
PASS -> FAIL: gdb.base/sigall.exp: advance to XFSZ
PASS -> FAIL: gdb.base/sigall.exp: b gen_33
PASS -> FAIL: gdb.base/sigall.exp: b gen_34
PASS -> FAIL: gdb.base/sigall.exp: b gen_35
PASS -> FAIL: gdb.base/sigall.exp: b gen_36
PASS -> FAIL: gdb.base/sigall.exp: b gen_37
PASS -> FAIL: gdb.base/sigall.exp: b gen_38
PASS -> FAIL: gdb.base/sigall.exp: b gen_39
PASS -> FAIL: gdb.base/sigall.exp: b gen_40
PASS -> FAIL: gdb.base/sigall.exp: b gen_41
PASS -> FAIL: gdb.base/sigall.exp: b gen_42
PASS -> FAIL: gdb.base/sigall.exp: b gen_43
PASS -> FAIL: gdb.base/sigall.exp: b gen_44
PASS -> FAIL: gdb.base/sigall.exp: b gen_45
PASS -> FAIL: gdb.base/sigall.exp: b gen_46
PASS -> FAIL: gdb.base/sigall.exp: b gen_47
PASS -> FAIL: gdb.base/sigall.exp: b gen_48
PASS -> FAIL: gdb.base/sigall.exp: b gen_49
PASS -> FAIL: gdb.base/sigall.exp: b gen_50
PASS -> FAIL: gdb.base/sigall.exp: b gen_51
PASS -> FAIL: gdb.base/sigall.exp: b gen_52
PASS -> FAIL: gdb.base/sigall.exp: b gen_53
PASS -> FAIL: gdb.base/sigall.exp: b gen_54
PASS -> FAIL: gdb.base/sigall.exp: b gen_55
PASS -> FAIL: gdb.base/sigall.exp: b gen_56
PASS -> FAIL: gdb.base/sigall.exp: b gen_57
PASS -> FAIL: gdb.base/sigall.exp: b gen_58
PASS -> FAIL: gdb.base/sigall.exp: b gen_59
PASS -> FAIL: gdb.base/sigall.exp: b gen_60
PASS -> FAIL: gdb.base/sigall.exp: b gen_61
PASS -> FAIL: gdb.base/sigall.exp: b gen_62
PASS -> FAIL: gdb.base/sigall.exp: b gen_63
PASS -> FAIL: gdb.base/sigall.exp: b gen_ALRM
PASS -> FAIL: gdb.base/sigall.exp: b gen_BUS
PASS -> FAIL: gdb.base/sigall.exp: b gen_CHLD
PASS -> FAIL: gdb.base/sigall.exp: b gen_CONT
PASS -> FAIL: gdb.base/sigall.exp: b gen_DANGER
PASS -> FAIL: gdb.base/sigall.exp: b gen_EMT
PASS -> FAIL: gdb.base/sigall.exp: b gen_FPE
PASS -> FAIL: gdb.base/sigall.exp: b gen_GRANT
PASS -> FAIL: gdb.base/sigall.exp: b gen_HUP
PASS -> FAIL: gdb.base/sigall.exp: b gen_ILL
PASS -> FAIL: gdb.base/sigall.exp: b gen_IO
PASS -> FAIL: gdb.base/sigall.exp: b gen_LOST
PASS -> FAIL: gdb.base/sigall.exp: b gen_LWP
PASS -> FAIL: gdb.base/sigall.exp: b gen_MSG
PASS -> FAIL: gdb.base/sigall.exp: b gen_PHONE
PASS -> FAIL: gdb.base/sigall.exp: b gen_PIPE
PASS -> FAIL: gdb.base/sigall.exp: b gen_POLL
PASS -> FAIL: gdb.base/sigall.exp: b gen_PRIO
PASS -> FAIL: gdb.base/sigall.exp: b gen_PROF
PASS -> FAIL: gdb.base/sigall.exp: b gen_PWR
PASS -> FAIL: gdb.base/sigall.exp: b gen_QUIT
PASS -> FAIL: gdb.base/sigall.exp: b gen_RETRACT
PASS -> FAIL: gdb.base/sigall.exp: b gen_SAK
PASS -> FAIL: gdb.base/sigall.exp: b gen_SEGV
PASS -> FAIL: gdb.base/sigall.exp: b gen_SOUND
PASS -> FAIL: gdb.base/sigall.exp: b gen_SYS
PASS -> FAIL: gdb.base/sigall.exp: b gen_TERM
PASS -> FAIL: gdb.base/sigall.exp: b gen_TSTP
PASS -> FAIL: gdb.base/sigall.exp: b gen_TTIN
PASS -> FAIL: gdb.base/sigall.exp: b gen_TTOU
PASS -> FAIL: gdb.base/sigall.exp: b gen_URG
PASS -> FAIL: gdb.base/sigall.exp: b gen_USR1
PASS -> FAIL: gdb.base/sigall.exp: b gen_USR2
PASS -> FAIL: gdb.base/sigall.exp: b gen_VTALRM
PASS -> FAIL: gdb.base/sigall.exp: b gen_WAITING
PASS -> FAIL: gdb.base/sigall.exp: b gen_WINCH
PASS -> FAIL: gdb.base/sigall.exp: b gen_WIND
PASS -> FAIL: gdb.base/sigall.exp: b gen_XCPU
PASS -> FAIL: gdb.base/sigall.exp: b gen_XFSZ
PASS -> FAIL: gdb.base/sigall.exp: b handle_33
PASS -> FAIL: gdb.base/sigall.exp: b handle_34
PASS -> FAIL: gdb.base/sigall.exp: b handle_35
PASS -> FAIL: gdb.base/sigall.exp: b handle_36
PASS -> FAIL: gdb.base/sigall.exp: b handle_37
PASS -> FAIL: gdb.base/sigall.exp: b handle_38
PASS -> FAIL: gdb.base/sigall.exp: b handle_39
PASS -> FAIL: gdb.base/sigall.exp: b handle_40
PASS -> FAIL: gdb.base/sigall.exp: b handle_41
PASS -> FAIL: gdb.base/sigall.exp: b handle_42
PASS -> FAIL: gdb.base/sigall.exp: b handle_43
PASS -> FAIL: gdb.base/sigall.exp: b handle_44
PASS -> FAIL: gdb.base/sigall.exp: b handle_45
PASS -> FAIL: gdb.base/sigall.exp: b handle_46
PASS -> FAIL: gdb.base/sigall.exp: b handle_47
PASS -> FAIL: gdb.base/sigall.exp: b handle_48
PASS -> FAIL: gdb.base/sigall.exp: b handle_49
PASS -> FAIL: gdb.base/sigall.exp: b handle_50
PASS -> FAIL: gdb.base/sigall.exp: b handle_51
PASS -> FAIL: gdb.base/sigall.exp: b handle_52
PASS -> FAIL: gdb.base/sigall.exp: b handle_53
PASS -> FAIL: gdb.base/sigall.exp: b handle_54
PASS -> FAIL: gdb.base/sigall.exp: b handle_55
PASS -> FAIL: gdb.base/sigall.exp: b handle_56
PASS -> FAIL: gdb.base/sigall.exp: b handle_57
PASS -> FAIL: gdb.base/sigall.exp: b handle_58
PASS -> FAIL: gdb.base/sigall.exp: b handle_59
PASS -> FAIL: gdb.base/sigall.exp: b handle_60
PASS -> FAIL: gdb.base/sigall.exp: b handle_61
PASS -> FAIL: gdb.base/sigall.exp: b handle_62
PASS -> FAIL: gdb.base/sigall.exp: b handle_63
PASS -> FAIL: gdb.base/sigall.exp: b handle_ABRT
PASS -> FAIL: gdb.base/sigall.exp: b handle_ALRM
PASS -> FAIL: gdb.base/sigall.exp: b handle_BUS
PASS -> FAIL: gdb.base/sigall.exp: b handle_CHLD
PASS -> FAIL: gdb.base/sigall.exp: b handle_CONT
PASS -> FAIL: gdb.base/sigall.exp: b handle_DANGER
PASS -> FAIL: gdb.base/sigall.exp: b handle_EMT
PASS -> FAIL: gdb.base/sigall.exp: b handle_FPE
PASS -> FAIL: gdb.base/sigall.exp: b handle_GRANT
PASS -> FAIL: gdb.base/sigall.exp: b handle_HUP
PASS -> FAIL: gdb.base/sigall.exp: b handle_ILL
PASS -> FAIL: gdb.base/sigall.exp: b handle_IO
PASS -> FAIL: gdb.base/sigall.exp: b handle_LOST
PASS -> FAIL: gdb.base/sigall.exp: b handle_LWP
PASS -> FAIL: gdb.base/sigall.exp: b handle_MSG
PASS -> FAIL: gdb.base/sigall.exp: b handle_PHONE
PASS -> FAIL: gdb.base/sigall.exp: b handle_PIPE
PASS -> FAIL: gdb.base/sigall.exp: b handle_POLL
PASS -> FAIL: gdb.base/sigall.exp: b handle_PRIO
PASS -> FAIL: gdb.base/sigall.exp: b handle_PROF
PASS -> FAIL: gdb.base/sigall.exp: b handle_PWR
PASS -> FAIL: gdb.base/sigall.exp: b handle_QUIT
PASS -> FAIL: gdb.base/sigall.exp: b handle_RETRACT
PASS -> FAIL: gdb.base/sigall.exp: b handle_SAK
PASS -> FAIL: gdb.base/sigall.exp: b handle_SEGV
PASS -> FAIL: gdb.base/sigall.exp: b handle_SOUND
PASS -> FAIL: gdb.base/sigall.exp: b handle_SYS
PASS -> FAIL: gdb.base/sigall.exp: b handle_TERM
PASS -> FAIL: gdb.base/sigall.exp: b handle_TSTP
PASS -> FAIL: gdb.base/sigall.exp: b handle_TTIN
PASS -> FAIL: gdb.base/sigall.exp: b handle_TTOU
PASS -> FAIL: gdb.base/sigall.exp: b handle_URG
PASS -> FAIL: gdb.base/sigall.exp: b handle_USR1
PASS -> FAIL: gdb.base/sigall.exp: b handle_USR2
PASS -> FAIL: gdb.base/sigall.exp: b handle_VTALRM
PASS -> FAIL: gdb.base/sigall.exp: b handle_WAITING
PASS -> FAIL: gdb.base/sigall.exp: b handle_WINCH
PASS -> FAIL: gdb.base/sigall.exp: b handle_WIND
PASS -> FAIL: gdb.base/sigall.exp: b handle_XCPU
PASS -> FAIL: gdb.base/sigall.exp: b handle_XFSZ
PASS -> FAIL: gdb.base/sigall.exp: continue until exit at continue to sigall exit
new FAIL: gdb.base/sigall.exp: get signal 33
new FAIL: gdb.base/sigall.exp: get signal 34
new FAIL: gdb.base/sigall.exp: get signal 35
new FAIL: gdb.base/sigall.exp: get signal 36
new FAIL: gdb.base/sigall.exp: get signal 37
new FAIL: gdb.base/sigall.exp: get signal 38
new FAIL: gdb.base/sigall.exp: get signal 39
new FAIL: gdb.base/sigall.exp: get signal 40
new FAIL: gdb.base/sigall.exp: get signal 41
new FAIL: gdb.base/sigall.exp: get signal 42
new FAIL: gdb.base/sigall.exp: get signal 43
new FAIL: gdb.base/sigall.exp: get signal 44
new FAIL: gdb.base/sigall.exp: get signal 45
new FAIL: gdb.base/sigall.exp: get signal 46
new FAIL: gdb.base/sigall.exp: get signal 47
new FAIL: gdb.base/sigall.exp: get signal 48
new FAIL: gdb.base/sigall.exp: get signal 49
new FAIL: gdb.base/sigall.exp: get signal 50
new FAIL: gdb.base/sigall.exp: get signal 51
new FAIL: gdb.base/sigall.exp: get signal 52
new FAIL: gdb.base/sigall.exp: get signal 53
new FAIL: gdb.base/sigall.exp: get signal 54
new FAIL: gdb.base/sigall.exp: get signal 55
new FAIL: gdb.base/sigall.exp: get signal 56
new FAIL: gdb.base/sigall.exp: get signal 57
new FAIL: gdb.base/sigall.exp: get signal 58
new FAIL: gdb.base/sigall.exp: get signal 59
new FAIL: gdb.base/sigall.exp: get signal 60
new FAIL: gdb.base/sigall.exp: get signal 61
new FAIL: gdb.base/sigall.exp: get signal 62
new FAIL: gdb.base/sigall.exp: get signal 63
PASS -> FAIL: gdb.base/sigall.exp: get signal ABRT
PASS -> FAIL: gdb.base/sigall.exp: get signal ALRM
PASS -> FAIL: gdb.base/sigall.exp: get signal BUS
PASS -> FAIL: gdb.base/sigall.exp: get signal CHLD
PASS -> FAIL: gdb.base/sigall.exp: get signal CONT
new FAIL: gdb.base/sigall.exp: get signal DANGER
new FAIL: gdb.base/sigall.exp: get signal EMT
PASS -> FAIL: gdb.base/sigall.exp: get signal FPE
new FAIL: gdb.base/sigall.exp: get signal GRANT
PASS -> FAIL: gdb.base/sigall.exp: get signal HUP
PASS -> FAIL: gdb.base/sigall.exp: get signal ILL
PASS -> FAIL: gdb.base/sigall.exp: get signal IO
new FAIL: gdb.base/sigall.exp: get signal LOST
new FAIL: gdb.base/sigall.exp: get signal LWP
new FAIL: gdb.base/sigall.exp: get signal MSG
new FAIL: gdb.base/sigall.exp: get signal PHONE
PASS -> FAIL: gdb.base/sigall.exp: get signal PIPE
new FAIL: gdb.base/sigall.exp: get signal POLL
new FAIL: gdb.base/sigall.exp: get signal PRIO
PASS -> FAIL: gdb.base/sigall.exp: get signal PROF
PASS -> FAIL: gdb.base/sigall.exp: get signal PWR
PASS -> FAIL: gdb.base/sigall.exp: get signal QUIT
new FAIL: gdb.base/sigall.exp: get signal RETRACT
new FAIL: gdb.base/sigall.exp: get signal SAK
PASS -> FAIL: gdb.base/sigall.exp: get signal SEGV
new FAIL: gdb.base/sigall.exp: get signal SOUND
PASS -> FAIL: gdb.base/sigall.exp: get signal SYS
PASS -> FAIL: gdb.base/sigall.exp: get signal TERM
PASS -> FAIL: gdb.base/sigall.exp: get signal TSTP
PASS -> FAIL: gdb.base/sigall.exp: get signal TTIN
PASS -> FAIL: gdb.base/sigall.exp: get signal TTOU
PASS -> FAIL: gdb.base/sigall.exp: get signal URG
PASS -> FAIL: gdb.base/sigall.exp: get signal USR1
PASS -> FAIL: gdb.base/sigall.exp: get signal USR2
PASS -> FAIL: gdb.base/sigall.exp: get signal VTALRM
new FAIL: gdb.base/sigall.exp: get signal WAITING
PASS -> FAIL: gdb.base/sigall.exp: get signal WINCH
new FAIL: gdb.base/sigall.exp: get signal WIND
PASS -> FAIL: gdb.base/sigall.exp: get signal XCPU
PASS -> FAIL: gdb.base/sigall.exp: get signal XFSZ
PASS -> FAIL: gdb.base/sigall.exp: send signal 33
PASS -> FAIL: gdb.base/sigall.exp: send signal 34
PASS -> FAIL: gdb.base/sigall.exp: send signal 35
PASS -> FAIL: gdb.base/sigall.exp: send signal 36
PASS -> FAIL: gdb.base/sigall.exp: send signal 37
PASS -> FAIL: gdb.base/sigall.exp: send signal 38
PASS -> FAIL: gdb.base/sigall.exp: send signal 39
PASS -> FAIL: gdb.base/sigall.exp: send signal 40
PASS -> FAIL: gdb.base/sigall.exp: send signal 41
PASS -> FAIL: gdb.base/sigall.exp: send signal 42
PASS -> FAIL: gdb.base/sigall.exp: send signal 43
PASS -> FAIL: gdb.base/sigall.exp: send signal 44
PASS -> FAIL: gdb.base/sigall.exp: send signal 45
PASS -> FAIL: gdb.base/sigall.exp: send signal 46
PASS -> FAIL: gdb.base/sigall.exp: send signal 47
PASS -> FAIL: gdb.base/sigall.exp: send signal 48
PASS -> FAIL: gdb.base/sigall.exp: send signal 49
PASS -> FAIL: gdb.base/sigall.exp: send signal 50
PASS -> FAIL: gdb.base/sigall.exp: send signal 51
PASS -> FAIL: gdb.base/sigall.exp: send signal 52
PASS -> FAIL: gdb.base/sigall.exp: send signal 53
PASS -> FAIL: gdb.base/sigall.exp: send signal 54
PASS -> FAIL: gdb.base/sigall.exp: send signal 55
PASS -> FAIL: gdb.base/sigall.exp: send signal 56
PASS -> FAIL: gdb.base/sigall.exp: send signal 57
PASS -> FAIL: gdb.base/sigall.exp: send signal 58
PASS -> FAIL: gdb.base/sigall.exp: send signal 59
PASS -> FAIL: gdb.base/sigall.exp: send signal 60
PASS -> FAIL: gdb.base/sigall.exp: send signal 61
PASS -> FAIL: gdb.base/sigall.exp: send signal 62
PASS -> FAIL: gdb.base/sigall.exp: send signal 63
PASS -> FAIL: gdb.base/sigall.exp: send signal ABRT
PASS -> FAIL: gdb.base/sigall.exp: send signal ALRM
PASS -> FAIL: gdb.base/sigall.exp: send signal BUS
PASS -> FAIL: gdb.base/sigall.exp: send signal CHLD
PASS -> FAIL: gdb.base/sigall.exp: send signal CONT
PASS -> FAIL: gdb.base/sigall.exp: send signal DANGER
PASS -> FAIL: gdb.base/sigall.exp: send signal EMT
PASS -> FAIL: gdb.base/sigall.exp: send signal FPE
PASS -> FAIL: gdb.base/sigall.exp: send signal GRANT
PASS -> FAIL: gdb.base/sigall.exp: send signal HUP
PASS -> FAIL: gdb.base/sigall.exp: send signal ILL
PASS -> FAIL: gdb.base/sigall.exp: send signal IO
PASS -> FAIL: gdb.base/sigall.exp: send signal LOST
PASS -> FAIL: gdb.base/sigall.exp: send signal LWP
PASS -> FAIL: gdb.base/sigall.exp: send signal MSG
PASS -> FAIL: gdb.base/sigall.exp: send signal PHONE
PASS -> FAIL: gdb.base/sigall.exp: send signal PIPE
PASS -> FAIL: gdb.base/sigall.exp: send signal POLL
PASS -> FAIL: gdb.base/sigall.exp: send signal PRIO
PASS -> FAIL: gdb.base/sigall.exp: send signal PROF
PASS -> FAIL: gdb.base/sigall.exp: send signal PWR
PASS -> FAIL: gdb.base/sigall.exp: send signal QUIT
PASS -> FAIL: gdb.base/sigall.exp: send signal RETRACT
PASS -> FAIL: gdb.base/sigall.exp: send signal SAK
PASS -> FAIL: gdb.base/sigall.exp: send signal SEGV
PASS -> FAIL: gdb.base/sigall.exp: send signal SOUND
PASS -> FAIL: gdb.base/sigall.exp: send signal SYS
PASS -> FAIL: gdb.base/sigall.exp: send signal TERM
PASS -> FAIL: gdb.base/sigall.exp: send signal TSTP
PASS -> FAIL: gdb.base/sigall.exp: send signal TTIN
PASS -> FAIL: gdb.base/sigall.exp: send signal TTOU
PASS -> FAIL: gdb.base/sigall.exp: send signal URG
PASS -> FAIL: gdb.base/sigall.exp: send signal USR1
PASS -> FAIL: gdb.base/sigall.exp: send signal USR2
PASS -> FAIL: gdb.base/sigall.exp: send signal VTALRM
PASS -> FAIL: gdb.base/sigall.exp: send signal WAITING
PASS -> FAIL: gdb.base/sigall.exp: send signal WINCH
PASS -> FAIL: gdb.base/sigall.exp: send signal WIND
PASS -> FAIL: gdb.base/sigall.exp: send signal XCPU
PASS -> FAIL: gdb.base/sigall.exp: send signal XFSZ
new FAIL: gdb.base/sigaltstack.exp:
new FAIL: gdb.base/sigaltstack.exp: can't run to main
new FAIL: gdb.base/sigbpt.exp:
new FAIL: gdb.base/sigbpt.exp: can't run to main
new FAIL: gdb.base/sigchld.exp:
PASS -> FAIL: gdb.base/sigchld.exp: SIGCHLD blocked in inferior
PASS -> FAIL: gdb.base/sigchld.exp: set breakpoint at failure exit
PASS -> FAIL: gdb.base/sigchld.exp: set breakpoint at success exit
new FAIL: gdb.base/siginfo-addr.exp:
new FAIL: gdb.base/siginfo-addr.exp: can't run to main
new FAIL: gdb.base/siginfo-infcall.exp:
new FAIL: gdb.base/siginfo-obj.exp:
new FAIL: gdb.base/siginfo-obj.exp: can't run to main
new FAIL: gdb.base/siginfo-thread.exp:
new FAIL: gdb.base/siginfo-thread.exp: can't run to main
new FAIL: gdb.base/siginfo.exp:
new FAIL: gdb.base/siginfo.exp: can't run to main
new FAIL: gdb.base/signals-state-child.exp:
new FAIL: gdb.base/signals.exp:
new FAIL: gdb.base/signest.exp:
new FAIL: gdb.base/signull.exp:
new FAIL: gdb.base/signull.exp: can't run to main
new FAIL: gdb.base/sigrepeat.exp:
new FAIL: gdb.base/sigrepeat.exp: can't run to main
new FAIL: gdb.base/sigstep.exp: continue over handler:
PASS -> FAIL: gdb.base/sigstep.exp: continue over handler: performing continue
PASS -> FAIL: gdb.base/sigstep.exp: continue over handler: set itimer = itimer_real
new FAIL: gdb.base/sigstep.exp: continue to handler entry:
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler entry: performing continue
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler entry: set itimer = itimer_real
new FAIL: gdb.base/sigstep.exp: continue to handler, nothing in handler, continue from handler:
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, nothing in handler, continue from handler: break handler
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, nothing in handler, continue from handler: continue to handler
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, nothing in handler, continue from handler: leave handler
new FAIL: gdb.base/sigstep.exp: continue to handler, nothing in handler, next from handler:
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, nothing in handler, next from handler: break handler
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, nothing in handler, next from handler: continue to handler
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, nothing in handler, next from handler: leave handler
new FAIL: gdb.base/sigstep.exp: continue to handler, nothing in handler, step from handler:
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, nothing in handler, step from handler: break handler
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, nothing in handler, step from handler: continue to handler
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, nothing in handler, step from handler: leave handler
new FAIL: gdb.base/sigstep.exp: continue to handler, si+advance in handler, continue from handler:
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, si+advance in handler, continue from handler: advance in handler
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, si+advance in handler, continue from handler: break handler
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, si+advance in handler, continue from handler: continue to handler
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, si+advance in handler, continue from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, si+advance in handler, continue from handler: si in handler
new FAIL: gdb.base/sigstep.exp: continue to handler, si+advance in handler, next from handler:
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, si+advance in handler, next from handler: advance in handler
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, si+advance in handler, next from handler: break handler
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, si+advance in handler, next from handler: continue to handler
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, si+advance in handler, next from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, si+advance in handler, next from handler: si in handler
new FAIL: gdb.base/sigstep.exp: continue to handler, si+advance in handler, step from handler:
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, si+advance in handler, step from handler: advance in handler
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, si+advance in handler, step from handler: break handler
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, si+advance in handler, step from handler: continue to handler
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, si+advance in handler, step from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler, si+advance in handler, step from handler: si in handler
new FAIL: gdb.base/sigstep.exp: continue to handler:
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler: break handler
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler: performing continue
PASS -> FAIL: gdb.base/sigstep.exp: continue to handler: set itimer = itimer_real
new FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, no handler:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, no handler: performing continue
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, no handler: set no_handler
new FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint, no handler:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint, no handler: performing continue
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint, no handler: set no_handler
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint, no handler: watch $convenience
new FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint: performing continue
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint: watch $convenience
new FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler: performing continue
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler: set itimer = itimer_real
new FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler entry:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler entry: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler entry: performing continue
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler entry: set itimer = itimer_real
new FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler: break handler
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler: performing continue
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler: set itimer = itimer_real
new FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, no handler:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, no handler: performing next
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, no handler: set no_handler
new FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint, no handler:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint, no handler: performing next
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint, no handler: set no_handler
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint, no handler: watch $convenience
new FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint: performing next
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint: watch $convenience
new FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler: performing next
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler: set itimer = itimer_real
new FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler entry:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler entry: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler entry: performing next
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler entry: set itimer = itimer_real
new FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler: break handler
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler: performing next
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler: set itimer = itimer_real
new FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, no handler:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, no handler: advanced
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, no handler: get next PC
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, no handler: performing nexti
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, no handler: set no_handler
new FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint, no handler:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: advanced
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: get next PC
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: performing nexti
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: set no_handler
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: watch $convenience
new FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint: advanced
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint: get next PC
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint: performing nexti
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint: watch $convenience
new FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler: advanced
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler: get next PC
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler: performing nexti
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler: set itimer = itimer_real
new FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, no handler:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, no handler: performing step
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, no handler: set no_handler
new FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint, no handler:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint, no handler: performing step
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint, no handler: set no_handler
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint, no handler: watch $convenience
new FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint: performing step
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint: watch $convenience
new FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler: performing step
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler: set itimer = itimer_real
new FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler entry:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler entry: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler entry: performing step
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler entry: set itimer = itimer_real
new FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler: break handler
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler: performing step
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler: set itimer = itimer_real
new FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, no handler:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, no handler: advanced
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, no handler: get next PC
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, no handler: performing stepi
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, no handler: set no_handler
new FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint, no handler:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: advanced
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: get next PC
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: performing stepi
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: set no_handler
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: watch $convenience
new FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint: advanced
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint: get next PC
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint: performing stepi
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint: watch $convenience
new FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler: advanced
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler: get next PC
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler: performing stepi
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler: set itimer = itimer_real
new FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, no handler:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, no handler: performing continue
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, no handler: set no_handler
new FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint, no handler:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint, no handler: performing continue
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint, no handler: set no_handler
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint, no handler: watch $convenience
new FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint: performing continue
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint: watch $convenience
new FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler: performing continue
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler: set itimer = itimer_real
new FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler entry:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler entry: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler entry: performing continue
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler entry: set itimer = itimer_real
new FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler: break handler
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler: performing continue
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler: set itimer = itimer_real
new FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, no handler:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, no handler: performing next
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, no handler: set no_handler
new FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint, no handler:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint, no handler: performing next
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint, no handler: set no_handler
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint, no handler: watch $convenience
new FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint: performing next
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint: watch $convenience
new FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler: performing next
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler: set itimer = itimer_real
new FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler entry:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler entry: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler entry: performing next
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler entry: set itimer = itimer_real
new FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler: break handler
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler: performing next
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler: set itimer = itimer_real
new FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, no handler:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, no handler: advanced
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, no handler: get next PC
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, no handler: performing nexti
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, no handler: set no_handler
new FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint, no handler:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: advanced
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: get next PC
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: performing nexti
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: set no_handler
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: watch $convenience
new FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint: advanced
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint: get next PC
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint: performing nexti
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint: watch $convenience
new FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler: advanced
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler: get next PC
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler: performing nexti
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler: set itimer = itimer_real
new FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, no handler:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, no handler: performing step
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, no handler: set no_handler
new FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint, no handler:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint, no handler: performing step
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint, no handler: set no_handler
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint, no handler: watch $convenience
new FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint: performing step
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint: watch $convenience
new FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler: performing step
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler: set itimer = itimer_real
new FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler entry:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler entry: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler entry: performing step
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler entry: set itimer = itimer_real
new FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler: break handler
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler: performing step
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler: set itimer = itimer_real
new FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, no handler:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, no handler: advanced
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, no handler: get next PC
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, no handler: performing stepi
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, no handler: set no_handler
new FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint, no handler:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: advanced
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: get next PC
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: performing stepi
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: set done
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: set no_handler
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: watch $convenience
new FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint: advanced
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint: get next PC
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint: performing stepi
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint: set itimer = itimer_real
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint: watch $convenience
new FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler:
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler: advanced
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler: continue to infinite loop
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler: get next PC
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler: performing stepi
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler: set itimer = itimer_real
new FAIL: gdb.base/sigstep.exp: finish from handleri:
PASS -> FAIL: gdb.base/sigstep.exp: finish from handleri: break handler
PASS -> FAIL: gdb.base/sigstep.exp: finish from handleri: continue to handler
PASS -> FAIL: gdb.base/sigstep.exp: finish from handleri: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: finish from handleri: leave signal trampoline
new FAIL: gdb.base/sigstep.exp: next over handler:
PASS -> FAIL: gdb.base/sigstep.exp: next over handler: performing next
PASS -> FAIL: gdb.base/sigstep.exp: next over handler: set itimer = itimer_real
new FAIL: gdb.base/sigstep.exp: next to handler entry:
PASS -> FAIL: gdb.base/sigstep.exp: next to handler entry: performing next
PASS -> FAIL: gdb.base/sigstep.exp: next to handler entry: set itimer = itimer_real
new FAIL: gdb.base/sigstep.exp: next to handler, nothing in handler, continue from handler:
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, nothing in handler, continue from handler: continue to signal
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, nothing in handler, continue from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, nothing in handler, continue from handler: next to handler
new FAIL: gdb.base/sigstep.exp: next to handler, nothing in handler, next from handler:
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, nothing in handler, next from handler: continue to signal
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, nothing in handler, next from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, nothing in handler, next from handler: next to handler
new FAIL: gdb.base/sigstep.exp: next to handler, nothing in handler, step from handler:
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, nothing in handler, step from handler: continue to signal
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, nothing in handler, step from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, nothing in handler, step from handler: next to handler
new FAIL: gdb.base/sigstep.exp: next to handler, si+advance in handler, continue from handler:
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, si+advance in handler, continue from handler: advance in handler
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, si+advance in handler, continue from handler: continue to signal
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, si+advance in handler, continue from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, si+advance in handler, continue from handler: next to handler
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, si+advance in handler, continue from handler: si in handler
new FAIL: gdb.base/sigstep.exp: next to handler, si+advance in handler, next from handler:
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, si+advance in handler, next from handler: advance in handler
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, si+advance in handler, next from handler: continue to signal
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, si+advance in handler, next from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, si+advance in handler, next from handler: next to handler
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, si+advance in handler, next from handler: si in handler
new FAIL: gdb.base/sigstep.exp: next to handler, si+advance in handler, step from handler:
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, si+advance in handler, step from handler: advance in handler
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, si+advance in handler, step from handler: continue to signal
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, si+advance in handler, step from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, si+advance in handler, step from handler: next to handler
PASS -> FAIL: gdb.base/sigstep.exp: next to handler, si+advance in handler, step from handler: si in handler
new FAIL: gdb.base/sigstep.exp: next to handler:
PASS -> FAIL: gdb.base/sigstep.exp: next to handler: break handler
PASS -> FAIL: gdb.base/sigstep.exp: next to handler: performing next
PASS -> FAIL: gdb.base/sigstep.exp: next to handler: set itimer = itimer_real
new FAIL: gdb.base/sigstep.exp: nexti from handleri:
PASS -> FAIL: gdb.base/sigstep.exp: nexti from handleri: break handler
PASS -> FAIL: gdb.base/sigstep.exp: nexti from handleri: continue to handler
PASS -> FAIL: gdb.base/sigstep.exp: nexti from handleri: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: nexti from handleri: leave signal trampoline
new FAIL: gdb.base/sigstep.exp: nexti over handler:
PASS -> FAIL: gdb.base/sigstep.exp: nexti over handler: advanced
PASS -> FAIL: gdb.base/sigstep.exp: nexti over handler: get next PC
PASS -> FAIL: gdb.base/sigstep.exp: nexti over handler: performing nexti
PASS -> FAIL: gdb.base/sigstep.exp: nexti over handler: set itimer = itimer_real
new FAIL: gdb.base/sigstep.exp: nexti to handler entry:
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler entry: performing nexti
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler entry: set itimer = itimer_real
new FAIL: gdb.base/sigstep.exp: nexti to handler, nothing in handler, continue from handler:
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, nothing in handler, continue from handler: continue to signal
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, nothing in handler, continue from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, nothing in handler, continue from handler: nexti to handler
new FAIL: gdb.base/sigstep.exp: nexti to handler, nothing in handler, next from handler:
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, nothing in handler, next from handler: continue to signal
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, nothing in handler, next from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, nothing in handler, next from handler: nexti to handler
new FAIL: gdb.base/sigstep.exp: nexti to handler, nothing in handler, step from handler:
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, nothing in handler, step from handler: continue to signal
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, nothing in handler, step from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, nothing in handler, step from handler: nexti to handler
new FAIL: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, continue from handler:
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, continue from handler: advance in handler
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, continue from handler: continue to signal
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, continue from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, continue from handler: nexti to handler
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, continue from handler: si in handler
new FAIL: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, next from handler:
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, next from handler: advance in handler
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, next from handler: continue to signal
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, next from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, next from handler: nexti to handler
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, next from handler: si in handler
new FAIL: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, step from handler:
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, step from handler: advance in handler
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, step from handler: continue to signal
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, step from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, step from handler: nexti to handler
PASS -> FAIL: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, step from handler: si in handler
new FAIL: gdb.base/sigstep.exp: return from handleri:
PASS -> FAIL: gdb.base/sigstep.exp: return from handleri: break handler
PASS -> FAIL: gdb.base/sigstep.exp: return from handleri: continue to handler
PASS -> FAIL: gdb.base/sigstep.exp: return from handleri: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: return from handleri: leave signal trampoline
new FAIL: gdb.base/sigstep.exp: step over handler:
PASS -> FAIL: gdb.base/sigstep.exp: step over handler: performing step
PASS -> FAIL: gdb.base/sigstep.exp: step over handler: set itimer = itimer_real
new FAIL: gdb.base/sigstep.exp: step to handler entry:
PASS -> FAIL: gdb.base/sigstep.exp: step to handler entry: performing step
PASS -> FAIL: gdb.base/sigstep.exp: step to handler entry: set itimer = itimer_real
new FAIL: gdb.base/sigstep.exp: step to handler, nothing in handler, continue from handler:
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, nothing in handler, continue from handler: continue to signal
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, nothing in handler, continue from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, nothing in handler, continue from handler: step to handler
new FAIL: gdb.base/sigstep.exp: step to handler, nothing in handler, next from handler:
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, nothing in handler, next from handler: continue to signal
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, nothing in handler, next from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, nothing in handler, next from handler: step to handler
new FAIL: gdb.base/sigstep.exp: step to handler, nothing in handler, step from handler:
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, nothing in handler, step from handler: continue to signal
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, nothing in handler, step from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, nothing in handler, step from handler: step to handler
new FAIL: gdb.base/sigstep.exp: step to handler, si+advance in handler, continue from handler:
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, si+advance in handler, continue from handler: advance in handler
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, si+advance in handler, continue from handler: continue to signal
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, si+advance in handler, continue from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, si+advance in handler, continue from handler: si in handler
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, si+advance in handler, continue from handler: step to handler
new FAIL: gdb.base/sigstep.exp: step to handler, si+advance in handler, next from handler:
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, si+advance in handler, next from handler: advance in handler
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, si+advance in handler, next from handler: continue to signal
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, si+advance in handler, next from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, si+advance in handler, next from handler: si in handler
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, si+advance in handler, next from handler: step to handler
new FAIL: gdb.base/sigstep.exp: step to handler, si+advance in handler, step from handler:
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, si+advance in handler, step from handler: advance in handler
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, si+advance in handler, step from handler: continue to signal
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, si+advance in handler, step from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, si+advance in handler, step from handler: si in handler
PASS -> FAIL: gdb.base/sigstep.exp: step to handler, si+advance in handler, step from handler: step to handler
new FAIL: gdb.base/sigstep.exp: step to handler:
PASS -> FAIL: gdb.base/sigstep.exp: step to handler: break handler
PASS -> FAIL: gdb.base/sigstep.exp: step to handler: performing step
PASS -> FAIL: gdb.base/sigstep.exp: step to handler: set itimer = itimer_real
new FAIL: gdb.base/sigstep.exp: stepi from handleri:
PASS -> FAIL: gdb.base/sigstep.exp: stepi from handleri: break handler
PASS -> FAIL: gdb.base/sigstep.exp: stepi from handleri: continue to handler
PASS -> FAIL: gdb.base/sigstep.exp: stepi from handleri: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: stepi from handleri: leave signal trampoline
new FAIL: gdb.base/sigstep.exp: stepi over handler:
PASS -> FAIL: gdb.base/sigstep.exp: stepi over handler: advanced
PASS -> FAIL: gdb.base/sigstep.exp: stepi over handler: get next PC
PASS -> FAIL: gdb.base/sigstep.exp: stepi over handler: performing stepi
PASS -> FAIL: gdb.base/sigstep.exp: stepi over handler: set itimer = itimer_real
new FAIL: gdb.base/sigstep.exp: stepi to handler entry:
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler entry: performing stepi
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler entry: set itimer = itimer_real
new FAIL: gdb.base/sigstep.exp: stepi to handler, nothing in handler, continue from handler:
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, nothing in handler, continue from handler: continue to signal
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, nothing in handler, continue from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, nothing in handler, continue from handler: stepi to handler
new FAIL: gdb.base/sigstep.exp: stepi to handler, nothing in handler, next from handler:
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, nothing in handler, next from handler: continue to signal
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, nothing in handler, next from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, nothing in handler, next from handler: stepi to handler
new FAIL: gdb.base/sigstep.exp: stepi to handler, nothing in handler, step from handler:
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, nothing in handler, step from handler: continue to signal
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, nothing in handler, step from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, nothing in handler, step from handler: stepi to handler
new FAIL: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler:
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: advance in handler
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: continue to signal
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: si in handler
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: stepi to handler
new FAIL: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, next from handler:
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, next from handler: advance in handler
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, next from handler: continue to signal
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, next from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, next from handler: si in handler
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, next from handler: stepi to handler
new FAIL: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, step from handler:
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, step from handler: advance in handler
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, step from handler: continue to signal
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, step from handler: leave handler
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, step from handler: si in handler
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, step from handler: stepi to handler
new FAIL: gdb.base/sigstep.exp: validate backtrace:
PASS -> FAIL: gdb.base/sigstep.exp: validate backtrace: backtrace for nexti
PASS -> FAIL: gdb.base/sigstep.exp: validate backtrace: break handler
PASS -> FAIL: gdb.base/sigstep.exp: validate backtrace: continue to stepi handler
new FAIL: gdb.base/sizeof.exp:
new FAIL: gdb.base/skip-solib.exp:
PASS -> FAIL: gdb.base/skip-solib.exp: bt
new FAIL: gdb.base/skip-solib.exp: skip tests suppressed
PASS -> FAIL: gdb.base/skip-solib.exp: step
PASS -> FAIL: gdb.base/skip-solib.exp: step after ignoring solib file.
new FAIL: gdb.base/skip.exp:
new FAIL: gdb.base/skip.exp: can't run to main
new FAIL: gdb.base/so-impl-ld.exp:
new FAIL: gdb.base/so-impl-ld.exp: implicit solibs tests suppressed
PASS -> FAIL: gdb.base/so-impl-ld.exp: step in solib call
PASS -> FAIL: gdb.base/so-impl-ld.exp: step into solib call
PASS -> FAIL: gdb.base/so-impl-ld.exp: step out of solib call
PASS -> FAIL: gdb.base/so-impl-ld.exp: step over solib call
new FAIL: gdb.base/solib-corrupted.exp:
new FAIL: gdb.base/solib-corrupted.exp: can't run to main
new FAIL: gdb.base/solib-disc.exp:
new FAIL: gdb.base/solib-disc.exp: can't run to main
new FAIL: gdb.base/solib-probes-nosharedlibrary.exp:
new FAIL: gdb.base/solib-search.exp:
new FAIL: gdb.base/solib-search.exp: can't run to main
new FAIL: gdb.base/solib-symbol.exp:
new FAIL: gdb.base/solib-symbol.exp: can't run to main
PASS -> FAIL: gdb.base/solib-symbol.exp: foo2 in main
new FAIL: gdb.base/solib-vanish.exp:
new FAIL: gdb.base/solib-vanish.exp: can't run to main
new FAIL: gdb.base/solib-weak.exp:
PASS -> FAIL: gdb.base/solib-weak.exp: run to breakpoint - lib1 debug, lib2 debug, lib1 first
PASS -> FAIL: gdb.base/solib-weak.exp: run to breakpoint - lib1 debug, lib2 debug, lib2 first
PASS -> FAIL: gdb.base/solib-weak.exp: run to breakpoint - lib1 debug, lib2 nodebug, lib1 first
PASS -> FAIL: gdb.base/solib-weak.exp: run to breakpoint - lib1 debug, lib2 nodebug, lib2 first
PASS -> FAIL: gdb.base/solib-weak.exp: run to breakpoint - lib1 nodebug, lib2 debug, lib1 first
PASS -> FAIL: gdb.base/solib-weak.exp: run to breakpoint - lib1 nodebug, lib2 debug, lib2 first
PASS -> FAIL: gdb.base/solib-weak.exp: run to breakpoint - lib1 nodebug, lib2 nodebug, lib1 first
PASS -> FAIL: gdb.base/solib-weak.exp: run to breakpoint - lib1 nodebug, lib2 nodebug, lib2 first
new FAIL: gdb.base/solib-weak.exp: setting breakpoint at bar
new FAIL: gdb.base/source-dir.exp:
new FAIL: gdb.base/source-dir.exp: can't run to main
new FAIL: gdb.base/source-execution.exp:
new FAIL: gdb.base/source-execution.exp: can't run to main
new FAIL: gdb.base/sss-bp-on-user-bp-2.exp:
new FAIL: gdb.base/sss-bp-on-user-bp-2.exp: can't run to main
new FAIL: gdb.base/sss-bp-on-user-bp.exp:
new FAIL: gdb.base/sss-bp-on-user-bp.exp: can't run to main
new FAIL: gdb.base/stack-checking.exp:
new FAIL: gdb.base/stack-checking.exp: can't run to main
new FAIL: gdb.base/stack-protector.exp: protection=-fno-stack-protector:
new FAIL: gdb.base/stack-protector.exp: protection=-fno-stack-protector: can't run to main
new FAIL: gdb.base/stack-protector.exp: protection=-fstack-protector-all:
new FAIL: gdb.base/stack-protector.exp: protection=-fstack-protector-all: can't run to main
new FAIL: gdb.base/stack-protector.exp: protection=-fstack-protector-strong:
new FAIL: gdb.base/stack-protector.exp: protection=-fstack-protector-strong: can't run to main
new FAIL: gdb.base/stack-protector.exp: protection=-fstack-protector:
new FAIL: gdb.base/stack-protector.exp: protection=-fstack-protector: can't run to main
new FAIL: gdb.base/stale-infcall.exp:
new FAIL: gdb.base/start-cpp.exp:
new FAIL: gdb.base/start.exp:
new FAIL: gdb.base/starti.exp:
new FAIL: gdb.base/step-break.exp:
new FAIL: gdb.base/step-break.exp: can't run to main
new FAIL: gdb.base/step-bt.exp:
PASS -> FAIL: gdb.base/step-bt.exp: backtrace after first instruction step
PASS -> FAIL: gdb.base/step-bt.exp: backtrace after second instruction step
PASS -> FAIL: gdb.base/step-bt.exp: breakpoint at first instruction of hello
PASS -> FAIL: gdb.base/step-bt.exp: run to hello
new FAIL: gdb.base/step-line.exp:
new FAIL: gdb.base/step-line.exp: can't run to main
new FAIL: gdb.base/step-over-exit.exp:
new FAIL: gdb.base/step-over-exit.exp: can't run to main
new FAIL: gdb.base/step-over-no-symbols.exp: displaced=auto:
new FAIL: gdb.base/step-over-no-symbols.exp: displaced=auto: couldn't run to main
new FAIL: gdb.base/step-over-no-symbols.exp: displaced=off:
new FAIL: gdb.base/step-over-no-symbols.exp: displaced=off: couldn't run to main
new FAIL: gdb.base/step-over-no-symbols.exp: displaced=on:
new FAIL: gdb.base/step-over-no-symbols.exp: displaced=on: couldn't run to main
new FAIL: gdb.base/step-over-syscall.exp:
new FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off:
new FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: run to main
new FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off:
new FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: run to main
new FAIL: gdb.base/step-over-syscall.exp: run to main
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off:
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: run to main
new FAIL: gdb.base/step-resume-infcall.exp:
new FAIL: gdb.base/step-sw-breakpoint-adjust-pc.exp: non_stop=off: displaced_step=off: always_inserted=off:
new FAIL: gdb.base/step-sw-breakpoint-adjust-pc.exp: non_stop=off: displaced_step=off: always_inserted=on:
new FAIL: gdb.base/step-sw-breakpoint-adjust-pc.exp: non_stop=off: displaced_step=on: always_inserted=off:
new FAIL: gdb.base/step-sw-breakpoint-adjust-pc.exp: non_stop=off: displaced_step=on: always_inserted=on:
new FAIL: gdb.base/step-sw-breakpoint-adjust-pc.exp: non_stop=on: displaced_step=off: always_inserted=off:
new FAIL: gdb.base/step-sw-breakpoint-adjust-pc.exp: non_stop=on: displaced_step=off: always_inserted=on:
new FAIL: gdb.base/step-sw-breakpoint-adjust-pc.exp: non_stop=on: displaced_step=on: always_inserted=off:
new FAIL: gdb.base/step-sw-breakpoint-adjust-pc.exp: non_stop=on: displaced_step=on: always_inserted=on:
new FAIL: gdb.base/step-symless.exp:
new FAIL: gdb.base/step-test.exp:
new FAIL: gdb.base/step-test.exp: can't run to main
new FAIL: gdb.base/store.exp:
new FAIL: gdb.base/structs.exp:
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 1 structs-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 1 structs-td
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 1 structs-tf
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 1 structs-ti
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 1 structs-tl
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 1 structs-tld
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 1 structs-tll
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 1 structs-ts
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-tc-ti
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-tc-tl
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-tc-ts
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-td-tf
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-tf
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-tf-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-tf-td
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-ti
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-ti-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-tl
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-tl-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-ts
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-ts-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 3 structs-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 3 structs-ts
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 4 structs-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 4 structs-ts
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 5 structs-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 6 structs-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 7 structs-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 8 structs-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 1 structs-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 1 structs-td
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 1 structs-tf
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 1 structs-ti
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 1 structs-tl
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 1 structs-tld
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 1 structs-tll
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 1 structs-ts
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-tc-ti
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-tc-tl
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-tc-ts
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-td-tf
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-tf
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-tf-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-tf-td
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-ti
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-ti-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-tl
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-tl-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-ts
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-ts-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 3 structs-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 3 structs-ts
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 4 structs-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 4 structs-ts
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 5 structs-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 6 structs-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 7 structs-tc
PASS -> FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 8 structs-tc
PASS -> FAIL: gdb.base/structs.exp: call Fun<n>
PASS -> FAIL: gdb.base/structs.exp: continue to breakpoint: chartest-done
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 1 structs-tc
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 1 structs-td
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 1 structs-tf
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 1 structs-ti
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 1 structs-tl
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 1 structs-tld
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 1 structs-tll
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 1 structs-ts
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-tc
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-tc-ti
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-tc-tl
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-tc-ts
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-td-tf
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-tf
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-tf-tc
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-tf-td
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-ti
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-ti-tc
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-tl
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-tl-tc
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-ts
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-ts-tc
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 3 structs-tc
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 3 structs-ts
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 4 structs-tc
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 4 structs-ts
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 5 structs-tc
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 6 structs-tc
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 7 structs-tc
PASS -> FAIL: gdb.base/structs.exp: finish foo<n>; return 8 structs-tc
PASS -> FAIL: gdb.base/structs.exp: p chartest
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 1 structs-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 1 structs-td
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 1 structs-tf
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 1 structs-ti
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 1 structs-tl
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 1 structs-tld
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 1 structs-tll
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 1 structs-ts
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 10 structs-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 11 structs-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 12 structs-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 13 structs-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 14 structs-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 15 structs-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 16 structs-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 17 structs-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tc-td
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tc-tf
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tc-ti
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tc-tl
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tc-tld
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tc-tll
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tc-ts
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-td
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-td-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-td-tf
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tf
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tf-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tf-td
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-ti
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-ti-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tl
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tl-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tld
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tld-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tll
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tll-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-ts
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-ts-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 3 structs-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 3 structs-tc-tf
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 3 structs-tc-ti
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 3 structs-tc-tl
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 3 structs-tc-ts
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 3 structs-tf
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 3 structs-tf-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 3 structs-ti
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 3 structs-ti-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 3 structs-tl
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 3 structs-tl-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 3 structs-ts
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 3 structs-ts-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 4 structs-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 4 structs-tc-tf
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 4 structs-tc-ti
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 4 structs-tc-tl
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 4 structs-tc-ts
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 4 structs-tf-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 4 structs-ti-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 4 structs-tl-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 4 structs-ts
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 4 structs-ts-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 5 structs-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 5 structs-tc-ts
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 5 structs-tf-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 5 structs-ti-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 5 structs-tl-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 5 structs-ts
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 5 structs-ts-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 6 structs-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 6 structs-tc-ts
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 6 structs-tf-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 6 structs-ti-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 6 structs-tl-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 6 structs-ts-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 7 structs-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 7 structs-ts-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 8 structs-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 8 structs-ts-tc
PASS -> FAIL: gdb.base/structs.exp: p/c L<n>; call 9 structs-tc
PASS -> FAIL: gdb.base/structs.exp: p/c fun<n>
PASS -> FAIL: gdb.base/structs.exp: ptype foo1; structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo1; structs-td
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo1; structs-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo1; structs-ti
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo1; structs-tl
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo1; structs-tld
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo1; structs-tll
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo1; structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-tc-td
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-tc-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-tc-ti
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-tc-tl
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-tc-tld
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-tc-tll
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-tc-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-td-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-td-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-tf-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-tf-td
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-ti-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-tl-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-tld-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-tll-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-ts-tc
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 1 structs-tc
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 1 structs-td
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 1 structs-tf
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 1 structs-ti
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 1 structs-tl
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 1 structs-tld
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 1 structs-tll
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 1 structs-ts
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-tc
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-tc-ti
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-tc-tl
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-tc-ts
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-td-tf
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-tf
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-tf-tc
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-tf-td
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-ti
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-ti-tc
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-tl
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-tl-tc
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-ts
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-ts-tc
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 3 structs-tc
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 3 structs-ts
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 4 structs-tc
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 4 structs-ts
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 5 structs-tc
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 6 structs-tc
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 7 structs-tc
PASS -> FAIL: gdb.base/structs.exp: return foo<n>; return 8 structs-tc
new UNRESOLVED: gdb.base/structs.exp: setting breakpoint at 318
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 1 structs-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 1 structs-td
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 1 structs-tf
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 1 structs-ti
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 1 structs-tl
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 1 structs-tld
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 1 structs-tll
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 1 structs-ts
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-tc-ti
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-tc-tl
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-tc-ts
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-td-tf
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-tf
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-tf-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-tf-td
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-ti
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-ti-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-tl
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-tl-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-ts
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-ts-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 3 structs-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 3 structs-ts
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 4 structs-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 4 structs-ts
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 5 structs-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 6 structs-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 7 structs-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> finished; return 8 structs-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 1 structs-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 1 structs-td
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 1 structs-tf
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 1 structs-ti
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 1 structs-tl
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 1 structs-tld
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 1 structs-tll
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 1 structs-ts
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-tc-ti
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-tc-tl
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-tc-ts
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-td-tf
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-tf
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-tf-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-tf-td
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-ti
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-ti-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-tl
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-tl-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-ts
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-ts-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 3 structs-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 3 structs-ts
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 4 structs-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 4 structs-ts
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 5 structs-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 6 structs-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 7 structs-tc
PASS -> FAIL: gdb.base/structs.exp: value foo<n> returned; return 8 structs-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 1 structs-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 1 structs-td
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 1 structs-tf
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 1 structs-ti
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 1 structs-tl
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 1 structs-tld
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 1 structs-tll
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 1 structs-ts
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-tc-ti
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-tc-tl
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-tc-ts
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-td-tf
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-tf
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-tf-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-tf-td
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-ti
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-ti-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-tl
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-tl-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-ts
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-ts-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 3 structs-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 3 structs-ts
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 4 structs-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 4 structs-ts
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 5 structs-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 6 structs-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 7 structs-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for finish; return 8 structs-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 1 structs-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 1 structs-td
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 1 structs-tf
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 1 structs-ti
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 1 structs-tl
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 1 structs-tld
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 1 structs-tll
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 1 structs-ts
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-tc-ti
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-tc-tl
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-tc-ts
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-td-tf
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-tf
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-tf-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-tf-td
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-ti
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-ti-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-tl
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-tl-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-ts
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-ts-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 3 structs-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 3 structs-ts
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 4 structs-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 4 structs-ts
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 5 structs-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 6 structs-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 7 structs-tc
PASS -> FAIL: gdb.base/structs.exp: zed L<n> for return; return 8 structs-tc
new FAIL: gdb.base/structs2.exp:
new FAIL: gdb.base/structs2.exp: can't run to main
new FAIL: gdb.base/structs3.exp:
new FAIL: gdb.base/style-logging.exp:
new FAIL: gdb.base/style-logging.exp: style tests failed
new FAIL: gdb.base/style.exp:
new FAIL: gdb.base/style.exp: style tests failed
new FAIL: gdb.base/sym-file.exp:
new FAIL: gdb.base/sym-file.exp: can't run to main
new FAIL: gdb.base/symbol-alias.exp:
new FAIL: gdb.base/symbol-alias.exp: can't run to main
new FAIL: gdb.base/symbol-without-target_section.exp:
PASS -> FAIL: gdb.base/symbol-without-target_section.exp: add-symbol-file
PASS -> FAIL: gdb.base/symfile-warn.exp: add-symbol-file
new FAIL: gdb.base/symlink-sourcefile.exp:
new FAIL: gdb.base/symtab-search-order.exp:
new FAIL: gdb.base/symtab-search-order.exp: can't run to main
new FAIL: gdb.base/term.exp:
new FAIL: gdb.base/term.exp: can't run to break_here
new FAIL: gdb.base/twice.exp:
new FAIL: gdb.base/type-opaque.exp:
new FAIL: gdb.base/type-opaque.exp: can't run to main
new FAIL: gdb.base/ui-redirect.exp:
new FAIL: gdb.base/ui-redirect.exp: can't run to main
new FAIL: gdb.base/unload.exp:
PASS -> UNRESOLVED: gdb.base/unload.exp: continue to shrfunc2
PASS -> FAIL: gdb.base/unload.exp: continuing to unloaded libfile
PASS -> UNRESOLVED: gdb.base/unload.exp: continuing to unloaded libfile2
PASS -> FAIL: gdb.base/unload.exp: pending breakpoint info on first run at shrfunc1
PASS -> UNRESOLVED: gdb.base/unload.exp: pending breakpoint info on second run at shrfunc1
PASS -> UNRESOLVED: gdb.base/unload.exp: pending breakpoint info on second run at shrfunc2
PASS -> FAIL: gdb.base/unload.exp: print y from libfile
PASS -> UNRESOLVED: gdb.base/unload.exp: print y from libfile2
PASS -> FAIL: gdb.base/unload.exp: running program
new UNRESOLVED: gdb.base/unload.exp: setting breakpoint at unload.c:66
new UNRESOLVED: gdb.base/unload.exp: setting breakpoint at unload.c:93
new FAIL: gdb.base/until-nodebug.exp:
new FAIL: gdb.base/until-nodebug.exp: can't run to main
new FAIL: gdb.base/until.exp:
new FAIL: gdb.base/until.exp: can't run to main
new FAIL: gdb.base/unwindonsignal.exp:
new FAIL: gdb.base/unwindonsignal.exp: can't run to main
new FAIL: gdb.base/utf8-identifiers.exp:
new FAIL: gdb.base/utf8-identifiers.exp: couldn't run to done
new FAIL: gdb.base/value-double-free.exp:
new FAIL: gdb.base/varargs.exp:
new FAIL: gdb.base/vdso-warning.exp:
PASS -> FAIL: gdb.base/vdso-warning.exp: core: save a corefile
PASS -> FAIL: gdb.base/vdso-warning.exp: run: startup
new FAIL: gdb.base/vdso-warning.exp: setup: setting breakpoint at main
new FAIL: gdb.base/vla-datatypes.exp:
new FAIL: gdb.base/vla-optimized-out.exp: o1:
new FAIL: gdb.base/vla-optimized-out.exp: o1: can't run to f1
new FAIL: gdb.base/vla-optimized-out.exp: o3:
new FAIL: gdb.base/vla-optimized-out.exp: o3: can't run to f1
new FAIL: gdb.base/vla-optimized-out.exp: o3_strict:
new FAIL: gdb.base/vla-optimized-out.exp: o3_strict: can't run to f1
new FAIL: gdb.base/vla-ptr.exp:
new FAIL: gdb.base/vla-sideeffect.exp:
new FAIL: gdb.base/vla-stub.exp:
PASS -> FAIL: gdb.base/vla-stub.exp: p *local_struct.ptr
PASS -> FAIL: gdb.base/vla-stub.exp: whatis *local_struct.ptr
PASS -> FAIL: gdb.base/vla-stub.exp: whatis local_struct.here
new FAIL: gdb.base/volatile.exp:
new FAIL: gdb.base/watch-bitfields.exp:
new FAIL: gdb.base/watch-cond-infcall.exp: hw:
new FAIL: gdb.base/watch-cond-infcall.exp: hw: run to main
new FAIL: gdb.base/watch-cond-infcall.exp: sw:
new FAIL: gdb.base/watch-cond-infcall.exp: sw: run to main
new FAIL: gdb.base/watch-cond.exp:
new FAIL: gdb.base/watch-cond.exp: can't run to main
new FAIL: gdb.base/watch-non-mem.exp:
new FAIL: gdb.base/watch-non-mem.exp: can't run to main
new FAIL: gdb.base/watch-read.exp:
new FAIL: gdb.base/watch-read.exp: run to main
new FAIL: gdb.base/watch-vfork.exp:
new FAIL: gdb.base/watch-vfork.exp: run to main
new FAIL: gdb.base/watch_thread_num.exp:
new FAIL: gdb.base/watch_thread_num.exp: run to main
new FAIL: gdb.base/watchpoint-cond-gone.exp:
new FAIL: gdb.base/watchpoint-delete.exp:
new FAIL: gdb.base/watchpoint-hw-hit-once.exp:
new FAIL: gdb.base/watchpoint-hw.exp:
PASS -> FAIL: gdb.base/watchpoint-hw.exp: watch watchee
new FAIL: gdb.base/watchpoint-reuse-slot.exp:
new FAIL: gdb.base/watchpoint-reuse-slot.exp: can't run to main
new FAIL: gdb.base/watchpoint-solib.exp:
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to foo
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to foo again
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
PASS -> FAIL: gdb.base/watchpoint-solib.exp: rerun to main
PASS -> FAIL: gdb.base/watchpoint-solib.exp: set watchpoint on g
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp:
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: run to main
new FAIL: gdb.base/watchpoint-unaligned.exp:
new FAIL: gdb.base/watchpoint.exp:
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed when can-set-hw-watchpoints cleared
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo4
PASS -> FAIL: gdb.base/watchpoint.exp: delete watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: delete watch buf
PASS -> FAIL: gdb.base/watchpoint.exp: delete watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: delete watch foo4
PASS -> FAIL: gdb.base/watchpoint.exp: delete watch ival3
PASS -> FAIL: gdb.base/watchpoint.exp: delete watch w/condition and thread
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `7 + count'
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `count + 6'
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: marker1 is constant
new FAIL: gdb.base/watchpoint.exp: no-hw:
PASS -> FAIL: gdb.base/watchpoint.exp: no-hw: continue to breakpoint: func5 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: no-hw: continue to breakpoint: func6 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: no-hw: continue to breakpoint: func7 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: no-hw: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: no-hw: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: no-hw: continue with watch foo4
PASS -> FAIL: gdb.base/watchpoint.exp: no-hw: delete watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: no-hw: delete watch buf
PASS -> FAIL: gdb.base/watchpoint.exp: no-hw: delete watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: no-hw: delete watch foo4
PASS -> FAIL: gdb.base/watchpoint.exp: no-hw: delete watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: no-hw: delete watchpoint `7 + count'
PASS -> FAIL: gdb.base/watchpoint.exp: no-hw: delete watchpoint `count + 6'
PASS -> FAIL: gdb.base/watchpoint.exp: no-hw: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: no-hw: marker1 is constant
PASS -> FAIL: gdb.base/watchpoint.exp: no-hw: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: no-hw: set breakpoint at marker1
new FAIL: gdb.base/watchpoint.exp: no-hw: setting breakpoint at 151
new FAIL: gdb.base/watchpoint.exp: no-hw: setting breakpoint at 159
new FAIL: gdb.base/watchpoint.exp: no-hw: setting breakpoint at 167
PASS -> FAIL: gdb.base/watchpoint.exp: no-hw: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: no-hw: watch -location .x
PASS -> FAIL: gdb.base/watchpoint.exp: no-hw: watch 7 + count
PASS -> FAIL: gdb.base/watchpoint.exp: no-hw: watch buf
PASS -> FAIL: gdb.base/watchpoint.exp: no-hw: watch count + 6
PASS -> FAIL: gdb.base/watchpoint.exp: no-hw: watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: no-hw: watch foo4
PASS -> FAIL: gdb.base/watchpoint.exp: no-hw: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed when can-set-hw-watchpoints cleared
PASS -> FAIL: gdb.base/watchpoint.exp: set breakpoint at marker1
PASS -> FAIL: gdb.base/watchpoint.exp: set slow condition watch w/thread
PASS -> FAIL: gdb.base/watchpoint.exp: set slow conditional watch
new FAIL: gdb.base/watchpoint.exp: setting breakpoint at 151
new FAIL: gdb.base/watchpoint.exp: setting breakpoint at 159
new FAIL: gdb.base/watchpoint.exp: setting breakpoint at 167
PASS -> FAIL: gdb.base/watchpoint.exp: trigger slow conditional watch
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
PASS -> FAIL: gdb.base/watchpoint.exp: watch 7 + count
PASS -> FAIL: gdb.base/watchpoint.exp: watch buf
PASS -> FAIL: gdb.base/watchpoint.exp: watch count + 6
PASS -> FAIL: gdb.base/watchpoint.exp: watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: watch foo4
new FAIL: gdb.base/watchpoint.exp: watch tests suppressed
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
new FAIL: gdb.base/watchpoints.exp:
PASS -> FAIL: gdb.base/watchpoints.exp: before inferior start: create access watchpoint
PASS -> FAIL: gdb.base/watchpoints.exp: before inferior start: create read watchpoint
PASS -> FAIL: gdb.base/watchpoints.exp: before inferior start: create watchpoint
new FAIL: gdb.base/watchpoints.exp: disable 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
new FAIL: gdb.base/wchar.exp:
new FAIL: gdb.base/whatis-exp.exp:
new FAIL: gdb.base/whatis-ptype-typedefs.exp: lang=c++:
new FAIL: gdb.base/whatis-ptype-typedefs.exp: lang=c++: can't run to main
new FAIL: gdb.base/whatis-ptype-typedefs.exp: lang=c:
new FAIL: gdb.base/whatis-ptype-typedefs.exp: lang=c: can't run to main
new FAIL: gdb.base/whatis.exp: dwarf:
PASS -> FAIL: gdb.base/whatis.exp: dwarf: print_object=off: whatis named structure using type name
PASS -> FAIL: gdb.base/whatis.exp: dwarf: print_object=off: whatis named structure using type name and pointer
PASS -> FAIL: gdb.base/whatis.exp: dwarf: print_object=off: whatis named structure using type name and reference
PASS -> FAIL: gdb.base/whatis.exp: dwarf: print_object=on: whatis named structure using type name
PASS -> FAIL: gdb.base/whatis.exp: dwarf: print_object=on: whatis named structure using type name and pointer
PASS -> FAIL: gdb.base/whatis.exp: dwarf: print_object=on: whatis named structure using type name and reference
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis &
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis &v_struct1
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis &v_struct2
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis &v_struct_ptr1
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis &v_struct_ptr2
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis &v_union
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis &v_union2
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis &v_union_ptr
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis &v_union_ptr2
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis applied to variable defined by typedef
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis char
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis char array
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis char function
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis char pointer
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis complicated structure
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis complicated union
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis double
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis double array
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis double function
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis double pointer
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis enumeration
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis enumeration using type name
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis float
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis float array
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis float function
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis float pointer
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis inner structure
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis inner structure member
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis inner union
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis inner union member
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis int
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis int array
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis int function
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis int pointer
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis long
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis long array
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis long function
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis long long function
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis long long pointer
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis long pointer
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis named structure
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis named union
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis named union using type name
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis outer structure
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis outer structure member
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis short
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis short array
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis short function
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis short pointer
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis signed char
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis signed char array
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis signed char function
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis signed char pointer
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis signed int
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis signed int array
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis signed int function
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis signed int pointer
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis signed long
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis signed long array
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis signed long function
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis signed long long function
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis signed long long pointer
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis signed long pointer
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis signed short
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis signed short array
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis signed short function
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis signed short pointer
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis unnamed structure
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis unnamed union
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis unsigned char
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis unsigned char array
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis unsigned char function
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis unsigned char pointer
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis unsigned int
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis unsigned int array
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis unsigned int function
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis unsigned int pointer
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis unsigned long
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis unsigned long array
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis unsigned long function
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis unsigned long long
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis unsigned long long array
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis unsigned long long function
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis unsigned long long pointer
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis unsigned long pointer
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis unsigned short
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis unsigned short array
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis unsigned short function
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis unsigned short pointer
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis using typedef type name
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis v_struct1.v_char_member
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis v_struct2.v_char_member
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis v_struct_ptr1
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis v_struct_ptr1->v_char_member
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis v_struct_ptr2
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis v_struct_ptr2->v_char_member
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis v_union.v_char_member
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis v_union2.v_char_member
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis v_union_ptr
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis v_union_ptr->v_char_member
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis v_union_ptr2
PASS -> FAIL: gdb.base/whatis.exp: dwarf: whatis v_union_ptr2->v_char_member
new FAIL: gdb.base/with.exp:
PASS -> FAIL: gdb.base/with.exp: basics: print g_s
PASS -> FAIL: gdb.base/with.exp: basics: with language ada -- print g_s
PASS -> FAIL: gdb.base/with.exp: basics: with language ada -- with language c -- print g_s
PASS -> FAIL: gdb.base/with.exp: basics: with print pretty -- print g_s
new FAIL: gdb.base/with.exp: repeat:
PASS -> FAIL: gdb.base/with.exp: repeat: print g_s
PASS -> FAIL: gdb.base/with.exp: repeat: reinvoke with language
PASS -> FAIL: gdb.base/with.exp: repeat: reinvoke with language and --
PASS -> FAIL: gdb.base/with.exp: repeat: repeat command line
new FAIL: gdb.base/with.exp: run control:
new FAIL: gdb.base/with.exp: run control: cannot run to main
PASS -> FAIL: gdb.base/with.exp: user-defined: with language ada -- usercmd
PASS -> UNRESOLVED: gdb.base/write_mem.exp: reject set {int}main = 0x4242
PASS -> UNRESOLVED: gdb.base/write_mem.exp: set {int}main = 0x4242
PASS -> UNRESOLVED: gdb.base/write_mem.exp: x /xh main
new FAIL: gdb.base/wrong_frame_bt_full.exp:
new FAIL: gdb.compile/compile-cplus-anonymous.exp:
new FAIL: gdb.compile/compile-cplus-array-decay.exp:
new FAIL: gdb.compile/compile-cplus-inherit.exp:
new FAIL: gdb.compile/compile-cplus-member.exp:
new FAIL: gdb.compile/compile-cplus-method.exp:
new FAIL: gdb.compile/compile-cplus-namespace.exp:
new FAIL: gdb.compile/compile-cplus-nested.exp:
new FAIL: gdb.compile/compile-cplus-print.exp:
new FAIL: gdb.compile/compile-cplus-virtual.exp:
new FAIL: gdb.compile/compile-cplus.exp:
new FAIL: gdb.compile/compile-ops.exp:
new FAIL: gdb.compile/compile-print.exp:
new FAIL: gdb.compile/compile-setjmp.exp:
new FAIL: gdb.compile/compile-tls.exp:
new FAIL: gdb.compile/compile-tls.exp: can't run to main
new FAIL: gdb.compile/compile.exp:
new FAIL: gdb.cp/abstract-origin.exp:
new FAIL: gdb.cp/align.exp:
new FAIL: gdb.cp/annota2.exp:
new FAIL: gdb.cp/annota3.exp:
new FAIL: gdb.cp/anon-ns.exp:
new FAIL: gdb.cp/anon-struct.exp:
PASS -> FAIL: gdb.cp/anon-struct.exp: print type of X::t2
PASS -> FAIL: gdb.cp/anon-struct.exp: print type of X::t2::t2
PASS -> FAIL: gdb.cp/anon-struct.exp: print type of t3::~t3
PASS -> FAIL: gdb.cp/anon-struct.exp: print type of t::t
new FAIL: gdb.cp/anon-union.exp:
new FAIL: gdb.cp/arg-reference.exp:
PASS -> FAIL: gdb.cp/arg-reference.exp: no false reference
new FAIL: gdb.cp/baseenum.exp:
new FAIL: gdb.cp/bool.exp:
PASS -> FAIL: gdb.cp/bool.exp: print return_false
PASS -> FAIL: gdb.cp/bool.exp: print return_true
new FAIL: gdb.cp/breakpoint.exp:
new FAIL: gdb.cp/bs15503.exp:
new FAIL: gdb.cp/call-c.exp:
PASS -> FAIL: gdb.cp/call-c.exp: b 42
PASS -> FAIL: gdb.cp/call-c.exp: continue to bp
PASS -> FAIL: gdb.cp/call-c.exp: print foo
PASS -> FAIL: gdb.cp/call-c.exp: print handle->func
PASS -> FAIL: gdb.cp/call-c.exp: print rf->func
new FAIL: gdb.cp/casts.exp:
new FAIL: gdb.cp/chained-calls.exp:
new FAIL: gdb.cp/class2.exp:
new FAIL: gdb.cp/classes.exp:
new FAIL: gdb.cp/cmpd-minsyms.exp:
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at "int GDB<char>::even_harder<int>
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at 'GDB<int>::a
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at 'GDB<int>::b
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at 'GDB<int>::c
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at GDB<char>::harder
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at GDB<int>::harder
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at GDB<int>::operator ==
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at GDB<int>::operator==
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at GDB<int>::simple
new FAIL: gdb.cp/constexpr-field.exp:
new FAIL: gdb.cp/converts.exp:
new FAIL: gdb.cp/cp-relocate.exp:
PASS -> FAIL: gdb.cp/cp-relocate.exp: info functions
new FAIL: gdb.cp/cpcompletion.exp:
PASS -> FAIL: gdb.cp/cpcompletion.exp: complete class methods
PASS -> FAIL: gdb.cp/cpcompletion.exp: complete class methods beginning with F
new FAIL: gdb.cp/cpexprs.exp:
new FAIL: gdb.cp/cplabel.exp:
new FAIL: gdb.cp/cplusfuncs.exp:
PASS -> FAIL: gdb.cp/cplusfuncs.exp: detect dm_operator_char_star
PASS -> FAIL: gdb.cp/cplusfuncs.exp: detect dm_type_char_star
PASS -> FAIL: gdb.cp/cplusfuncs.exp: detect dm_type_foo_ref
PASS -> FAIL: gdb.cp/cplusfuncs.exp: detect dm_type_int_star
PASS -> FAIL: gdb.cp/cplusfuncs.exp: detect dm_type_long
PASS -> FAIL: gdb.cp/cplusfuncs.exp: detect dm_type_long_star
PASS -> FAIL: gdb.cp/cplusfuncs.exp: detect dm_type_short
PASS -> FAIL: gdb.cp/cplusfuncs.exp: detect dm_type_typedef
PASS -> FAIL: gdb.cp/cplusfuncs.exp: detect dm_type_unsigned_int
PASS -> FAIL: gdb.cp/cplusfuncs.exp: detect dm_type_unsigned_long
PASS -> FAIL: gdb.cp/cplusfuncs.exp: detect dm_type_unsigned_short
PASS -> FAIL: gdb.cp/cplusfuncs.exp: detect dm_type_void
PASS -> FAIL: gdb.cp/cplusfuncs.exp: detect dm_type_void_star
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator char\*
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator delete
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator int
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator new
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator!
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator!=
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator%
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator%=
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator&&
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator&
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator&=
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator+
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator++
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator+=
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator,
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator-
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator--
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator-=
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator->
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator->\*
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator/
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator/=
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator<
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator<<
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator<<=
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator<=
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator=
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator==
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator>
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator>=
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator>>
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator>>=
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator\*
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator\*=
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator\[\]
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator^
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator^=
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator|
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator|=
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator||
PASS -> FAIL: gdb.cp/cplusfuncs.exp: info function for "operator~
PASS -> FAIL: gdb.cp/cplusfuncs.exp: list foo::operator int*
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &'overload1arg
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &'overloadargs
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator char*
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator delete
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator int
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator new
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator new[]
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator!
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator!=
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator%
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator%=
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator&&
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator&
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator&=
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator*
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator*=
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator+
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator++
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator+=
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator,
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator-
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator--
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator-=
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator->
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator->*
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator/
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator/=
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator<
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator<<
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator<<=
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator<=
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator=
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator==
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator>
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator>=
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator>>
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator>>=
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator[]
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator^
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator^=
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator|
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator|=
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator||
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &foo::operator~
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &hairyfunc1
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &hairyfunc2
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &hairyfunc3
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &hairyfunc4
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &hairyfunc5
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &hairyfunc6
PASS -> FAIL: gdb.cp/cplusfuncs.exp: print &hairyfunc7
new FAIL: gdb.cp/cpsizeof.exp:
new FAIL: gdb.cp/ctti.exp:
new FAIL: gdb.cp/derivation.exp:
PASS -> FAIL: gdb.cp/derivation.exp: before run: p
PASS -> FAIL: gdb.cp/derivation.exp: before run: ptype A2::value_type
PASS -> FAIL: gdb.cp/derivation.exp: before run: ptype A::value_type
PASS -> FAIL: gdb.cp/derivation.exp: before run: ptype D2::value_type
PASS -> FAIL: gdb.cp/derivation.exp: before run: ptype D::value_type
PASS -> FAIL: gdb.cp/derivation.exp: before run: ptype E::value_type
PASS -> FAIL: gdb.cp/derivation.exp: before run: ptype F::value_type
PASS -> FAIL: gdb.cp/derivation.exp: before run: ptype Z::value_type
PASS -> FAIL: gdb.cp/derivation.exp: before run: ptype ZZ::value_type
PASS -> FAIL: gdb.cp/derivation.exp: before run: whatis A2::value_type
PASS -> FAIL: gdb.cp/derivation.exp: before run: whatis A::value_type
PASS -> FAIL: gdb.cp/derivation.exp: before run: whatis D2::value_type
PASS -> FAIL: gdb.cp/derivation.exp: before run: whatis D::value_type
PASS -> FAIL: gdb.cp/derivation.exp: before run: whatis E::value_type
PASS -> FAIL: gdb.cp/derivation.exp: before run: whatis F::value_type
PASS -> FAIL: gdb.cp/derivation.exp: before run: whatis Z::value_type
PASS -> FAIL: gdb.cp/derivation.exp: before run: whatis ZZ::value_type
new FAIL: gdb.cp/destrprint.exp:
new FAIL: gdb.cp/dispcxx.exp:
new FAIL: gdb.cp/ena-dis-br-range.exp:
new FAIL: gdb.cp/ena-dis-br-range.exp: run to marker
new FAIL: gdb.cp/enum-class.exp:
new FAIL: gdb.cp/except-multi-location.exp: static_lib=0: static_bin=0:
new FAIL: gdb.cp/except-multi-location.exp: static_lib=0: static_bin=0: can't run to main
new FAIL: gdb.cp/except-multi-location.exp: static_lib=0: static_bin=1:
new FAIL: gdb.cp/except-multi-location.exp: static_lib=0: static_bin=1: can't run to main
new FAIL: gdb.cp/except-multi-location.exp: static_lib=1: static_bin=0:
new FAIL: gdb.cp/except-multi-location.exp: static_lib=1: static_bin=0: can't run to main
new FAIL: gdb.cp/except-multi-location.exp: static_lib=1: static_bin=1:
new FAIL: gdb.cp/except-multi-location.exp: static_lib=1: static_bin=1: can't run to main
new FAIL: gdb.cp/exception.exp:
PASS -> FAIL: gdb.cp/exception.exp: Set temporary breakpoint at main
PASS -> FAIL: gdb.cp/exception.exp: run to main
new FAIL: gdb.cp/exceptprint.exp:
new FAIL: gdb.cp/expand-psymtabs-cxx.exp:
PASS -> FAIL: gdb.cp/expand-psymtabs-cxx.exp: after expand
PASS -> FAIL: gdb.cp/expand-psymtabs-cxx.exp: before expand
PASS -> FAIL: gdb.cp/expand-psymtabs-cxx.exp: force expand
new FAIL: gdb.cp/expand-sals.exp:
new FAIL: gdb.cp/extern-c.exp:
PASS -> FAIL: gdb.cp/extern-c.exp: continue to breakpoint: c_func
PASS -> FAIL: gdb.cp/extern-c.exp: continue to breakpoint: c_funcs_1
PASS -> FAIL: gdb.cp/extern-c.exp: continue to breakpoint: c_funcs_2
PASS -> FAIL: gdb.cp/extern-c.exp: rbreak c_funcs
PASS -> FAIL: gdb.cp/extern-c.exp: set commands on multiple breakpoints
PASS -> FAIL: gdb.cp/extern-c.exp: setting breakpoint at c_func
PASS -> FAIL: gdb.cp/extern-c.exp: verify counter at first breakpoint
PASS -> FAIL: gdb.cp/extern-c.exp: verify counter at second breakpoint
new FAIL: gdb.cp/filename.exp:
new FAIL: gdb.cp/formatted-ref.exp:
new FAIL: gdb.cp/formatted-ref.exp: find address of e1
new FAIL: gdb.cp/formatted-ref.exp: find address of i1
new FAIL: gdb.cp/formatted-ref.exp: find address of s1
PASS -> FAIL: gdb.cp/formatted-ref.exp: print s.x == 13
PASS -> FAIL: gdb.cp/formatted-ref.exp: print/x &e
PASS -> FAIL: gdb.cp/formatted-ref.exp: print/x &i
PASS -> FAIL: gdb.cp/formatted-ref.exp: print/x &s
PASS -> FAIL: gdb.cp/formatted-ref.exp: print/x *
PASS -> FAIL: gdb.cp/formatted-ref.exp: print/x e
PASS -> FAIL: gdb.cp/formatted-ref.exp: print/x i
PASS -> FAIL: gdb.cp/formatted-ref.exp: print/x s
new FAIL: gdb.cp/fpointer.exp:
new FAIL: gdb.cp/gdb1355.exp:
new FAIL: gdb.cp/gdb2384.exp:
new FAIL: gdb.cp/gdb2495.exp:
new FAIL: gdb.cp/hang.exp:
PASS -> FAIL: gdb.cp/hang.exp: doesn't corrupt cv_type chain
PASS -> FAIL: gdb.cp/hang.exp: doesn't overwrite struct type
new FAIL: gdb.cp/impl-this.exp:
PASS -> FAIL: gdb.cp/impl-this.exp: before run: print A<int>::i
PASS -> FAIL: gdb.cp/impl-this.exp: before run: print B<int>::A<int>::i
PASS -> FAIL: gdb.cp/impl-this.exp: before run: print B<int>::i
PASS -> FAIL: gdb.cp/impl-this.exp: before run: print C::A<int>::i
PASS -> FAIL: gdb.cp/impl-this.exp: before run: print C::c
PASS -> FAIL: gdb.cp/impl-this.exp: before run: print C::i
PASS -> FAIL: gdb.cp/impl-this.exp: before run: print D::A<int>::i
PASS -> FAIL: gdb.cp/impl-this.exp: before run: print D::B<int>::A<int>::i
PASS -> FAIL: gdb.cp/impl-this.exp: before run: print D::B<int>::i
PASS -> FAIL: gdb.cp/impl-this.exp: before run: print D::C::A<int>::i
PASS -> FAIL: gdb.cp/impl-this.exp: before run: print D::C::c
PASS -> FAIL: gdb.cp/impl-this.exp: before run: print D::C::i
PASS -> FAIL: gdb.cp/impl-this.exp: before run: print D::i
PASS -> FAIL: gdb.cp/impl-this.exp: before run: print D::x
PASS -> FAIL: gdb.cp/impl-this.exp: before run: print c
PASS -> FAIL: gdb.cp/impl-this.exp: before run: print i
PASS -> FAIL: gdb.cp/impl-this.exp: before run: print x
new FAIL: gdb.cp/infcall-dlopen.exp:
new FAIL: gdb.cp/infcall-nodebug.exp: l=c++: s=debug:
new FAIL: gdb.cp/infcall-nodebug.exp: l=c++: s=debug: can't run to main
new FAIL: gdb.cp/infcall-nodebug.exp: l=c++: s=nodebug:
new FAIL: gdb.cp/infcall-nodebug.exp: l=c++: s=nodebug: can't run to main
new FAIL: gdb.cp/infcall-nodebug.exp: l=c: s=debug:
new FAIL: gdb.cp/infcall-nodebug.exp: l=c: s=debug: can't run to main
new FAIL: gdb.cp/infcall-nodebug.exp: l=c: s=nodebug:
new FAIL: gdb.cp/infcall-nodebug.exp: l=c: s=nodebug: can't run to main
new FAIL: gdb.cp/inherit.exp:
new FAIL: gdb.cp/iostream.exp:
new FAIL: gdb.cp/koenig.exp:
new FAIL: gdb.cp/local-static.exp: c++:
new FAIL: gdb.cp/local-static.exp: c++: couldn't run to breakpoint
new FAIL: gdb.cp/local-static.exp: c:
new FAIL: gdb.cp/local-static.exp: c: couldn't run to breakpoint
new FAIL: gdb.cp/local.exp:
new FAIL: gdb.cp/m-data.exp:
new FAIL: gdb.cp/m-static.exp:
new FAIL: gdb.cp/many-args.exp:
new FAIL: gdb.cp/mb-ctor.exp:
new FAIL: gdb.cp/mb-inline.exp:
new UNRESOLVED: gdb.cp/mb-inline.exp: can't run to main for multi_line_foo tests.
new UNRESOLVED: gdb.cp/mb-inline.exp: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.cp/mb-inline.exp: disabled breakpoint 1.2
PASS -> FAIL: gdb.cp/mb-inline.exp: disabling location: disable
PASS -> FAIL: gdb.cp/mb-inline.exp: info break
PASS -> FAIL: gdb.cp/mb-inline.exp: run to breakpoint
PASS -> FAIL: gdb.cp/mb-inline.exp: run to breakpoint 2
PASS -> FAIL: gdb.cp/mb-inline.exp: set breakpoint
new FAIL: gdb.cp/mb-templates.exp:
new UNRESOLVED: gdb.cp/mb-templates.exp: can't run to main for multi_line_foo tests.
new UNRESOLVED: gdb.cp/mb-templates.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/mb-templates.exp: disable breakpoint: disable
new UNRESOLVED: gdb.cp/mb-templates.exp: disabling location: disable
new UNRESOLVED: gdb.cp/mb-templates.exp: disabling location: enable
PASS -> FAIL: gdb.cp/mb-templates.exp: initial condition: run to breakpoint
new FAIL: gdb.cp/mb-templates.exp: initial condition: run to breakpoint 2
PASS -> FAIL: gdb.cp/mb-templates.exp: initial condition: set breakpoint
new UNRESOLVED: gdb.cp/mb-templates.exp: instantiation: run to breakpoint 2
new UNRESOLVED: gdb.cp/mb-templates.exp: instantiation: set breakpoint
new UNRESOLVED: gdb.cp/mb-templates.exp: separate condition: run to breakpoint 2
new FAIL: gdb.cp/mb-templates.exp: separate condition: set breakpoint
new FAIL: gdb.cp/mb-templates.exp: separate condition: set condition
new FAIL: gdb.cp/member-name.exp:
new FAIL: gdb.cp/member-ptr.exp:
new FAIL: gdb.cp/meth-typedefs.exp:
new FAIL: gdb.cp/method.exp:
new FAIL: gdb.cp/method2.exp:
new FAIL: gdb.cp/minsym-fallback.exp:
PASS -> FAIL: gdb.cp/minsym-fallback.exp: break C::f
PASS -> FAIL: gdb.cp/minsym-fallback.exp: break C::operator
PASS -> FAIL: gdb.cp/misc.exp: deduced language is C++, after full symbols
PASS -> FAIL: gdb.cp/misc.exp: deduced language is C++, before full symbols
PASS -> FAIL: gdb.cp/misc.exp: expression using block qualifier
PASS -> FAIL: gdb.cp/misc.exp: print a bool array
PASS -> FAIL: gdb.cp/misc.exp: print a bool var
PASS -> FAIL: gdb.cp/misc.exp: print s.a for foo struct
PASS -> FAIL: gdb.cp/misc.exp: set a bool array elem
PASS -> FAIL: gdb.cp/misc.exp: set a bool var
new FAIL: gdb.cp/namespace-enum.exp:
PASS -> FAIL: gdb.cp/namespace-enum.exp: print A_A
PASS -> FAIL: gdb.cp/namespace-enum.exp: print foo::B::B_B
PASS -> FAIL: gdb.cp/namespace-enum.exp: print foo::B_B
new FAIL: gdb.cp/namespace-nested-import.exp:
new FAIL: gdb.cp/namespace.exp:
PASS -> FAIL: gdb.cp/namespace.exp: show lang
new FAIL: gdb.cp/nested-types.exp:
PASS -> FAIL: gdb.cp/nested-types.exp: ptype S10
new FAIL: gdb.cp/nextoverthrow.exp:
new FAIL: gdb.cp/no-dmgl-verbose.exp:
PASS -> FAIL: gdb.cp/no-dmgl-verbose.exp: DMGL_VERBOSE-demangled f
new FAIL: gdb.cp/no-libstdcxx-probe.exp:
new FAIL: gdb.cp/non-trivial-retval.exp:
new FAIL: gdb.cp/noparam.exp:
PASS -> FAIL: gdb.cp/noparam.exp: p C::m
PASS -> FAIL: gdb.cp/nsalias.exp:
PASS -> FAIL: gdb.cp/nsalias.exp: compaint for too many recursively imported declarations
PASS -> FAIL: gdb.cp/nsalias.exp: list Outer::Inner::Innermost::foo
PASS -> FAIL: gdb.cp/nsalias.exp: list Outer::Inner::foo
PASS -> FAIL: gdb.cp/nsalias.exp: list Outer::Inner::innermost::foo
PASS -> FAIL: gdb.cp/nsalias.exp: list Outer::foo
PASS -> FAIL: gdb.cp/nsalias.exp: list Outer::inner::Innermost::foo
PASS -> FAIL: gdb.cp/nsalias.exp: list Outer::inner::foo
PASS -> FAIL: gdb.cp/nsalias.exp: list Outer::inner::innermost::foo
PASS -> FAIL: gdb.cp/nsalias.exp: list oi1::Innermost::foo
PASS -> FAIL: gdb.cp/nsalias.exp: list oi1::foo
PASS -> FAIL: gdb.cp/nsalias.exp: list oi1::innermost::foo
PASS -> FAIL: gdb.cp/nsalias.exp: list oi2::Innermost::foo
PASS -> FAIL: gdb.cp/nsalias.exp: list oi2::foo
PASS -> FAIL: gdb.cp/nsalias.exp: list oi2::innermost::foo
PASS -> FAIL: gdb.cp/nsalias.exp: list oi3::Innermost::foo
PASS -> FAIL: gdb.cp/nsalias.exp: list oi3::foo
PASS -> FAIL: gdb.cp/nsalias.exp: list oi3::innermost::foo
PASS -> FAIL: gdb.cp/nsalias.exp: list outer::Inner::Innermost::foo
PASS -> FAIL: gdb.cp/nsalias.exp: list outer::Inner::foo
PASS -> FAIL: gdb.cp/nsalias.exp: list outer::Inner::innermost::foo
PASS -> FAIL: gdb.cp/nsalias.exp: list outer::foo
PASS -> FAIL: gdb.cp/nsalias.exp: list outer::inner::Innermost::foo
PASS -> FAIL: gdb.cp/nsalias.exp: list outer::inner::foo
PASS -> FAIL: gdb.cp/nsalias.exp: list outer::inner::innermost::foo
PASS -> FAIL: gdb.cp/nsalias.exp: print Outer::Inner::Innermost::x
PASS -> FAIL: gdb.cp/nsalias.exp: print Outer::Inner::innermost::x
PASS -> FAIL: gdb.cp/nsalias.exp: print Outer::Inner::x
PASS -> FAIL: gdb.cp/nsalias.exp: print Outer::inner::Innermost::x
PASS -> FAIL: gdb.cp/nsalias.exp: print Outer::inner::innermost::x
PASS -> FAIL: gdb.cp/nsalias.exp: print Outer::inner::x
PASS -> FAIL: gdb.cp/nsalias.exp: print Outer::x
PASS -> FAIL: gdb.cp/nsalias.exp: print oi1::Innermost::x
PASS -> FAIL: gdb.cp/nsalias.exp: print oi1::innermost::x
PASS -> FAIL: gdb.cp/nsalias.exp: print oi1::x
PASS -> FAIL: gdb.cp/nsalias.exp: print oi2::Innermost::x
PASS -> FAIL: gdb.cp/nsalias.exp: print oi2::innermost::x
PASS -> FAIL: gdb.cp/nsalias.exp: print oi2::x
PASS -> FAIL: gdb.cp/nsalias.exp: print oi3::Innermost::x
PASS -> FAIL: gdb.cp/nsalias.exp: print oi3::innermost::x
PASS -> FAIL: gdb.cp/nsalias.exp: print oi3::x
PASS -> FAIL: gdb.cp/nsalias.exp: print outer::Inner::Innermost::x
PASS -> FAIL: gdb.cp/nsalias.exp: print outer::Inner::innermost::x
PASS -> FAIL: gdb.cp/nsalias.exp: print outer::Inner::x
PASS -> FAIL: gdb.cp/nsalias.exp: print outer::inner::Innermost::x
PASS -> FAIL: gdb.cp/nsalias.exp: print outer::inner::innermost::x
PASS -> FAIL: gdb.cp/nsalias.exp: print outer::inner::x
PASS -> FAIL: gdb.cp/nsalias.exp: print outer::x
PASS -> FAIL: gdb.cp/nsalias.exp: ptype Outer
PASS -> FAIL: gdb.cp/nsalias.exp: ptype Outer::Inner
PASS -> FAIL: gdb.cp/nsalias.exp: ptype Outer::Inner::Innermost
PASS -> FAIL: gdb.cp/nsalias.exp: ptype Outer::Inner::innermost
PASS -> FAIL: gdb.cp/nsalias.exp: ptype Outer::inner
PASS -> FAIL: gdb.cp/nsalias.exp: ptype Outer::inner::Innermost
PASS -> FAIL: gdb.cp/nsalias.exp: ptype Outer::inner::innermost
PASS -> FAIL: gdb.cp/nsalias.exp: ptype oi1
PASS -> FAIL: gdb.cp/nsalias.exp: ptype oi1::Innermost
PASS -> FAIL: gdb.cp/nsalias.exp: ptype oi1::innermost
PASS -> FAIL: gdb.cp/nsalias.exp: ptype oi2
PASS -> FAIL: gdb.cp/nsalias.exp: ptype oi2::Innermost
PASS -> FAIL: gdb.cp/nsalias.exp: ptype oi2::innermost
PASS -> FAIL: gdb.cp/nsalias.exp: ptype oi3
PASS -> FAIL: gdb.cp/nsalias.exp: ptype oi3::Innermost
PASS -> FAIL: gdb.cp/nsalias.exp: ptype oi3::innermost
PASS -> FAIL: gdb.cp/nsalias.exp: ptype outer
PASS -> FAIL: gdb.cp/nsalias.exp: ptype outer::Inner
PASS -> FAIL: gdb.cp/nsalias.exp: ptype outer::Inner::Innermost
PASS -> FAIL: gdb.cp/nsalias.exp: ptype outer::Inner::innermost
PASS -> FAIL: gdb.cp/nsalias.exp: ptype outer::inner
PASS -> FAIL: gdb.cp/nsalias.exp: ptype outer::inner::Innermost
PASS -> FAIL: gdb.cp/nsalias.exp: ptype outer::inner::innermost
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::Inner::Innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::Inner::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::Inner::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::inner::Innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::inner::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::inner::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi1::Innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi1::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi1::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi2::Innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi2::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi2::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi3::Innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi3::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi3::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::Inner::Innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::Inner::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::Inner::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::inner::Innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::inner::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::inner::innermost::foo
PASS -> FAIL: gdb.cp/nsalias.exp: whatis Outer
PASS -> FAIL: gdb.cp/nsalias.exp: whatis Outer::Inner
PASS -> FAIL: gdb.cp/nsalias.exp: whatis Outer::Inner::Innermost
PASS -> FAIL: gdb.cp/nsalias.exp: whatis Outer::Inner::innermost
PASS -> FAIL: gdb.cp/nsalias.exp: whatis Outer::inner
PASS -> FAIL: gdb.cp/nsalias.exp: whatis Outer::inner::Innermost
PASS -> FAIL: gdb.cp/nsalias.exp: whatis Outer::inner::innermost
PASS -> FAIL: gdb.cp/nsalias.exp: whatis oi1
PASS -> FAIL: gdb.cp/nsalias.exp: whatis oi1::Innermost
PASS -> FAIL: gdb.cp/nsalias.exp: whatis oi1::innermost
PASS -> FAIL: gdb.cp/nsalias.exp: whatis oi2
PASS -> FAIL: gdb.cp/nsalias.exp: whatis oi2::Innermost
PASS -> FAIL: gdb.cp/nsalias.exp: whatis oi2::innermost
PASS -> FAIL: gdb.cp/nsalias.exp: whatis oi3
PASS -> FAIL: gdb.cp/nsalias.exp: whatis oi3::Innermost
PASS -> FAIL: gdb.cp/nsalias.exp: whatis oi3::innermost
PASS -> FAIL: gdb.cp/nsalias.exp: whatis outer
PASS -> FAIL: gdb.cp/nsalias.exp: whatis outer::Inner
PASS -> FAIL: gdb.cp/nsalias.exp: whatis outer::Inner::Innermost
PASS -> FAIL: gdb.cp/nsalias.exp: whatis outer::Inner::innermost
PASS -> FAIL: gdb.cp/nsalias.exp: whatis outer::inner
PASS -> FAIL: gdb.cp/nsalias.exp: whatis outer::inner::Innermost
PASS -> FAIL: gdb.cp/nsalias.exp: whatis outer::inner::innermost
new FAIL: gdb.cp/nsdecl.exp:
new FAIL: gdb.cp/nsimport.exp:
new FAIL: gdb.cp/nsnested.exp:
new FAIL: gdb.cp/nsnoimports.exp:
new FAIL: gdb.cp/nsrecurs.exp:
new FAIL: gdb.cp/nsstress.exp:
new FAIL: gdb.cp/nsusing.exp:
new FAIL: gdb.cp/operator.exp:
new FAIL: gdb.cp/oranking.exp:
new FAIL: gdb.cp/overload-const.exp:
PASS -> FAIL: gdb.cp/overload-const.exp: setting breakpoint at myclass::func
new FAIL: gdb.cp/overload.exp:
new FAIL: gdb.cp/ovldbreak.exp:
new FAIL: gdb.cp/ovsrch.exp:
new FAIL: gdb.cp/paren-type.exp:
PASS -> FAIL: gdb.cp/paren-type.exp: break C::f
new FAIL: gdb.cp/parse-lang.exp:
PASS -> FAIL: gdb.cp/parse-lang.exp: breakpoint hit
new FAIL: gdb.cp/parse-lang.exp: setting breakpoint at C::m if v == 42
new FAIL: gdb.cp/parse-lang.exp: setting breakpoint at marker
new FAIL: gdb.cp/pass-by-ref.exp:
new FAIL: gdb.cp/pr-1023.exp:
new FAIL: gdb.cp/pr-1210.exp:
new FAIL: gdb.cp/pr-574.exp:
new FAIL: gdb.cp/pr10687.exp:
new FAIL: gdb.cp/pr10687.exp: can't run to main
new FAIL: gdb.cp/pr10728.exp:
new FAIL: gdb.cp/pr12028.exp:
new FAIL: gdb.cp/pr17132.exp:
new FAIL: gdb.cp/pr17494.exp:
new FAIL: gdb.cp/pr9067.exp:
new FAIL: gdb.cp/pr9167.exp:
new FAIL: gdb.cp/pr9167.exp: can't run to main
new FAIL: gdb.cp/pr9631.exp:
new FAIL: gdb.cp/printmethod.exp:
new FAIL: gdb.cp/psmang.exp:
PASS -> FAIL: gdb.cp/psmang.exp: break s::method1
PASS -> FAIL: gdb.cp/psmang.exp: break s::method2
new FAIL: gdb.cp/psymtab-parameter.exp:
PASS -> FAIL: gdb.cp/psymtab-parameter.exp: complete p 'func<short>
new FAIL: gdb.cp/ptype-cv-cp.exp:
PASS -> FAIL: gdb.cp/ptype-cv-cp.exp: ptype v_const_my_int
PASS -> FAIL: gdb.cp/ptype-cv-cp.exp: ptype v_const_volatile_my_int
PASS -> FAIL: gdb.cp/ptype-cv-cp.exp: ptype v_my_int
PASS -> FAIL: gdb.cp/ptype-cv-cp.exp: ptype v_volatile_const_my_int
PASS -> FAIL: gdb.cp/ptype-cv-cp.exp: ptype v_volatile_my_int
PASS -> FAIL: gdb.cp/ptype-cv-cp.exp: whatis v_const_my_int
PASS -> FAIL: gdb.cp/ptype-cv-cp.exp: whatis v_const_volatile_my_int
PASS -> FAIL: gdb.cp/ptype-cv-cp.exp: whatis v_my_int
PASS -> FAIL: gdb.cp/ptype-cv-cp.exp: whatis v_volatile_const_my_int
PASS -> FAIL: gdb.cp/ptype-cv-cp.exp: whatis v_volatile_my_int
new FAIL: gdb.cp/ptype-flags.exp:
new FAIL: gdb.cp/re-set-overloaded.exp:
PASS -> KFAIL: gdb.cp/re-set-overloaded.exp: breakpoint resolved
new FAIL: gdb.cp/re-set-overloaded.exp: setting breakpoint at main
PASS -> FAIL: gdb.cp/re-set-overloaded.exp: start
new FAIL: gdb.cp/readnow-language.exp:
PASS -> FAIL: gdb.cp/readnow-language.exp: show language
new FAIL: gdb.cp/ref-params.exp:
PASS -> FAIL: gdb.cp/ref-params.exp: print f1
PASS -> FAIL: gdb.cp/ref-params.exp: print mf1
PASS -> FAIL: gdb.cp/ref-params.exp: print mf2
PASS -> FAIL: gdb.cp/ref-params.exp: print value of Child& in f2
PASS -> FAIL: gdb.cp/ref-params.exp: print value of Parent& in f1
PASS -> FAIL: gdb.cp/ref-params.exp: print value of a Child in main
PASS -> FAIL: gdb.cp/ref-params.exp: print value of f1 on
PASS -> FAIL: gdb.cp/ref-params.exp: print value of f1 on Child in main
PASS -> FAIL: gdb.cp/ref-params.exp: print value of f1 on Child& in f2
PASS -> FAIL: gdb.cp/ref-params.exp: print value of f2 on
PASS -> FAIL: gdb.cp/ref-params.exp: print value of f2 on Child in main
new FAIL: gdb.cp/ref-types.exp:
new FAIL: gdb.cp/rtti.exp:
new FAIL: gdb.cp/rvalue-ref-casts.exp:
new FAIL: gdb.cp/rvalue-ref-overload.exp:
new FAIL: gdb.cp/rvalue-ref-params.exp:
PASS -> FAIL: gdb.cp/rvalue-ref-params.exp: print f1
PASS -> FAIL: gdb.cp/rvalue-ref-params.exp: print mf1
PASS -> FAIL: gdb.cp/rvalue-ref-params.exp: print mf2
PASS -> FAIL: gdb.cp/rvalue-ref-params.exp: print value of Child&& in f2
new FAIL: gdb.cp/rvalue-ref-params.exp: print value of Child&& in f2:
PASS -> FAIL: gdb.cp/rvalue-ref-params.exp: print value of Parent&& in f1
new FAIL: gdb.cp/rvalue-ref-params.exp: print value of Parent&& in f1:
PASS -> FAIL: gdb.cp/rvalue-ref-params.exp: print value of f1 on
PASS -> FAIL: gdb.cp/rvalue-ref-params.exp: print value of f1 on Child&& in f2
PASS -> FAIL: gdb.cp/rvalue-ref-params.exp: print value of f2 on
new FAIL: gdb.cp/rvalue-ref-sizeof.exp:
new FAIL: gdb.cp/rvalue-ref-types.exp:
new FAIL: gdb.cp/save-bp-qualified.exp: save:
new FAIL: gdb.cp/scope-err.exp:
new FAIL: gdb.cp/scope-err.exp: can't run to main
new FAIL: gdb.cp/shadow.exp:
new FAIL: gdb.cp/smartp.exp:
new FAIL: gdb.cp/static-method.exp:
new FAIL: gdb.cp/static-print-quit.exp:
PASS -> UNRESOLVED: gdb.cp/static-print-quit.exp: first print
PASS -> FAIL: gdb.cp/static-print-quit.exp: print c - <return>
PASS -> FAIL: gdb.cp/static-print-quit.exp: print c - q <return>
PASS -> FAIL: gdb.cp/static-print-quit.exp: print c - remainder
PASS -> UNRESOLVED: gdb.cp/static-print-quit.exp: q
PASS -> UNRESOLVED: gdb.cp/static-print-quit.exp: second print
PASS -> UNRESOLVED: gdb.cp/static-print-quit.exp: set pagination off
new FAIL: gdb.cp/static-typedef-print.exp:
new FAIL: gdb.cp/subtypes.exp:
PASS -> FAIL: gdb.cp/subtypes.exp: ptype Outer::Inner
PASS -> FAIL: gdb.cp/subtypes.exp: ptype Outer::Inner::InnerInner
PASS -> FAIL: gdb.cp/subtypes.exp: ptype Outer::Oenum
PASS -> FAIL: gdb.cp/subtypes.exp: ptype foobar<char>::Bar
PASS -> FAIL: gdb.cp/subtypes.exp: ptype foobar<char>::Baz
PASS -> FAIL: gdb.cp/subtypes.exp: ptype foobar<char>::Foo
PASS -> FAIL: gdb.cp/subtypes.exp: ptype foobar<int>::Bar
PASS -> FAIL: gdb.cp/subtypes.exp: ptype foobar<int>::Baz
PASS -> FAIL: gdb.cp/subtypes.exp: ptype foobar<int>::Foo
PASS -> FAIL: gdb.cp/subtypes.exp: ptype main::Bar
PASS -> FAIL: gdb.cp/subtypes.exp: ptype main::Baz
PASS -> FAIL: gdb.cp/subtypes.exp: ptype main::Foo
PASS -> FAIL: gdb.cp/subtypes.exp: setting breakpoint at Outer::Inner::doit
PASS -> FAIL: gdb.cp/subtypes.exp: setting breakpoint at foobar<char>
PASS -> FAIL: gdb.cp/subtypes.exp: setting breakpoint at foobar<int>
PASS -> FAIL: gdb.cp/subtypes.exp: setting breakpoint at main::Bar::doit
PASS -> FAIL: gdb.cp/subtypes.exp: setting breakpoint at main::Baz::doit
PASS -> FAIL: gdb.cp/subtypes.exp: setting breakpoint at main::Foo::doit
new FAIL: gdb.cp/temargs.exp:
new FAIL: gdb.cp/templates.exp:
PASS -> FAIL: gdb.cp/templates.exp: b 770
PASS -> FAIL: gdb.cp/templates.exp: break Garply<Garply<char> >::garply
PASS -> FAIL: gdb.cp/templates.exp: breakpoint on a line with no real code
PASS -> FAIL: gdb.cp/templates.exp: constructor breakpoint
PASS -> FAIL: gdb.cp/templates.exp: continue to line 770
new FAIL: gdb.cp/templates.exp: destructor_breakpoint
PASS -> FAIL: gdb.cp/templates.exp: print Foo<volatile char *>::foo
PASS -> FAIL: gdb.cp/templates.exp: print Foo<volatile char*>::foo
PASS -> FAIL: gdb.cp/templates.exp: print Garply<Garply<char> >::garply
PASS -> FAIL: gdb.cp/templates.exp: print destructor of template typedef
PASS -> FAIL: gdb.cp/templates.exp: print fint
PASS -> FAIL: gdb.cp/templates.exp: print fvpchar
PASS -> FAIL: gdb.cp/templates.exp: print method of template typedef
PASS -> FAIL: gdb.cp/templates.exp: ptype Bar
PASS -> FAIL: gdb.cp/templates.exp: ptype Baz
PASS -> FAIL: gdb.cp/templates.exp: ptype Foo
PASS -> FAIL: gdb.cp/templates.exp: ptype Garply<Garply<char> >
PASS -> FAIL: gdb.cp/templates.exp: ptype Garply<int>
PASS -> FAIL: gdb.cp/templates.exp: ptype Qux
PASS -> FAIL: gdb.cp/templates.exp: ptype Spec
PASS -> FAIL: gdb.cp/templates.exp: ptype T5<int>
PASS -> FAIL: gdb.cp/templates.exp: ptype arg
PASS -> FAIL: gdb.cp/templates.exp: ptype bazint
PASS -> FAIL: gdb.cp/templates.exp: ptype bazint2
PASS -> FAIL: gdb.cp/templates.exp: ptype bint
PASS -> FAIL: gdb.cp/templates.exp: ptype bint2
PASS -> FAIL: gdb.cp/templates.exp: ptype empty
PASS -> FAIL: gdb.cp/templates.exp: ptype fchar
PASS -> FAIL: gdb.cp/templates.exp: ptype fint
KFAIL -> FAIL: gdb.cp/templates.exp: ptype fvpchar
PASS -> FAIL: gdb.cp/templates.exp: ptype quxint
PASS -> FAIL: gdb.cp/templates.exp: ptype siip
PASS -> FAIL: gdb.cp/templates.exp: ptype t5i
PASS -> FAIL: gdb.cp/templates.exp: value method breakpoint
new FAIL: gdb.cp/try_catch.exp:
new FAIL: gdb.cp/typedef-base.exp:
new FAIL: gdb.cp/typedef-operator.exp:
PASS -> FAIL: gdb.cp/typedef-operator.exp: test crash
new FAIL: gdb.cp/typeid.exp:
new FAIL: gdb.cp/userdef.exp:
new FAIL: gdb.cp/using-crash.exp:
PASS -> FAIL: gdb.cp/using-crash.exp: reload file
new FAIL: gdb.cp/var-tag.exp:
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c++: print CC
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c++: print E
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c++: print E2
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c++: print EE
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c++: print S
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c++: print S2
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c++: print SS
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c++: print U
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c++: print U2
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c++: print UU
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c++: print cc
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c++: print ee
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c++: print ss
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c++: print uu
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c++: ptype C
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c++: ptype CC
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c++: ptype E
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c++: ptype E2
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c++: ptype EE
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c++: ptype S
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c++: ptype S2
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c++: ptype SS
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c++: ptype U
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c++: ptype U2
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c++: ptype UU
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c++: ptype cc
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c++: ptype ee
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c++: ptype ss
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c++: ptype uu
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c: print CC
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c: print E
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c: print E2
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c: print EE
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c: print S
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c: print S2
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c: print SS
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c: print U
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c: print U2
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c: print UU
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c: print cc
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c: print ee
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c: print ss
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c: print uu
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c: ptype C
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c: ptype CC
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c: ptype E
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c: ptype E2
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c: ptype EE
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c: ptype S
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c: ptype S2
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c: ptype SS
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c: ptype U
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c: ptype U2
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c: ptype UU
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c: ptype cc
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c: ptype ee
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c: ptype ss
PASS -> FAIL: gdb.cp/var-tag.exp: before start: c: ptype uu
new FAIL: gdb.cp/virtbase.exp:
new FAIL: gdb.cp/virtbase2.exp:
new FAIL: gdb.cp/virtfunc.exp:
new FAIL: gdb.cp/virtfunc2.exp:
new FAIL: gdb.cp/vla-cxx.exp:
new FAIL: gdb.cp/watch-cp.exp:
new FAIL: gdb.cp/wide_char_types.exp: with program: lang=c++03:
new FAIL: gdb.cp/wide_char_types.exp: with program: lang=c++03: can't run to main
new FAIL: gdb.cp/wide_char_types.exp: with program: lang=c++11:
new FAIL: gdb.cp/wide_char_types.exp: with program: lang=c++11: can't run to main
new FAIL: gdb.cp/wide_char_types.exp: with program: lang=c:
new FAIL: gdb.cp/wide_char_types.exp: with program: lang=c: can't run to main
new FAIL: gdb.dlang/circular.exp:
new FAIL: gdb.dlang/watch-loc.exp:
new FAIL: gdb.dlang/watch-loc.exp: disassemble _Dmain
new FAIL: gdb.dlang/watch-loc.exp: p _Dmain_label - _Dmain
new FAIL: gdb.dlang/watch-loc.exp: x/2i _Dmain+
new FAIL: gdb.dwarf2/ada-linkage-name.exp:
new FAIL: gdb.dwarf2/ada-linkage-name.exp: disassemble first
new FAIL: gdb.dwarf2/ada-linkage-name.exp: disassemble second
new FAIL: gdb.dwarf2/ada-linkage-name.exp: p first_label - first
new FAIL: gdb.dwarf2/ada-linkage-name.exp: p second_label - second
new FAIL: gdb.dwarf2/ada-linkage-name.exp: x/2i first+
new FAIL: gdb.dwarf2/ada-linkage-name.exp: x/2i second+
new FAIL: gdb.dwarf2/ada-valprint-error.exp:
PASS -> FAIL: gdb.dwarf2/ada-valprint-error.exp: print fd.global
new FAIL: gdb.dwarf2/arr-stride.exp:
PASS -> FAIL: gdb.dwarf2/arr-stride.exp: ptype pck.big_table
PASS -> FAIL: gdb.dwarf2/arr-stride.exp: ptype pck.table
new FAIL: gdb.dwarf2/arr-subrange.exp:
PASS -> FAIL: gdb.dwarf2/arr-subrange.exp: ptype pck.table
new FAIL: gdb.dwarf2/atomic-type.exp:
new FAIL: gdb.dwarf2/atomic-type.exp: disassemble f
new FAIL: gdb.dwarf2/atomic-type.exp: p f_label - f
new FAIL: gdb.dwarf2/atomic-type.exp: x/2i f+
new FAIL: gdb.dwarf2/bad-regnum.exp:
new FAIL: gdb.dwarf2/bitfield-parent-optimized-out.exp:
new FAIL: gdb.dwarf2/bitfield-parent-optimized-out.exp: disassemble main
new FAIL: gdb.dwarf2/bitfield-parent-optimized-out.exp: p main_label - main
new FAIL: gdb.dwarf2/bitfield-parent-optimized-out.exp: x/2i main+
new FAIL: gdb.dwarf2/comp-unit-lang.exp:
new FAIL: gdb.dwarf2/corrupt.exp:
new FAIL: gdb.dwarf2/count.exp:
new FAIL: gdb.dwarf2/data-loc.exp:
new FAIL: gdb.dwarf2/dup-psym.exp:
PASS -> FAIL: gdb.dwarf2/dup-psym.exp: info sources should contain only one reference to file1.txt
new FAIL: gdb.dwarf2/dw2-abs-hi-pc.exp:
PASS -> FAIL: gdb.dwarf2/dw2-abs-hi-pc.exp: break hello
PASS -> FAIL: gdb.dwarf2/dw2-abs-hi-pc.exp: break world
new FAIL: gdb.dwarf2/dw2-ada-ffffffff.exp:
PASS -> FAIL: gdb.dwarf2/dw2-ada-ffffffff.exp: p sizeof
PASS -> FAIL: gdb.dwarf2/dw2-ada-ffffffff.exp: ptype t
new FAIL: gdb.dwarf2/dw2-align.exp:
new FAIL: gdb.dwarf2/dw2-anon-mptr.exp:
PASS -> FAIL: gdb.dwarf2/dw2-anon-mptr.exp: ptype crash
new FAIL: gdb.dwarf2/dw2-anonymous-func.exp:
PASS -> FAIL: gdb.dwarf2/dw2-anonymous-func.exp: list file1.txt
new FAIL: gdb.dwarf2/dw2-bad-mips-linkage-name.exp:
new FAIL: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble f
new FAIL: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble g
new FAIL: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p f_label - f
new FAIL: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p g_label - g
new FAIL: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i f+
new FAIL: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i g+
new FAIL: gdb.dwarf2/dw2-bad-parameter-type.exp:
new FAIL: gdb.dwarf2/dw2-bad-unresolved.exp:
PASS -> FAIL: gdb.dwarf2/dw2-bad-unresolved.exp: print var
PASS -> FAIL: gdb.dwarf2/dw2-bad-unresolved.exp: ptype var
new FAIL: gdb.dwarf2/dw2-basic.exp:
PASS -> FAIL: gdb.dwarf2/dw2-basic.exp: list func_cu1
PASS -> FAIL: gdb.dwarf2/dw2-basic.exp: ptype func_cu1
new FAIL: gdb.dwarf2/dw2-canonicalize-type.exp:
PASS -> FAIL: gdb.dwarf2/dw2-canonicalize-type.exp: ptype f
new FAIL: gdb.dwarf2/dw2-case-insensitive.exp:
PASS -> FAIL: gdb.dwarf2/dw2-case-insensitive.exp: p fuNC_lang
PASS -> FAIL: gdb.dwarf2/dw2-case-insensitive.exp: p fuNC_symtab
PASS -> FAIL: gdb.dwarf2/dw2-case-insensitive.exp: regexp case-sensitive off
PASS -> FAIL: gdb.dwarf2/dw2-case-insensitive.exp: setting breakpoint at fuNC_lang
PASS -> FAIL: gdb.dwarf2/dw2-case-insensitive.exp: setting breakpoint at fuNC_symtab
new FAIL: gdb.dwarf2/dw2-compdir-oldgcc.exp:
PASS -> FAIL: gdb.dwarf2/dw2-compdir-oldgcc.exp: info source gcc42
PASS -> FAIL: gdb.dwarf2/dw2-compdir-oldgcc.exp: info source gcc43
new FAIL: gdb.dwarf2/dw2-compressed.exp:
PASS -> FAIL: gdb.dwarf2/dw2-compressed.exp: list func_cu1
PASS -> FAIL: gdb.dwarf2/dw2-compressed.exp: ptype func_cu1
new FAIL: gdb.dwarf2/dw2-const.exp:
PASS -> FAIL: gdb.dwarf2/dw2-const.exp: print twelve
PASS -> FAIL: gdb.dwarf2/dw2-const.exp: print/x val8
new FAIL: gdb.dwarf2/dw2-cp-infcall-ref-static.exp:
new FAIL: gdb.dwarf2/dw2-cu-size.exp:
PASS -> FAIL: gdb.dwarf2/dw2-cu-size.exp: ptype noloc
new FAIL: gdb.dwarf2/dw2-dir-file-name.exp:
new FAIL: gdb.dwarf2/dw2-dos-drive.exp:
PASS -> FAIL: gdb.dwarf2/dw2-dos-drive.exp: break 'z:file.c':func
new FAIL: gdb.dwarf2/dw2-double-set-die-type.exp:
PASS -> FAIL: gdb.dwarf2/dw2-double-set-die-type.exp: ptype a
new FAIL: gdb.dwarf2/dw2-dummy-cu.exp:
PASS -> FAIL: gdb.dwarf2/dw2-dummy-cu.exp: info fun main
new FAIL: gdb.dwarf2/dw2-empty-namespace.exp:
PASS -> FAIL: gdb.dwarf2/dw2-empty-namespace.exp: p var
PASS -> FAIL: gdb.dwarf2/dw2-empty-namespace.exp: ptype var
new FAIL: gdb.dwarf2/dw2-empty-pc-range.exp:
PASS -> FAIL: gdb.dwarf2/dw2-empty-pc-range.exp: empty range after CU load
PASS -> FAIL: gdb.dwarf2/dw2-empty-pc-range.exp: empty range before CU load
PASS -> FAIL: gdb.dwarf2/dw2-empty-pc-range.exp: valid range after CU load
new FAIL: gdb.dwarf2/dw2-entry-value.exp:
new FAIL: gdb.dwarf2/dw2-filename.exp:
PASS -> FAIL: gdb.dwarf2/dw2-filename.exp: info sources
PASS -> FAIL: gdb.dwarf2/dw2-filename.exp: interpreter-exec mi -file-list-exec-source-files
new FAIL: gdb.dwarf2/dw2-icc-opaque.exp:
PASS -> FAIL: gdb.dwarf2/dw2-icc-opaque.exp: ptype p_struct
new FAIL: gdb.dwarf2/dw2-icycle.exp:
new FAIL: gdb.dwarf2/dw2-ifort-parameter.exp:
new FAIL: gdb.dwarf2/dw2-ifort-parameter.exp: disassemble func
new FAIL: gdb.dwarf2/dw2-ifort-parameter.exp: p func_label - func
new FAIL: gdb.dwarf2/dw2-ifort-parameter.exp: x/2i func+
new FAIL: gdb.dwarf2/dw2-inheritance.exp:
PASS -> FAIL: gdb.dwarf2/dw2-inheritance.exp: ptype inherited
new FAIL: gdb.dwarf2/dw2-inline-param.exp:
PASS -> FAIL: gdb.dwarf2/dw2-inline-param.exp: info addr break_at
new FAIL: gdb.dwarf2/dw2-intercu.exp:
PASS -> FAIL: gdb.dwarf2/dw2-intercu.exp: list func_cu1
PASS -> FAIL: gdb.dwarf2/dw2-intercu.exp: p one
PASS -> FAIL: gdb.dwarf2/dw2-intercu.exp: p two
PASS -> FAIL: gdb.dwarf2/dw2-intercu.exp: ptype func_cu1
PASS -> FAIL: gdb.dwarf2/dw2-intercu.exp: ptype int2
PASS -> FAIL: gdb.dwarf2/dw2-intercu.exp: ptype one
PASS -> FAIL: gdb.dwarf2/dw2-intercu.exp: ptype two
new FAIL: gdb.dwarf2/dw2-intermix.exp:
PASS -> FAIL: gdb.dwarf2/dw2-intermix.exp: list func_cu1
PASS -> FAIL: gdb.dwarf2/dw2-intermix.exp: ptype func_cu1
new FAIL: gdb.dwarf2/dw2-lexical-block-bare.exp:
new FAIL: gdb.dwarf2/dw2-lexical-block-bare.exp: disassemble main
new FAIL: gdb.dwarf2/dw2-lexical-block-bare.exp: p main_label - main
new FAIL: gdb.dwarf2/dw2-lexical-block-bare.exp: x/2i main+
new FAIL: gdb.dwarf2/dw2-linkage-name-trust.exp:
new FAIL: gdb.dwarf2/dw2-minsym-in-cu.exp:
new FAIL: gdb.dwarf2/dw2-modula2-self-type.exp:
new FAIL: gdb.dwarf2/dw2-namespaceless-anonymous.exp:
PASS -> FAIL: gdb.dwarf2/dw2-namespaceless-anonymous.exp: p '
PASS -> FAIL: gdb.dwarf2/dw2-namespaceless-anonymous.exp: ptype '
new FAIL: gdb.dwarf2/dw2-noloc.exp:
PASS -> FAIL: gdb.dwarf2/dw2-noloc.exp: no-run: print file_extern_locaddr_resolvable
PASS -> FAIL: gdb.dwarf2/dw2-noloc.exp: no-run: print file_extern_locaddr_unresolvable
PASS -> FAIL: gdb.dwarf2/dw2-noloc.exp: no-run: print file_extern_locempty_resolvable
PASS -> FAIL: gdb.dwarf2/dw2-noloc.exp: no-run: print file_extern_locempty_unresolvable
PASS -> FAIL: gdb.dwarf2/dw2-noloc.exp: no-run: print file_extern_locno_resolvable
PASS -> FAIL: gdb.dwarf2/dw2-noloc.exp: no-run: print file_locaddr_resolvable
PASS -> FAIL: gdb.dwarf2/dw2-noloc.exp: no-run: print file_locaddr_unresolvable
PASS -> FAIL: gdb.dwarf2/dw2-noloc.exp: no-run: print file_locempty_resolvable
PASS -> FAIL: gdb.dwarf2/dw2-noloc.exp: no-run: print file_locempty_unresolvable
PASS -> FAIL: gdb.dwarf2/dw2-noloc.exp: no-run: print file_locno_resolvable
PASS -> FAIL: gdb.dwarf2/dw2-noloc.exp: no-run: print file_locno_unresolvable
PASS -> FAIL: gdb.dwarf2/dw2-noloc.exp: no-run: ptype file_extern_locaddr_resolvable
PASS -> FAIL: gdb.dwarf2/dw2-noloc.exp: no-run: ptype file_extern_locaddr_unresolvable
PASS -> FAIL: gdb.dwarf2/dw2-noloc.exp: no-run: ptype file_extern_locempty_resolvable
PASS -> FAIL: gdb.dwarf2/dw2-noloc.exp: no-run: ptype file_extern_locempty_unresolvable
PASS -> FAIL: gdb.dwarf2/dw2-noloc.exp: no-run: ptype file_extern_locno_resolvable
PASS -> FAIL: gdb.dwarf2/dw2-noloc.exp: no-run: ptype file_locaddr_resolvable
PASS -> FAIL: gdb.dwarf2/dw2-noloc.exp: no-run: ptype file_locaddr_unresolvable
PASS -> FAIL: gdb.dwarf2/dw2-noloc.exp: no-run: ptype file_locempty_resolvable
PASS -> FAIL: gdb.dwarf2/dw2-noloc.exp: no-run: ptype file_locempty_unresolvable
PASS -> FAIL: gdb.dwarf2/dw2-noloc.exp: no-run: ptype file_locno_resolvable
PASS -> FAIL: gdb.dwarf2/dw2-noloc.exp: no-run: ptype file_locno_unresolvable
new FAIL: gdb.dwarf2/dw2-objfile-overlap.exp:
PASS -> FAIL: gdb.dwarf2/dw2-objfile-overlap.exp: add-symbol-file
PASS -> FAIL: gdb.dwarf2/dw2-objfile-overlap.exp: info line inner
new FAIL: gdb.dwarf2/dw2-objfile-overlap.exp: setting breakpoint at *outer_before
new FAIL: gdb.dwarf2/dw2-op-call.exp:
PASS -> FAIL: gdb.dwarf2/dw2-op-call.exp: array2 using DW_OP_call2
PASS -> FAIL: gdb.dwarf2/dw2-op-call.exp: array3 using DW_OP_call4
PASS -> FAIL: gdb.dwarf2/dw2-op-call.exp: p array1
new FAIL: gdb.dwarf2/dw2-op-stack-value.exp:
PASS -> FAIL: gdb.dwarf2/dw2-op-stack-value.exp: p/x stack2
PASS -> FAIL: gdb.dwarf2/dw2-op-stack-value.exp: p/x stack8
PASS -> FAIL: gdb.dwarf2/dw2-op-stack-value.exp: x/wx &aa551234
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp:
PASS -> UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: console: set print object on
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: disassemble func01
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: disassemble main
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: continue to func01
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: create varobj for ptr
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: get children of var1
PASS -> UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: mi: run to main
PASS -> UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: mi: set print object on
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access array member
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access integer member
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access pointer member
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: p func01_label - func01
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: p main_label - main
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: x/2i func01+
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: x/2i main+
new FAIL: gdb.dwarf2/dw2-param-error.exp:
new FAIL: gdb.dwarf2/dw2-producer.exp:
PASS -> FAIL: gdb.dwarf2/dw2-producer.exp: list func_cu1
PASS -> FAIL: gdb.dwarf2/dw2-producer.exp: ptype func_cu1
new FAIL: gdb.dwarf2/dw2-ranges-base.exp:
new FAIL: gdb.dwarf2/dw2-ranges-base.exp: disassemble frame2
new FAIL: gdb.dwarf2/dw2-ranges-base.exp: disassemble frame3
new FAIL: gdb.dwarf2/dw2-ranges-base.exp: disassemble main
new FAIL: gdb.dwarf2/dw2-ranges-base.exp: p frame2_label - frame2
new FAIL: gdb.dwarf2/dw2-ranges-base.exp: p frame3_label - frame3
new FAIL: gdb.dwarf2/dw2-ranges-base.exp: p main_label - main
new FAIL: gdb.dwarf2/dw2-ranges-base.exp: x/2i frame2+
new FAIL: gdb.dwarf2/dw2-ranges-base.exp: x/2i frame3+
new FAIL: gdb.dwarf2/dw2-ranges-base.exp: x/2i main+
new FAIL: gdb.dwarf2/dw2-ranges-func.exp: hi-cold:
new FAIL: gdb.dwarf2/dw2-ranges-func.exp: hi-cold: disassemble bar
new FAIL: gdb.dwarf2/dw2-ranges-func.exp: hi-cold: disassemble baz
PASS -> FAIL: gdb.dwarf2/dw2-ranges-func.exp: hi-cold: disassemble foo
new FAIL: gdb.dwarf2/dw2-ranges-func.exp: hi-cold: disassemble foo_cold
new FAIL: gdb.dwarf2/dw2-ranges-func.exp: hi-cold: disassemble main
new FAIL: gdb.dwarf2/dw2-ranges-func.exp: hi-cold: p bar_label - bar
new FAIL: gdb.dwarf2/dw2-ranges-func.exp: hi-cold: p baz_label - baz
new FAIL: gdb.dwarf2/dw2-ranges-func.exp: hi-cold: p foo_cold_label - foo_cold
new FAIL: gdb.dwarf2/dw2-ranges-func.exp: hi-cold: p foo_label - foo
new FAIL: gdb.dwarf2/dw2-ranges-func.exp: hi-cold: p main_label - main
new FAIL: gdb.dwarf2/dw2-ranges-func.exp: hi-cold: x/2i bar+
new FAIL: gdb.dwarf2/dw2-ranges-func.exp: hi-cold: x/2i baz+
new FAIL: gdb.dwarf2/dw2-ranges-func.exp: hi-cold: x/2i foo+
new FAIL: gdb.dwarf2/dw2-ranges-func.exp: hi-cold: x/2i foo_cold+
new FAIL: gdb.dwarf2/dw2-ranges-func.exp: hi-cold: x/2i main+
new FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold:
new FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: disassemble bar
new FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: disassemble baz
PASS -> FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: disassemble foo
new FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: disassemble foo_cold
new FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: disassemble main
new FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p bar_label - bar
new FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p baz_label - baz
new FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_cold_label - foo_cold
new FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_label - foo
new FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p main_label - main
new FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: x/2i bar+
new FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: x/2i baz+
new FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: x/2i foo+
new FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: x/2i foo_cold+
new FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: x/2i main+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp:
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble bar
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble baz
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble foo
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble foo_low
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: p bar_label - bar
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: p baz_label - baz
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: p foo_label - foo
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: p foo_low_label - foo_low
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i bar+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i baz+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i foo+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i foo_low+
new FAIL: gdb.dwarf2/dw2-ranges.exp:
PASS -> FAIL: gdb.dwarf2/dw2-ranges.exp: info line func
PASS -> FAIL: gdb.dwarf2/dw2-ranges.exp: info line func2
PASS -> FAIL: gdb.dwarf2/dw2-ranges.exp: info line main
PASS -> FAIL: gdb.dwarf2/dw2-ranges.exp: info line main2
PASS -> FAIL: gdb.dwarf2/dw2-ranges.exp: info line main3
new FAIL: gdb.dwarf2/dw2-ref-missing-frame.exp:
new FAIL: gdb.dwarf2/dw2-regno-invalid.exp:
new FAIL: gdb.dwarf2/dw2-simple-locdesc.exp:
PASS -> FAIL: gdb.dwarf2/dw2-simple-locdesc.exp: p &s.data4
KFAIL -> FAIL: gdb.dwarf2/dw2-simple-locdesc.exp: p &s.shl
new FAIL: gdb.dwarf2/dw2-skip-prologue.exp:
PASS -> FAIL: gdb.dwarf2/dw2-stack-boundary.exp: check partial symtab errors
PASS -> FAIL: gdb.dwarf2/dw2-stack-boundary.exp: p overflow
PASS -> FAIL: gdb.dwarf2/dw2-stack-boundary.exp: p underflow
new FAIL: gdb.dwarf2/dw2-strp.exp:
PASS -> FAIL: gdb.dwarf2/dw2-strp.exp: p a_string
PASS -> FAIL: gdb.dwarf2/dw2-strp.exp: p a_string2
PASS -> FAIL: gdb.dwarf2/dw2-strp.exp: ptype a_string
PASS -> FAIL: gdb.dwarf2/dw2-strp.exp: ptype a_string2
new FAIL: gdb.dwarf2/dw2-unresolved.exp:
new FAIL: gdb.dwarf2/dw2-unusual-field-names.exp:
new FAIL: gdb.dwarf2/dw2-var-zero-addr.exp:
PASS -> FAIL: gdb.dwarf2/dw2-var-zero-addr.exp: print &var
PASS -> FAIL: gdb.dwarf2/dw2-var-zero-addr.exp: readnow: print &var
new FAIL: gdb.dwarf2/dw4-sig-type-unused.exp:
new FAIL: gdb.dwarf2/dw4-sig-types.exp:
new FAIL: gdb.dwarf2/dwz.exp:
new FAIL: gdb.dwarf2/dwz.exp: disassemble main
new FAIL: gdb.dwarf2/dwz.exp: p main_label - main
new FAIL: gdb.dwarf2/dwz.exp: x/2i main+
new FAIL: gdb.dwarf2/dwzbuildid.exp: fallback:
new FAIL: gdb.dwarf2/dwzbuildid.exp: mismatch:
new FAIL: gdb.dwarf2/dwzbuildid.exp: ok:
new FAIL: gdb.dwarf2/dynarr-ptr.exp:
new FAIL: gdb.dwarf2/enum-type.exp:
PASS -> FAIL: gdb.dwarf2/enum-type.exp: print sizeof
PASS -> FAIL: gdb.dwarf2/enum-type.exp: ptype EU in C++
PASS -> FAIL: gdb.dwarf2/enum-type.exp: ptype EU in enum C
new FAIL: gdb.dwarf2/fission-mix.exp:
PASS -> FAIL: gdb.dwarf2/fission-mix.exp: break func2
PASS -> FAIL: gdb.dwarf2/fission-mix.exp: break main
new FAIL: gdb.dwarf2/fission-reread.exp:
PASS -> FAIL: gdb.dwarf2/fission-reread.exp: break main
PASS -> FAIL: gdb.dwarf2/fission-reread.exp: ptype baz
new FAIL: gdb.dwarf2/formdata16.exp:
PASS -> FAIL: gdb.dwarf2/formdata16.exp: p sss
PASS -> FAIL: gdb.dwarf2/formdata16.exp: p xxx
PASS -> FAIL: gdb.dwarf2/formdata16.exp: p yyy
PASS -> FAIL: gdb.dwarf2/formdata16.exp: p/x sss
PASS -> FAIL: gdb.dwarf2/formdata16.exp: p/x xxx
PASS -> FAIL: gdb.dwarf2/formdata16.exp: p/x yyy
new FAIL: gdb.dwarf2/gdb-add-index.exp:
new FAIL: gdb.dwarf2/gdb-add-index.exp: check if index present
new FAIL: gdb.dwarf2/gdb-index.exp:
new FAIL: gdb.dwarf2/gdb-index.exp: check if index present
new FAIL: gdb.dwarf2/implptr-64bit.exp:
new FAIL: gdb.dwarf2/implptr-optimized-out.exp:
new FAIL: gdb.dwarf2/implptr-optimized-out.exp: disassemble main
new FAIL: gdb.dwarf2/implptr-optimized-out.exp: p main_label - main
new FAIL: gdb.dwarf2/implptr-optimized-out.exp: x/2i main+
new FAIL: gdb.dwarf2/implptrconst.exp:
new FAIL: gdb.dwarf2/implptrpiece.exp:
new FAIL: gdb.dwarf2/implref-array.exp:
new FAIL: gdb.dwarf2/implref-array.exp: disassemble main
PASS -> FAIL: gdb.dwarf2/implref-array.exp: get valueof "sizeof
new FAIL: gdb.dwarf2/implref-array.exp: p main_label - main
new FAIL: gdb.dwarf2/implref-array.exp: x/2i main+
new FAIL: gdb.dwarf2/implref-const.exp:
new FAIL: gdb.dwarf2/implref-const.exp: disassemble main
new FAIL: gdb.dwarf2/implref-const.exp: p main_label - main
new FAIL: gdb.dwarf2/implref-const.exp: x/2i main+
new FAIL: gdb.dwarf2/implref-global.exp:
new FAIL: gdb.dwarf2/implref-global.exp: disassemble main
new FAIL: gdb.dwarf2/implref-global.exp: p main_label - main
new FAIL: gdb.dwarf2/implref-global.exp: x/2i main+
new FAIL: gdb.dwarf2/implref-struct.exp:
new FAIL: gdb.dwarf2/implref-struct.exp: disassemble main
new FAIL: gdb.dwarf2/implref-struct.exp: p main_label - main
new FAIL: gdb.dwarf2/implref-struct.exp: x/2i main+
new FAIL: gdb.dwarf2/imported-unit.exp:
new FAIL: gdb.dwarf2/imported-unit.exp: disassemble doit
new FAIL: gdb.dwarf2/imported-unit.exp: disassemble main
new FAIL: gdb.dwarf2/imported-unit.exp: p doit_label - doit
new FAIL: gdb.dwarf2/imported-unit.exp: p main_label - main
new FAIL: gdb.dwarf2/imported-unit.exp: x/2i doit+
new FAIL: gdb.dwarf2/imported-unit.exp: x/2i main+
new FAIL: gdb.dwarf2/info-locals-optimized-out.exp:
new FAIL: gdb.dwarf2/info-locals-optimized-out.exp: disassemble main
new FAIL: gdb.dwarf2/info-locals-optimized-out.exp: p main_label - main
new FAIL: gdb.dwarf2/info-locals-optimized-out.exp: x/2i main+
new FAIL: gdb.dwarf2/inlined_subroutine-inheritance.exp:
PASS -> FAIL: gdb.dwarf2/inlined_subroutine-inheritance.exp: setting breakpoint at bytes_repeat
new FAIL: gdb.dwarf2/mac-fileno.exp:
PASS -> FAIL: gdb.dwarf2/mac-fileno.exp: list func_cu1
PASS -> FAIL: gdb.dwarf2/mac-fileno.exp: ptype func_cu1
new FAIL: gdb.dwarf2/main-subprogram.exp:
new FAIL: gdb.dwarf2/main-subprogram.exp: disassemble mymain
new FAIL: gdb.dwarf2/main-subprogram.exp: p mymain_label - mymain
new FAIL: gdb.dwarf2/main-subprogram.exp: x/2i mymain+
new FAIL: gdb.dwarf2/member-ptr-forwardref.exp:
PASS -> FAIL: gdb.dwarf2/member-ptr-forwardref.exp: ptype c
new FAIL: gdb.dwarf2/method-ptr.exp:
PASS -> FAIL: gdb.dwarf2/method-ptr.exp: ptype the_typedef
new FAIL: gdb.dwarf2/missing-sig-type.exp:
PASS -> FAIL: gdb.dwarf2/missing-sig-type.exp: ptype foo
new FAIL: gdb.dwarf2/missing-type-name.exp:
new FAIL: gdb.dwarf2/missing-type-name.exp: disassemble func
new FAIL: gdb.dwarf2/missing-type-name.exp: disassemble main
new FAIL: gdb.dwarf2/missing-type-name.exp: p func_label - func
new FAIL: gdb.dwarf2/missing-type-name.exp: p main_label - main
new FAIL: gdb.dwarf2/missing-type-name.exp: x/2i func+
new FAIL: gdb.dwarf2/missing-type-name.exp: x/2i main+
new FAIL: gdb.dwarf2/multidictionary.exp:
new FAIL: gdb.dwarf2/nonvar-access.exp:
new FAIL: gdb.dwarf2/nonvar-access.exp: disassemble main
new FAIL: gdb.dwarf2/nonvar-access.exp: p main_label - main
new FAIL: gdb.dwarf2/nonvar-access.exp: x/2i main+
new FAIL: gdb.dwarf2/nostaticblock.exp:
new FAIL: gdb.dwarf2/opaque-type-lookup.exp:
new FAIL: gdb.dwarf2/opaque-type-lookup.exp: disassemble main
new FAIL: gdb.dwarf2/opaque-type-lookup.exp: p main_label - main
new FAIL: gdb.dwarf2/opaque-type-lookup.exp: x/2i main+
new FAIL: gdb.dwarf2/pr10770.exp:
new FAIL: gdb.dwarf2/pr11465.exp:
PASS -> FAIL: gdb.dwarf2/pr11465.exp: p N::c.C
new FAIL: gdb.dwarf2/pr13961.exp:
PASS -> FAIL: gdb.dwarf2/pr13961.exp: break main
new FAIL: gdb.dwarf2/shortpiece.exp:
PASS -> FAIL: gdb.dwarf2/shortpiece.exp: p s1
PASS -> FAIL: gdb.dwarf2/shortpiece.exp: p s2
new FAIL: gdb.dwarf2/staticvirtual.exp:
PASS -> FAIL: gdb.dwarf2/staticvirtual.exp: p S::~S
new FAIL: gdb.dwarf2/subrange.exp:
PASS -> FAIL: gdb.dwarf2/subrange.exp: ptype TByteArray
new FAIL: gdb.dwarf2/symtab-producer.exp:
PASS -> FAIL: gdb.dwarf2/symtab-producer.exp: python print
new FAIL: gdb.dwarf2/typedef-void-finish.exp:
new FAIL: gdb.dwarf2/typedef-void-finish.exp: disassemble func
new FAIL: gdb.dwarf2/typedef-void-finish.exp: disassemble main
new FAIL: gdb.dwarf2/typedef-void-finish.exp: p func_label - func
new FAIL: gdb.dwarf2/typedef-void-finish.exp: p main_label - main
new FAIL: gdb.dwarf2/typedef-void-finish.exp: x/2i func+
new FAIL: gdb.dwarf2/typedef-void-finish.exp: x/2i main+
new FAIL: gdb.dwarf2/var-access.exp:
new FAIL: gdb.dwarf2/var-access.exp: disassemble main
new FAIL: gdb.dwarf2/var-access.exp: p main_label - main
new FAIL: gdb.dwarf2/var-access.exp: x/2i main+
new FAIL: gdb.dwarf2/variant.exp:
new FAIL: gdb.dwarf2/varval.exp:
new FAIL: gdb.dwarf2/varval.exp: disassemble main
new FAIL: gdb.dwarf2/varval.exp: p main_label - main
new FAIL: gdb.dwarf2/varval.exp: x/2i main+
new FAIL: gdb.dwarf2/void-type.exp:
new FAIL: gdb.dwarf2/void-type.exp: disassemble func
new FAIL: gdb.dwarf2/void-type.exp: disassemble main
new FAIL: gdb.dwarf2/void-type.exp: p func_label - func
new FAIL: gdb.dwarf2/void-type.exp: p main_label - main
new FAIL: gdb.dwarf2/void-type.exp: x/2i func+
new FAIL: gdb.dwarf2/void-type.exp: x/2i main+
new FAIL: gdb.guile/scm-arch.exp:
new FAIL: gdb.guile/scm-block.exp:
new FAIL: gdb.guile/scm-breakpoint.exp:
new FAIL: gdb.guile/scm-cmd.exp:
new FAIL: gdb.guile/scm-disasm.exp:
new FAIL: gdb.guile/scm-equal.exp:
new FAIL: gdb.guile/scm-frame-args.exp:
new FAIL: gdb.guile/scm-frame-inline.exp:
new FAIL: gdb.guile/scm-frame.exp:
new FAIL: gdb.guile/scm-iterator.exp:
new FAIL: gdb.guile/scm-lazy-string.exp:
new FAIL: gdb.guile/scm-math.exp:
new FAIL: gdb.guile/scm-objfile.exp:
new FAIL: gdb.guile/scm-ports.exp:
new FAIL: gdb.guile/scm-symbol.exp:
new FAIL: gdb.guile/scm-symtab.exp:
new FAIL: gdb.guile/scm-type.exp:
new FAIL: gdb.guile/scm-value-cc.exp:
new FAIL: gdb.guile/scm-value.exp:
new FAIL: gdb.guile/types-module.exp:
new FAIL: gdb.linespec/break-ask.exp:
PASS -> UNRESOLVED: gdb.linespec/break-ask.exp: 0
PASS -> UNRESOLVED: gdb.linespec/break-ask.exp: 2
PASS -> UNRESOLVED: gdb.linespec/break-ask.exp: 3
PASS -> FAIL: gdb.linespec/break-ask.exp: break twodup absolute
PASS -> FAIL: gdb.linespec/break-ask.exp: break twodup relative
PASS -> FAIL: gdb.linespec/break-ask.exp: break twodup relative other
PASS -> FAIL: gdb.linespec/break-ask.exp: continue to breakpoint: body_elsewhere
PASS -> UNRESOLVED: gdb.linespec/break-ask.exp: continue to breakpoint: body_elsewhere other
PASS -> FAIL: gdb.linespec/break-ask.exp: expect breakpoint
PASS -> FAIL: gdb.linespec/break-ask.exp: info source
PASS -> UNRESOLVED: gdb.linespec/break-ask.exp: info source other
new FAIL: gdb.linespec/break-ask.exp: setting breakpoint at body_elsewhere
new FAIL: gdb.linespec/break-asm-file.exp:
PASS -> FAIL: gdb.linespec/break-asm-file.exp: set a break-point at a function only for a selected ASM file.
PASS -> FAIL: gdb.linespec/break-asm-file.exp: set a break-point at a global function only for a selected ASM file.
PASS -> FAIL: gdb.linespec/break-asm-file.exp: set a break-point at function in all instances for a selected ASM file.
new FAIL: gdb.linespec/cpcompletion.exp:
PASS -> FAIL: gdb.linespec/cpcompletion.exp: all-param-prefixes: cmd complete "b -function param_prefixes_test_intp_intr
PASS -> FAIL: gdb.linespec/cpcompletion.exp: all-param-prefixes: cmd complete "b -function param_prefixes_test_long
PASS -> FAIL: gdb.linespec/cpcompletion.exp: all-param-prefixes: cmd complete "b param_prefixes_test_intp_intr
PASS -> FAIL: gdb.linespec/cpcompletion.exp: all-param-prefixes: cmd complete "b param_prefixes_test_long
PASS -> FAIL: gdb.linespec/cpcompletion.exp: all-param-prefixes: tab complete "b -function param_prefixes_test_intp_intr
PASS -> FAIL: gdb.linespec/cpcompletion.exp: all-param-prefixes: tab complete "b -function param_prefixes_test_long
PASS -> FAIL: gdb.linespec/cpcompletion.exp: all-param-prefixes: tab complete "b param_prefixes_test_intp_intr
PASS -> FAIL: gdb.linespec/cpcompletion.exp: all-param-prefixes: tab complete "b param_prefixes_test_long
PASS -> FAIL: gdb.linespec/cpcompletion.exp: ambiguous-prefix: cmd complete "b -function ambiguous_pre"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: ambiguous-prefix: cmd complete "b ambiguous_pre"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: ambiguous-prefix: tab complete "b -function ambiguous_pre"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: ambiguous-prefix: tab complete "b ambiguous_pre"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: anon-ns: cmd complete "b "anon_ns_function"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: anon-ns: cmd complete "b 'anon_ns_function"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: anon-ns: cmd complete "b
PASS -> FAIL: gdb.linespec/cpcompletion.exp: anon-ns: cmd complete "b -function "anon_ns_function"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: anon-ns: cmd complete "b -function 'anon_ns_function"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: anon-ns: cmd complete "b -function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: anon-ns: cmd complete "b -function anon_ns_function"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: anon-ns: cmd complete "b -function the_anon_ns_wrapper_ns::
PASS -> FAIL: gdb.linespec/cpcompletion.exp: anon-ns: cmd complete "b anon_ns_function"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: anon-ns: cmd complete "b the_anon_ns_wrapper_ns::
PASS -> FAIL: gdb.linespec/cpcompletion.exp: anon-ns: compare "b "anon_ns_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: anon-ns: compare "b 'anon_ns_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: anon-ns: compare "b -function "anon_ns_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: anon-ns: compare "b -function 'anon_ns_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: anon-ns: compare "b -function anon_ns_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: anon-ns: compare "b -function the_anon_ns_wrapper_ns::
PASS -> FAIL: gdb.linespec/cpcompletion.exp: anon-ns: compare "b anon_ns_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: anon-ns: compare "b the_anon_ns_wrapper_ns::
PASS -> FAIL: gdb.linespec/cpcompletion.exp: anon-ns: tab complete "b "anon_ns_function"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: anon-ns: tab complete "b 'anon_ns_function"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: anon-ns: tab complete "b
PASS -> FAIL: gdb.linespec/cpcompletion.exp: anon-ns: tab complete "b -function "anon_ns_function"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: anon-ns: tab complete "b -function 'anon_ns_function"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: anon-ns: tab complete "b -function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: anon-ns: tab complete "b -function anon_ns_function"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: anon-ns: tab complete "b -function the_anon_ns_wrapper_ns::
PASS -> FAIL: gdb.linespec/cpcompletion.exp: anon-ns: tab complete "b anon_ns_function"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: anon-ns: tab complete "b the_anon_ns_wrapper_ns::
PASS -> FAIL: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: cmd complete "b "not_overloaded_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: cmd complete "b "not_overloaded_fn"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: cmd complete "b "not_overloaded_fn
PASS -> FAIL: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: cmd complete "b 'not_overloaded_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: cmd complete "b 'not_overloaded_fn"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: cmd complete "b 'not_overloaded_fn
PASS -> FAIL: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: cmd complete "b -function "not_overloaded_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: cmd complete "b -function "not_overloaded_fn"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: cmd complete "b -function "not_overloaded_fn
PASS -> FAIL: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: cmd complete "b -function 'not_overloaded_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: cmd complete "b -function 'not_overloaded_fn"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: cmd complete "b -function 'not_overloaded_fn
PASS -> FAIL: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: compare "b "not_overloaded_fn
PASS -> FAIL: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: compare "b 'not_overloaded_fn
PASS -> FAIL: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: compare "b -function "not_overloaded_fn
PASS -> FAIL: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: compare "b -function 'not_overloaded_fn
PASS -> FAIL: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: tab complete "b "not_overloaded_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: tab complete "b "not_overloaded_fn"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: tab complete "b "not_overloaded_fn
PASS -> FAIL: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: tab complete "b 'not_overloaded_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: tab complete "b 'not_overloaded_fn"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: tab complete "b 'not_overloaded_fn
PASS -> FAIL: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: tab complete "b -function "not_overloaded_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: tab complete "b -function "not_overloaded_fn"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: tab complete "b -function "not_overloaded_fn
PASS -> FAIL: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: tab complete "b -function 'not_overloaded_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: tab complete "b -function 'not_overloaded_fn"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: tab complete "b -function 'not_overloaded_fn
PASS -> FAIL: gdb.linespec/cpcompletion.exp: const-overload-quoted: compare "b 'const_overload_fn
PASS -> FAIL: gdb.linespec/cpcompletion.exp: const-overload-quoted: compare "b -function 'const_overload_fn
PASS -> FAIL: gdb.linespec/cpcompletion.exp: const-overload: cmd complete "b -function const_overload_fn
PASS -> FAIL: gdb.linespec/cpcompletion.exp: const-overload: cmd complete "b -function const_overload_fn"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: const-overload: cmd complete "b const_overload_fn
PASS -> FAIL: gdb.linespec/cpcompletion.exp: const-overload: cmd complete "b const_overload_fn"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: const-overload: compare "b -function const_overload_fn" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpcompletion.exp: const-overload: compare "b -function const_overload_fn
PASS -> FAIL: gdb.linespec/cpcompletion.exp: const-overload: compare "b const_overload_fn" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpcompletion.exp: const-overload: compare "b const_overload_fn
PASS -> FAIL: gdb.linespec/cpcompletion.exp: const-overload: tab complete "b -function const_overload_fn
PASS -> FAIL: gdb.linespec/cpcompletion.exp: const-overload: tab complete "b -function const_overload_fn"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: const-overload: tab complete "b const_overload_fn
PASS -> FAIL: gdb.linespec/cpcompletion.exp: const-overload: tab complete "b const_overload_fn"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn-2: cmd complete "b -function struct_overload2_test::overload2_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn-2: compare "b -function struct_overload2_test::overload2_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn-2: tab complete "b -function struct_overload2_test::overload2_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: cmd complete "b -qualified -function ns_overload2_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: cmd complete "b -qualified -function ns_overload2_test::
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: cmd complete "b -qualified -function overload2_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: cmd complete "b -qualified -source cpls.cc -function ns_overload2_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: cmd complete "b -qualified -source cpls.cc -function ns_overload2_test::
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: cmd complete "b -qualified -source cpls.cc -function overload2_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: cmd complete "b -qualified cpls.cc:ns_overload2_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: cmd complete "b -qualified cpls.cc:ns_overload2_test::
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: cmd complete "b -qualified cpls.cc:overload2_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: cmd complete "b -qualified ns_overload2_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: cmd complete "b -qualified ns_overload2_test::
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: cmd complete "b -qualified overload2_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: cmd complete "b -source cpls.cc -qualified -function ns_overload2_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: cmd complete "b -source cpls.cc -qualified -function ns_overload2_test::
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: cmd complete "b -source cpls.cc -qualified -function overload2_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: tab complete "b -qualified -function ns_overload2_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: tab complete "b -qualified -function ns_overload2_test::
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: tab complete "b -qualified -function overload2_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: tab complete "b -qualified -source cpls.cc -function ns_overload2_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: tab complete "b -qualified -source cpls.cc -function ns_overload2_test::
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: tab complete "b -qualified -source cpls.cc -function overload2_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: tab complete "b -qualified cpls.cc:ns_overload2_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: tab complete "b -qualified cpls.cc:ns_overload2_test::
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: tab complete "b -qualified cpls.cc:overload2_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: tab complete "b -qualified ns_overload2_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: tab complete "b -qualified ns_overload2_test::
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: tab complete "b -qualified overload2_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: tab complete "b -source cpls.cc -qualified -function ns_overload2_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: tab complete "b -source cpls.cc -qualified -function ns_overload2_test::
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: tab complete "b -source cpls.cc -qualified -function overload2_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b "cpls.cc": "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b "cpls.cc": 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b "cpls.cc": function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b "cpls.cc":"function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b "cpls.cc":'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b "cpls.cc":function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b 'cpls.cc': "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b 'cpls.cc': 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b 'cpls.cc': function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b 'cpls.cc':"function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b 'cpls.cc':'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b 'cpls.cc':function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b -source "cpls.cc" -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b -source "cpls.cc" -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b -source "cpls.cc" -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b -source 'cpls.cc' -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b -source 'cpls.cc' -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b -source 'cpls.cc' -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b -source cpls.cc -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b -source cpls.cc -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b -source cpls.cc -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b cpls.cc: "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b cpls.cc: 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b cpls.cc: function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b cpls.cc:"function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b cpls.cc:'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b cpls.cc:function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: compare "b "cpls.cc": "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: compare "b "cpls.cc": 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: compare "b "cpls.cc": function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: compare "b "cpls.cc":"function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: compare "b "cpls.cc":'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: compare "b "cpls.cc":function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: compare "b "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: compare "b 'cpls.cc': "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: compare "b 'cpls.cc': 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: compare "b 'cpls.cc': function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: compare "b 'cpls.cc':"function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: compare "b 'cpls.cc':'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: compare "b 'cpls.cc':function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: compare "b 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: compare "b -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: compare "b -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: compare "b -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: compare "b -source "cpls.cc" -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: compare "b -source "cpls.cc" -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: compare "b -source "cpls.cc" -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: compare "b -source 'cpls.cc' -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: compare "b -source 'cpls.cc' -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: compare "b -source 'cpls.cc' -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: compare "b -source cpls.cc -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: compare "b -source cpls.cc -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: compare "b -source cpls.cc -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: compare "b cpls.cc: "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: compare "b cpls.cc: 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: compare "b cpls.cc: function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: compare "b cpls.cc:"function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: compare "b cpls.cc:'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: compare "b cpls.cc:function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: compare "b function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b "cpls.cc": "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b "cpls.cc": 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b "cpls.cc": function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b "cpls.cc":"function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b "cpls.cc":'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b "cpls.cc":function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b 'cpls.cc': "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b 'cpls.cc': 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b 'cpls.cc': function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b 'cpls.cc':"function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b 'cpls.cc':'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b 'cpls.cc':function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b -source "cpls.cc" -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b -source "cpls.cc" -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b -source "cpls.cc" -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b -source 'cpls.cc' -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b -source 'cpls.cc' -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b -source 'cpls.cc' -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b -source cpls.cc -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b -source cpls.cc -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b -source cpls.cc -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b cpls.cc: "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b cpls.cc: 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b cpls.cc: function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b cpls.cc:"function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b cpls.cc:'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b cpls.cc:function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: if-expression: cmd complete "b -function function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: if-expression: cmd complete "b -function non_existing_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: if-expression: cmd complete "b function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: if-expression: cmd complete "b non_existing_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: if-expression: tab complete "b -function function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: if-expression: tab complete "b -function non_existing_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: if-expression: tab complete "b function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: if-expression: tab complete "b non_existing_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b "cpls2.cc": "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b "cpls2.cc": ""
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b "cpls2.cc": '"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b "cpls2.cc":"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b "cpls2.cc":""
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b "cpls2.cc":'"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b 'cpls2.cc': "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b 'cpls2.cc': ""
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b 'cpls2.cc': '"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b 'cpls2.cc':"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b 'cpls2.cc':""
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b 'cpls2.cc':'"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b -source "cpls2.cc" -function "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b -source "cpls2.cc" -function ""
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b -source "cpls2.cc" -function '"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b -source 'cpls2.cc' -function "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b -source 'cpls2.cc' -function ""
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b -source 'cpls2.cc' -function '"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b -source cpls2.cc -function "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b -source cpls2.cc -function ""
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b -source cpls2.cc -function '"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b cpls2.cc: "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b cpls2.cc: ""
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b cpls2.cc: '"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b cpls2.cc:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b cpls2.cc:""
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b cpls2.cc:'"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b "cpls2.cc": "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b "cpls2.cc": ""
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b "cpls2.cc": '"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b "cpls2.cc":"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b "cpls2.cc":""
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b "cpls2.cc":'"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b 'cpls2.cc': "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b 'cpls2.cc': ""
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b 'cpls2.cc': '"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b 'cpls2.cc':"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b 'cpls2.cc':""
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b 'cpls2.cc':'"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b -source "cpls2.cc" -function "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b -source "cpls2.cc" -function ""
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b -source "cpls2.cc" -function '"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b -source 'cpls2.cc' -function "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b -source 'cpls2.cc' -function ""
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b -source 'cpls2.cc' -function '"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b -source cpls2.cc -function "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b -source cpls2.cc -function ""
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b -source cpls2.cc -function '"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b cpls2.cc: "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b cpls2.cc: ""
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b cpls2.cc: '"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b cpls2.cc:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b cpls2.cc:""
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b cpls2.cc:'"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b "cpls2.cc": "file_constrained_test_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b "cpls2.cc": 'file_constrained_test_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b "cpls2.cc": file_constrained_test_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b "cpls2.cc":"file_constrained_test_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b "cpls2.cc":'file_constrained_test_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b "cpls2.cc":file_constrained_test_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b 'cpls2.cc': "file_constrained_test_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b 'cpls2.cc': 'file_constrained_test_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b 'cpls2.cc': file_constrained_test_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b 'cpls2.cc':"file_constrained_test_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b 'cpls2.cc':'file_constrained_test_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b 'cpls2.cc':file_constrained_test_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b -source "cpls2.cc" -function "file_constrained_test_cpls2_function"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b -source "cpls2.cc" -function 'file_constrained_test_cpls2_function"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b -source "cpls2.cc" -function file_constrained_test_cpls2_function"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b -source 'cpls2.cc' -function "file_constrained_test_cpls2_function"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b -source 'cpls2.cc' -function 'file_constrained_test_cpls2_function"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b -source 'cpls2.cc' -function file_constrained_test_cpls2_function"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b -source cpls2.cc -function "file_constrained_test_cpls2_function"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b -source cpls2.cc -function 'file_constrained_test_cpls2_function"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b -source cpls2.cc -function file_constrained_test_cpls2_function"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b cpls2.cc: "file_constrained_test_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b cpls2.cc: 'file_constrained_test_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b cpls2.cc: file_constrained_test_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b cpls2.cc:"file_constrained_test_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b cpls2.cc:'file_constrained_test_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b cpls2.cc:file_constrained_test_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b "cpls2.cc": "file_constrained_test_cpls2_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b "cpls2.cc": 'file_constrained_test_cpls2_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b "cpls2.cc": file_constrained_test_cpls2_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b "cpls2.cc":"file_constrained_test_cpls2_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b "cpls2.cc":'file_constrained_test_cpls2_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b "cpls2.cc":file_constrained_test_cpls2_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b 'cpls2.cc': "file_constrained_test_cpls2_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b 'cpls2.cc': 'file_constrained_test_cpls2_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b 'cpls2.cc': file_constrained_test_cpls2_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b 'cpls2.cc':"file_constrained_test_cpls2_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b 'cpls2.cc':'file_constrained_test_cpls2_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b 'cpls2.cc':file_constrained_test_cpls2_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b -source "cpls2.cc" -function "file_constrained_test_cpls2_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b -source "cpls2.cc" -function 'file_constrained_test_cpls2_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b -source "cpls2.cc" -function file_constrained_test_cpls2_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b -source 'cpls2.cc' -function "file_constrained_test_cpls2_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b -source 'cpls2.cc' -function 'file_constrained_test_cpls2_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b -source 'cpls2.cc' -function file_constrained_test_cpls2_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b -source cpls2.cc -function "file_constrained_test_cpls2_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b -source cpls2.cc -function 'file_constrained_test_cpls2_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b -source cpls2.cc -function file_constrained_test_cpls2_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b cpls2.cc: "file_constrained_test_cpls2_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b cpls2.cc: 'file_constrained_test_cpls2_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b cpls2.cc: file_constrained_test_cpls2_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b cpls2.cc:"file_constrained_test_cpls2_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b cpls2.cc:'file_constrained_test_cpls2_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b cpls2.cc:file_constrained_test_cpls2_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: tab complete "b "cpls2.cc": "file_constrained_test_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: tab complete "b "cpls2.cc": 'file_constrained_test_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: tab complete "b "cpls2.cc": file_constrained_test_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: tab complete "b "cpls2.cc":"file_constrained_test_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: tab complete "b "cpls2.cc":'file_constrained_test_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: tab complete "b "cpls2.cc":file_constrained_test_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: tab complete "b 'cpls2.cc': "file_constrained_test_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: tab complete "b 'cpls2.cc': 'file_constrained_test_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: tab complete "b 'cpls2.cc': file_constrained_test_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: tab complete "b 'cpls2.cc':"file_constrained_test_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: tab complete "b 'cpls2.cc':'file_constrained_test_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: tab complete "b 'cpls2.cc':file_constrained_test_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: tab complete "b -source "cpls2.cc" -function "file_constrained_test_cpls2_function"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: tab complete "b -source "cpls2.cc" -function 'file_constrained_test_cpls2_function"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: tab complete "b -source "cpls2.cc" -function file_constrained_test_cpls2_function"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: tab complete "b -source 'cpls2.cc' -function "file_constrained_test_cpls2_function"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: tab complete "b -source 'cpls2.cc' -function 'file_constrained_test_cpls2_function"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: tab complete "b -source 'cpls2.cc' -function file_constrained_test_cpls2_function"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: tab complete "b -source cpls2.cc -function "file_constrained_test_cpls2_function"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: tab complete "b -source cpls2.cc -function 'file_constrained_test_cpls2_function"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: tab complete "b -source cpls2.cc -function file_constrained_test_cpls2_function"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: tab complete "b cpls2.cc: "file_constrained_test_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: tab complete "b cpls2.cc: 'file_constrained_test_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: tab complete "b cpls2.cc: file_constrained_test_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: tab complete "b cpls2.cc:"file_constrained_test_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: tab complete "b cpls2.cc:'file_constrained_test_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: tab complete "b cpls2.cc:file_constrained_test_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unconstrained: cmd complete "b file_constrained_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unconstrained: tab complete "b file_constrained_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function "ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function "ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function "ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function "ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function "ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function "ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function "ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function "ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function "struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function "struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function "struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function "struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function 'ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function 'ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function 'ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function 'ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function 'ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function 'ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function 'ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function 'ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function 'struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function 'struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function 'struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function 'struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":"ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":"ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":"ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":"ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":"ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":"ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":"ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":"ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":"struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":"struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":"struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":"struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":'ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":'ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":'ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":'ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":'ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":'ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":'ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":'ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":'struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":'struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":'struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":'struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':"ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':"ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':"ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':"ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':"ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':"ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':"ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':"ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':"struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':"struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':"struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':"struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':'ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':'ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':'ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':'ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':'ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':'ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':'ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':'ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':'struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':'struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':'struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':'struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function "ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function "ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function "ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function "ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function "ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function "ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function "ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function "ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function "struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function "struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function "struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function "struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function 'ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function 'ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function 'ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function 'ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function 'ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function 'ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function 'ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function 'ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function 'struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function 'struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function 'struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function 'struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function "ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function "ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function "ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function "ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function "ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function "ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function "ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function "ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function "struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function "struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function "struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function "struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function 'ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function 'ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function 'ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function 'ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function 'ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function 'ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function 'ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function 'ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function 'struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function 'struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function 'struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function 'struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function "ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function "ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function "ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function "ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function "ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function "ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function "ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function "ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function "struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function "struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function "struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function "struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function 'ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function 'ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function 'ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function 'ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function 'ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function 'ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function 'ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function 'ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function 'struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function 'struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function 'struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function 'struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:"ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:"ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:"ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:"ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:"ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:"ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:"ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:"ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:"struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:"struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:"struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:"struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:'ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:'ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:'ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:'ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:'ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:'ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:'ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:'ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:'struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:'struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:'struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:'struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b  -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b  -function "ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b  -function "struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b  -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b  -function 'ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b  -function 'struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b  -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b  -function ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b  -function struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b "cpls.cc":"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b "cpls.cc":"ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b "cpls.cc":"struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b "cpls.cc":'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b "cpls.cc":'ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b "cpls.cc":'struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b "cpls.cc":ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b "cpls.cc":ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b "cpls.cc":struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b "ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b "struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b 'cpls.cc':"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b 'cpls.cc':"ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b 'cpls.cc':"struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b 'cpls.cc':'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b 'cpls.cc':'ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b 'cpls.cc':'struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b 'cpls.cc':ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b 'cpls.cc':ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b 'cpls.cc':struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b 'ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b 'struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source "cpls.cc" -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source "cpls.cc" -function "ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source "cpls.cc" -function "struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source "cpls.cc" -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source "cpls.cc" -function 'ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source "cpls.cc" -function 'struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source "cpls.cc" -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source "cpls.cc" -function ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source "cpls.cc" -function struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source 'cpls.cc' -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source 'cpls.cc' -function "ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source 'cpls.cc' -function "struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source 'cpls.cc' -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source 'cpls.cc' -function 'ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source 'cpls.cc' -function 'struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source 'cpls.cc' -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source 'cpls.cc' -function ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source 'cpls.cc' -function struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source cpls.cc -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source cpls.cc -function "ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source cpls.cc -function "struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source cpls.cc -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source cpls.cc -function 'ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source cpls.cc -function 'struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source cpls.cc -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source cpls.cc -function ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source cpls.cc -function struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b cpls.cc:"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b cpls.cc:"ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b cpls.cc:"struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b cpls.cc:'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b cpls.cc:'ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b cpls.cc:'struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b cpls.cc:ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b cpls.cc:ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b cpls.cc:struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function "ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function "ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function "ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function "ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function "ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function "ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function "ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function "ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function "struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function "struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function "struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function "struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function 'ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function 'ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function 'ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function 'ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function 'ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function 'ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function 'ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function 'ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function 'struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function 'struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function 'struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function 'struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b  -function struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":"ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":"ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":"ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":"ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":"ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":"ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":"ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":"ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":"struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":"struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":"struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":"struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":'ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":'ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":'ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":'ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":'ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":'ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":'ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":'ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":'struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":'struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":'struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":'struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "cpls.cc":struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b "struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':"ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':"ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':"ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':"ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':"ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':"ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':"ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':"ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':"struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':"struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':"struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':"struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':'ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':'ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':'ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':'ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':'ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':'ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':'ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':'ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':'struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':'struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':'struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':'struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'cpls.cc':struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b 'struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function "ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function "ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function "ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function "ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function "ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function "ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function "ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function "ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function "struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function "struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function "struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function "struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function 'ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function 'ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function 'ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function 'ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function 'ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function 'ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function 'ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function 'ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function 'struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function 'struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function 'struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function 'struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source "cpls.cc" -function struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function "ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function "ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function "ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function "ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function "ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function "ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function "ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function "ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function "struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function "struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function "struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function "struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function 'ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function 'ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function 'ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function 'ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function 'ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function 'ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function 'ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function 'ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function 'struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function 'struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function 'struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function 'struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source 'cpls.cc' -function struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function "ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function "ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function "ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function "ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function "ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function "ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function "ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function "ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function "struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function "struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function "struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function "struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function 'ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function 'ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function 'ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function 'ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function 'ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function 'ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function 'ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function 'ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function 'struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function 'struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function 'struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function 'struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b -source cpls.cc -function struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:"ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:"ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:"ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:"ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:"ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:"ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:"ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:"ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:"struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:"struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:"struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:"struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:'ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:'ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:'ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:'ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:'ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:'ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:'ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:'ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:'struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:'struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:'struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:'struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b ns2_incomplete_scope_colon_test::s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b ns_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b ns_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b ns_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b ns_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b struct_incomplete_scope_colon_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b struct_incomplete_scope_colon_test:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b struct_incomplete_scope_colon_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b struct_incomplete_scope_colon_test::i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: no-data-symbols: cmd complete "b -function code_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: no-data-symbols: cmd complete "b code_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: no-data-symbols: tab complete "b -function code_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: no-data-symbols: tab complete "b code_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: operator<: cmd complete "b -function opera"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: operator<: cmd complete "b -function operat"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: operator<: cmd complete "b -function operato"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: operator<: cmd complete "b -function operator"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: operator<: cmd complete "b -function operator<"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: operator<: cmd complete "b -function operator<
PASS -> FAIL: gdb.linespec/cpcompletion.exp: operator<: cmd complete "b opera"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: operator<: cmd complete "b operat"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: operator<: cmd complete "b operato"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: operator<: cmd complete "b operator"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: operator<: cmd complete "b operator<"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: operator<: cmd complete "b operator<
PASS -> FAIL: gdb.linespec/cpcompletion.exp: operator<: compare "b -function operator<
PASS -> FAIL: gdb.linespec/cpcompletion.exp: operator<: compare "b operator<
PASS -> FAIL: gdb.linespec/cpcompletion.exp: operator<: tab complete "b -function opera"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: operator<: tab complete "b -function operat"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: operator<: tab complete "b -function operato"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: operator<: tab complete "b -function operator"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: operator<: tab complete "b -function operator<"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: operator<: tab complete "b -function operator<
PASS -> FAIL: gdb.linespec/cpcompletion.exp: operator<: tab complete "b opera"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: operator<: tab complete "b operat"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: operator<: tab complete "b operato"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: operator<: tab complete "b operator"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: operator<: tab complete "b operator<"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: operator<: tab complete "b operator<
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: all: cmd complete "b -function overload2_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: all: cmd complete "b overload2_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: all: compare "b -function overload2_function" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: all: compare "b overload2_function" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: all: tab complete "b -function overload2_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: all: tab complete "b overload2_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: restrict scope 2: cmd complete "b
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: restrict scope 2: cmd complete "b -function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: restrict scope 2: compare "b
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: restrict scope 2: compare "b -function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: restrict scope 2: tab complete "b
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: restrict scope 2: tab complete "b -function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: restrict scope: cmd complete "b -function ns_overload2_test::overload2_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: restrict scope: cmd complete "b ns_overload2_test::overload2_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: restrict scope: compare "b -function ns_overload2_test::overload2_function" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: restrict scope: compare "b ns_overload2_test::overload2_function" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: restrict scope: tab complete "b -function ns_overload2_test::overload2_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: restrict scope: tab complete "b ns_overload2_test::overload2_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: unique completion: cmd complete "b -function ns_overload2_test::
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: unique completion: cmd complete "b ns_overload2_test::
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: unique completion: compare "b -function ns_overload2_test::
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: unique completion: compare "b ns_overload2_test::
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: unique completion: tab complete "b -function ns_overload2_test::
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: unique completion: tab complete "b ns_overload2_test::
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-3: all overloads: cmd complete "b -function overload3_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-3: all overloads: cmd complete "b overload3_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-3: all overloads: compare "b -function overload3_function" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-3: all overloads: compare "b overload3_function" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-3: all overloads: tab complete "b -function overload3_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-3: all overloads: tab complete "b overload3_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-3: restrict overload: cmd complete "b -function overload3_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-3: restrict overload: cmd complete "b overload3_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-3: restrict overload: compare "b -function overload3_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-3: restrict overload: compare "b overload3_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-3: restrict overload: tab complete "b -function overload3_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-3: restrict overload: tab complete "b overload3_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-3: restrict scope: cmd complete "b -function struct_overload3_test::overload3_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-3: restrict scope: cmd complete "b struct_overload3_test::overload3_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-3: restrict scope: compare "b -function struct_overload3_test::overload3_function" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-3: restrict scope: compare "b struct_overload3_test::overload3_function" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-3: restrict scope: tab complete "b -function struct_overload3_test::overload3_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-3: restrict scope: tab complete "b struct_overload3_test::overload3_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload: cmd complete "b -function overload_ambiguous_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload: cmd complete "b -function overload_ambiguous_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload: cmd complete "b overload_ambiguous_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload: cmd complete "b overload_ambiguous_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload: compare "b -function overload_ambiguous_test" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload: compare "b -function overload_ambiguous_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload: compare "b overload_ambiguous_test" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload: compare "b overload_ambiguous_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload: tab complete "b -function overload_ambiguous_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload: tab complete "b -function overload_ambiguous_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload: tab complete "b overload_ambiguous_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload: tab complete "b overload_ambiguous_test
PASS -> FAIL: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b "cpls-"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b "cpls-hyphen"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b "cpls2."
PASS -> FAIL: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b "cpls2.c"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b "cpls2.cc"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b 'cpls-"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b 'cpls-hyphen"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b 'cpls2."
PASS -> FAIL: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b 'cpls2.c"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b 'cpls2.cc"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b cpls-"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b cpls-hyphen"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b cpls2."
PASS -> FAIL: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b cpls2.c"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b cpls2.cc"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: tab complete "b "cpls-"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: tab complete "b "cpls-hyphen"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: tab complete "b "cpls2."
PASS -> FAIL: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: tab complete "b "cpls2.c"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: tab complete "b "cpls2.cc"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: tab complete "b 'cpls-"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: tab complete "b 'cpls-hyphen"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: tab complete "b 'cpls2."
PASS -> FAIL: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: tab complete "b 'cpls2.c"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: tab complete "b 'cpls2.cc"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: tab complete "b cpls-"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: tab complete "b cpls-hyphen"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: tab complete "b cpls2."
PASS -> FAIL: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: tab complete "b cpls2.c"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: tab complete "b cpls2.cc"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-overload: cmd complete "b -function template_overload_fn"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-overload: cmd complete "b template_overload_fn"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-overload: compare "b -function template_overload_fn" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-overload: compare "b -function template_struct<int>::template_overload_fn" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-overload: compare "b template_overload_fn" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-overload: compare "b template_struct<int>::template_overload_fn" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-overload: tab complete "b -function template_overload_fn"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-overload: tab complete "b template_overload_fn"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_re"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_t"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_ty"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_typ"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<in"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> t"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> te"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> tem"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> temp"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> templ"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> templa"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> templat"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_st"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_str"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_stru"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struc"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<t"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<te"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<tem"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<temp"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<templ"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<templa"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<templat"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_r"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_re"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_t"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_ty"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_typ"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<in"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::t"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::te"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::tem"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::temp"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::templ"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::templa"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::templat"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_f"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<in"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, in"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, int"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, int>"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, int>
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int,"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int>"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int>"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_st"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_str"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_stru"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struc"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<t"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<te"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<tem"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<temp"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<templ"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<templa"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<templat"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_r"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_re"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_t"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_ty"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_typ"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<in"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::t"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::te"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::tem"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::temp"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::templ"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::templa"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::templat"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::template"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::template2"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::template2_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::template2_f"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::template2_fn"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::template2_fn<"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::template2_fn<i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::template2_fn<in"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::template2_fn<int"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::template2_fn<int, "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::template2_fn<int, i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::template2_fn<int, in"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::template2_fn<int, int"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::template2_fn<int, int>"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::template2_fn<int, int>
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::template2_fn<int,"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int>"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_re"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_t"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_ty"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_typ"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<in"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> t"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> te"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> tem"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> temp"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> templ"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> templa"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> templat"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_st"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_str"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_stru"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struc"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<t"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<te"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<tem"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<temp"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<templ"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<templa"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<templat"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_r"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_re"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_t"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_ty"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_typ"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<in"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::t"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::te"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::tem"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::temp"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::templ"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::templa"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::templat"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_f"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<in"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, in"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, int"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, int>"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, int>
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int,"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int>"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int>"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_st"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_str"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_stru"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struc"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<t"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<te"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<tem"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<temp"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<templ"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<templa"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<templat"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_r"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_re"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_t"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_ty"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_typ"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<in"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::t"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::te"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::tem"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::temp"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::templ"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::templa"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::templat"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::template"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::template2"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::template2_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::template2_f"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::template2_fn"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::template2_fn<"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::template2_fn<i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::template2_fn<in"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::template2_fn<int"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::template2_fn<int, "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::template2_fn<int, i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::template2_fn<int, in"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::template2_fn<int, int"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::template2_fn<int, int>"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::template2_fn<int, int>
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::template2_fn<int,"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int>"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b -function template2_fn<int, int>" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b -function template2_fn<int, int>
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, int>" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, int>
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b -function template2_struct<template2_ret_type<int> >::template2_fn<int, int>" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b -function template2_struct<template2_ret_type<int> >::template2_fn<int, int>
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b template2_fn<int, int>" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b template2_fn<int, int>
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, int>" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, int>
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b template2_struct<template2_ret_type<int> >::template2_fn<int, int>" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b template2_struct<template2_ret_type<int> >::template2_fn<int, int>
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_re"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_t"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_ty"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_typ"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<in"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> t"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> te"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> tem"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> temp"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> templ"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> templa"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> templat"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_st"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_str"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_stru"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struc"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<t"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<te"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<tem"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<temp"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<templ"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<templa"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<templat"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_r"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_re"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_ret"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_ret_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_ret_t"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_ret_ty"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_ret_typ"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_ret_type"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<in"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::t"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::te"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::tem"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::temp"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::templ"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::templa"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::templat"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_f"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<in"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, in"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, int"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, int>"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, int>
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int,"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int>"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_ret_type<int>"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_st"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_str"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_stru"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struc"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<t"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<te"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<tem"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<temp"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<templ"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<templa"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<templat"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_r"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_re"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_ret"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_ret_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_ret_t"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_ret_ty"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_ret_typ"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_ret_type"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_ret_type<"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_ret_type<i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_ret_type<in"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_ret_type<int"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_ret_type<int> "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_ret_type<int> >"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_ret_type<int> >:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_ret_type<int> >::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_ret_type<int> >::t"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_ret_type<int> >::te"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_ret_type<int> >::tem"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_ret_type<int> >::temp"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_ret_type<int> >::templ"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_ret_type<int> >::templa"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_ret_type<int> >::templat"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_ret_type<int> >::template"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_ret_type<int> >::template2"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_ret_type<int> >::template2_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_ret_type<int> >::template2_f"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_ret_type<int> >::template2_fn"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_ret_type<int> >::template2_fn<"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_ret_type<int> >::template2_fn<i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_ret_type<int> >::template2_fn<in"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_ret_type<int> >::template2_fn<int"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_ret_type<int> >::template2_fn<int, "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_ret_type<int> >::template2_fn<int, i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_ret_type<int> >::template2_fn<int, in"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_ret_type<int> >::template2_fn<int, int"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_ret_type<int> >::template2_fn<int, int>"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_ret_type<int> >::template2_fn<int, int>
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_ret_type<int> >::template2_fn<int,"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_struct<template2_ret_type<int>"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_re"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_t"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_ty"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_typ"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<in"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> t"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> te"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> tem"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> temp"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> templ"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> templa"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> templat"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_s"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_st"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_str"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_stru"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struc"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<t"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<te"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<tem"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<temp"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<templ"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<templa"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<templat"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_r"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_re"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_ret"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_ret_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_ret_t"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_ret_ty"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_ret_typ"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_ret_type"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_ret_type<"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_ret_type<i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_ret_type<in"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_ret_type<int"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::t"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::te"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::tem"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::temp"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::templ"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::templa"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::templat"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_f"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<in"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, in"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, int"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, int>"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, int>
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int,"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int> template2_struct<template2_ret_type<int>"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_ret_type<int>"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_st"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_str"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_stru"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struc"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<t"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<te"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<tem"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<temp"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<templ"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<templa"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<templat"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_r"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_re"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_ret"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_ret_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_ret_t"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_ret_ty"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_ret_typ"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_ret_type"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_ret_type<"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_ret_type<i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_ret_type<in"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_ret_type<int"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_ret_type<int> "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_ret_type<int> >"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_ret_type<int> >:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_ret_type<int> >::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_ret_type<int> >::t"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_ret_type<int> >::te"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_ret_type<int> >::tem"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_ret_type<int> >::temp"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_ret_type<int> >::templ"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_ret_type<int> >::templa"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_ret_type<int> >::templat"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_ret_type<int> >::template"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_ret_type<int> >::template2"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_ret_type<int> >::template2_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_ret_type<int> >::template2_f"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_ret_type<int> >::template2_fn"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_ret_type<int> >::template2_fn<"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_ret_type<int> >::template2_fn<i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_ret_type<int> >::template2_fn<in"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_ret_type<int> >::template2_fn<int"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_ret_type<int> >::template2_fn<int, "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_ret_type<int> >::template2_fn<int, i"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_ret_type<int> >::template2_fn<int, in"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_ret_type<int> >::template2_fn<int, int"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_ret_type<int> >::template2_fn<int, int>"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_ret_type<int> >::template2_fn<int, int>
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_ret_type<int> >::template2_fn<int,"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_struct<template2_ret_type<int>"
new FAIL: gdb.linespec/cpexplicit.exp:
new FAIL: gdb.linespec/cpls-abi-tag.exp:
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: abi tag in parameters: cmd complete "b -function test_abi_tag_in_para"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: abi tag in parameters: cmd complete "b -function test_abi_tag_in_params
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: abi tag in parameters: cmd complete "b test_abi_tag_in_para"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: abi tag in parameters: cmd complete "b test_abi_tag_in_params
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: abi tag in parameters: compare "b -function test_abi_tag_in_params
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: abi tag in parameters: compare "b test_abi_tag_in_params
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: abi tag in parameters: tab complete "b -function test_abi_tag_in_para"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: abi tag in parameters: tab complete "b -function test_abi_tag_in_params
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: abi tag in parameters: tab complete "b test_abi_tag_in_para"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: abi tag in parameters: tab complete "b test_abi_tag_in_params
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: breakpoints on overloaded functions: compare "b -function test_abi_tag_ovld_function" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: breakpoints on overloaded functions: compare "b -function test_abi_tag_ovld_function[abi:tag1]" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: breakpoints on overloaded functions: compare "b test_abi_tag_ovld_function" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: breakpoints on overloaded functions: compare "b test_abi_tag_ovld_function[abi:tag1]" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions different abi: cmd complete "b -function test_abi_tag_ovld2_f"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions different abi: cmd complete "b -function test_abi_tag_ovld2_function["
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions different abi: cmd complete "b -function test_abi_tag_ovld2_function[abi:tag1"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions different abi: cmd complete "b -function test_abi_tag_ovld2_function[abi:tag2"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions different abi: cmd complete "b test_abi_tag_ovld2_f"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions different abi: cmd complete "b test_abi_tag_ovld2_function["
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions different abi: cmd complete "b test_abi_tag_ovld2_function[abi:tag1"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions different abi: cmd complete "b test_abi_tag_ovld2_function[abi:tag2"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions different abi: tab complete "b -function test_abi_tag_ovld2_f"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions different abi: tab complete "b -function test_abi_tag_ovld2_function["
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions different abi: tab complete "b -function test_abi_tag_ovld2_function[abi:tag1"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions different abi: tab complete "b -function test_abi_tag_ovld2_function[abi:tag2"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions different abi: tab complete "b test_abi_tag_ovld2_f"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions different abi: tab complete "b test_abi_tag_ovld2_function["
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions different abi: tab complete "b test_abi_tag_ovld2_function[abi:tag1"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions different abi: tab complete "b test_abi_tag_ovld2_function[abi:tag2"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions: cmd complete "b -function test_abi_tag_ovld_f"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions: cmd complete "b -function test_abi_tag_ovld_function["
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions: cmd complete "b test_abi_tag_ovld_f"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions: cmd complete "b test_abi_tag_ovld_function["
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions: tab complete "b -function test_abi_tag_ovld_f"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions: tab complete "b -function test_abi_tag_ovld_function["
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions: tab complete "b test_abi_tag_ovld_f"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions: tab complete "b test_abi_tag_ovld_function["
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of struct prefixes with tags: cmd complete "b -function test_abi_tag_struc"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of struct prefixes with tags: cmd complete "b -function test_abi_tag_struct::t"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of struct prefixes with tags: cmd complete "b -function test_abi_tag_struct["
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of struct prefixes with tags: cmd complete "b -function test_abi_tag_struct[abi:tag1]::t"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of struct prefixes with tags: cmd complete "b -function test_abi_tag_struct[abi:tag1]::test_abi_tag_struct["
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of struct prefixes with tags: cmd complete "b test_abi_tag_struc"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of struct prefixes with tags: cmd complete "b test_abi_tag_struct::t"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of struct prefixes with tags: cmd complete "b test_abi_tag_struct["
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of struct prefixes with tags: cmd complete "b test_abi_tag_struct[abi:tag1]::t"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of struct prefixes with tags: cmd complete "b test_abi_tag_struct[abi:tag1]::test_abi_tag_struct["
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of struct prefixes with tags: tab complete "b -function test_abi_tag_struc"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of struct prefixes with tags: tab complete "b -function test_abi_tag_struct::t"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of struct prefixes with tags: tab complete "b -function test_abi_tag_struct["
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of struct prefixes with tags: tab complete "b -function test_abi_tag_struct[abi:tag1]::t"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of struct prefixes with tags: tab complete "b -function test_abi_tag_struct[abi:tag1]::test_abi_tag_struct["
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of struct prefixes with tags: tab complete "b test_abi_tag_struc"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of struct prefixes with tags: tab complete "b test_abi_tag_struct::t"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of struct prefixes with tags: tab complete "b test_abi_tag_struct["
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of struct prefixes with tags: tab complete "b test_abi_tag_struct[abi:tag1]::t"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of struct prefixes with tags: tab complete "b test_abi_tag_struct[abi:tag1]::test_abi_tag_struct["
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: cmd complete "b -function test_abi_tag_function["
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: cmd complete "b -function test_abi_tag_function[a"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: cmd complete "b -function test_abi_tag_function[ab"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: cmd complete "b -function test_abi_tag_function[abi"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: cmd complete "b -function test_abi_tag_function[abi:"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: cmd complete "b -function test_abi_tag_function[abi:t"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: cmd complete "b -function test_abi_tag_function[abi:ta"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: cmd complete "b -function test_abi_tag_function[abi:tag"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: cmd complete "b -function test_abi_tag_function[abi:tag1"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: cmd complete "b -function test_abi_tag_function[abi:tag1]"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: cmd complete "b -function test_abi_tag_function[abi:tag1]
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: cmd complete "b test_abi_tag_function["
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: cmd complete "b test_abi_tag_function[a"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: cmd complete "b test_abi_tag_function[ab"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: cmd complete "b test_abi_tag_function[abi"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: cmd complete "b test_abi_tag_function[abi:"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: cmd complete "b test_abi_tag_function[abi:t"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: cmd complete "b test_abi_tag_function[abi:ta"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: cmd complete "b test_abi_tag_function[abi:tag"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: cmd complete "b test_abi_tag_function[abi:tag1"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: cmd complete "b test_abi_tag_function[abi:tag1]"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: cmd complete "b test_abi_tag_function[abi:tag1]
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: tab complete "b -function test_abi_tag_function["
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: tab complete "b -function test_abi_tag_function[a"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: tab complete "b -function test_abi_tag_function[ab"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: tab complete "b -function test_abi_tag_function[abi"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: tab complete "b -function test_abi_tag_function[abi:"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: tab complete "b -function test_abi_tag_function[abi:t"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: tab complete "b -function test_abi_tag_function[abi:ta"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: tab complete "b -function test_abi_tag_function[abi:tag"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: tab complete "b -function test_abi_tag_function[abi:tag1"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: tab complete "b -function test_abi_tag_function[abi:tag1]"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: tab complete "b -function test_abi_tag_function[abi:tag1]
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: tab complete "b test_abi_tag_function["
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: tab complete "b test_abi_tag_function[a"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: tab complete "b test_abi_tag_function[ab"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: tab complete "b test_abi_tag_function[abi"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: tab complete "b test_abi_tag_function[abi:"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: tab complete "b test_abi_tag_function[abi:t"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: tab complete "b test_abi_tag_function[abi:ta"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: tab complete "b test_abi_tag_function[abi:tag"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: tab complete "b test_abi_tag_function[abi:tag1"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: tab complete "b test_abi_tag_function[abi:tag1]"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: at tag: tab complete "b test_abi_tag_function[abi:tag1]
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: skip tag: cmd complete "b -function test_abi_tag_function"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: skip tag: cmd complete "b -function test_abi_tag_function
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: skip tag: cmd complete "b test_abi_tag_function"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: skip tag: cmd complete "b test_abi_tag_function
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: skip tag: tab complete "b -function test_abi_tag_function"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: skip tag: tab complete "b -function test_abi_tag_function
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: skip tag: tab complete "b test_abi_tag_function"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: skip tag: tab complete "b test_abi_tag_function
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: spaces: cmd complete "b -function test_abi_tag_function [abi:tag1]
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: spaces: cmd complete "b test_abi_tag_function [abi:tag1]
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: spaces: tab complete "b -function test_abi_tag_function [abi:tag1]
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion: spaces: tab complete "b test_abi_tag_function [abi:tag1]
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b -function test_abi_tag_function
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b -function test_abi_tag_function [abi:tag1]
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b -function test_abi_tag_function [abi:tag1]" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b -function test_abi_tag_function" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b -function test_abi_tag_function[abi:tag1]" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b -function test_abi_tag_function[abi:tag1]
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b test_abi_tag_function
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b test_abi_tag_function [abi:tag1]
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b test_abi_tag_function [abi:tag1]" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b test_abi_tag_function" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b test_abi_tag_function[abi:tag1]" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b test_abi_tag_function[abi:tag1]
new FAIL: gdb.linespec/cpls-ops.exp:
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: cmd complete "b -function test_op_arrow"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: cmd complete "b -function test_op_arrow:"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: cmd complete "b -function test_op_arrow::"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: cmd complete "b -function test_op_arrow::o"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: cmd complete "b -function test_op_arrow::op"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: cmd complete "b -function test_op_arrow::ope"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: cmd complete "b -function test_op_arrow::oper"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: cmd complete "b -function test_op_arrow::opera"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: cmd complete "b -function test_op_arrow::operat"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: cmd complete "b -function test_op_arrow::operato"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: cmd complete "b -function test_op_arrow::operator ->
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: cmd complete "b -function test_op_arrow::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: cmd complete "b -function test_op_arrow::operator-"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: cmd complete "b -function test_op_arrow::operator->"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: cmd complete "b -function test_op_arrow::operator->
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: cmd complete "b test_op_arrow"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: cmd complete "b test_op_arrow:"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: cmd complete "b test_op_arrow::"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: cmd complete "b test_op_arrow::o"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: cmd complete "b test_op_arrow::op"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: cmd complete "b test_op_arrow::ope"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: cmd complete "b test_op_arrow::oper"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: cmd complete "b test_op_arrow::opera"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: cmd complete "b test_op_arrow::operat"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: cmd complete "b test_op_arrow::operato"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: cmd complete "b test_op_arrow::operator ->
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: cmd complete "b test_op_arrow::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: cmd complete "b test_op_arrow::operator-"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: cmd complete "b test_op_arrow::operator->"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: cmd complete "b test_op_arrow::operator->
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: tab complete "b -function test_op_arrow"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: tab complete "b -function test_op_arrow:"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: tab complete "b -function test_op_arrow::"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: tab complete "b -function test_op_arrow::o"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: tab complete "b -function test_op_arrow::op"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: tab complete "b -function test_op_arrow::ope"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: tab complete "b -function test_op_arrow::oper"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: tab complete "b -function test_op_arrow::opera"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: tab complete "b -function test_op_arrow::operat"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: tab complete "b -function test_op_arrow::operato"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: tab complete "b -function test_op_arrow::operator ->
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: tab complete "b -function test_op_arrow::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: tab complete "b -function test_op_arrow::operator-"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: tab complete "b -function test_op_arrow::operator->"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: tab complete "b -function test_op_arrow::operator->
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: tab complete "b test_op_arrow"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: tab complete "b test_op_arrow:"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: tab complete "b test_op_arrow::"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: tab complete "b test_op_arrow::o"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: tab complete "b test_op_arrow::op"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: tab complete "b test_op_arrow::ope"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: tab complete "b test_op_arrow::oper"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: tab complete "b test_op_arrow::opera"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: tab complete "b test_op_arrow::operat"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: tab complete "b test_op_arrow::operato"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: tab complete "b test_op_arrow::operator ->
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: tab complete "b test_op_arrow::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: tab complete "b test_op_arrow::operator-"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: tab complete "b test_op_arrow::operator->"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: arrow-operator: tab complete "b test_op_arrow::operator->
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: cmd complete "b -function test_op_assign"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: cmd complete "b -function test_op_assign:"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: cmd complete "b -function test_op_assign::"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: cmd complete "b -function test_op_assign::o"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: cmd complete "b -function test_op_assign::op"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: cmd complete "b -function test_op_assign::ope"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: cmd complete "b -function test_op_assign::oper"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: cmd complete "b -function test_op_assign::opera"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: cmd complete "b -function test_op_assign::operat"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: cmd complete "b -function test_op_assign::operato"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: cmd complete "b -function test_op_assign::operator =
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: cmd complete "b -function test_op_assign::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: cmd complete "b -function test_op_assign::operator="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: cmd complete "b -function test_op_assign::operator=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: cmd complete "b test_op_assign"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: cmd complete "b test_op_assign:"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: cmd complete "b test_op_assign::"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: cmd complete "b test_op_assign::o"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: cmd complete "b test_op_assign::op"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: cmd complete "b test_op_assign::ope"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: cmd complete "b test_op_assign::oper"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: cmd complete "b test_op_assign::opera"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: cmd complete "b test_op_assign::operat"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: cmd complete "b test_op_assign::operato"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: cmd complete "b test_op_assign::operator =
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: cmd complete "b test_op_assign::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: cmd complete "b test_op_assign::operator="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: cmd complete "b test_op_assign::operator=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: tab complete "b -function test_op_assign"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: tab complete "b -function test_op_assign:"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: tab complete "b -function test_op_assign::"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: tab complete "b -function test_op_assign::o"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: tab complete "b -function test_op_assign::op"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: tab complete "b -function test_op_assign::ope"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: tab complete "b -function test_op_assign::oper"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: tab complete "b -function test_op_assign::opera"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: tab complete "b -function test_op_assign::operat"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: tab complete "b -function test_op_assign::operato"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: tab complete "b -function test_op_assign::operator =
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: tab complete "b -function test_op_assign::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: tab complete "b -function test_op_assign::operator="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: tab complete "b -function test_op_assign::operator=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: tab complete "b test_op_assign"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: tab complete "b test_op_assign:"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: tab complete "b test_op_assign::"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: tab complete "b test_op_assign::o"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: tab complete "b test_op_assign::op"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: tab complete "b test_op_assign::ope"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: tab complete "b test_op_assign::oper"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: tab complete "b test_op_assign::opera"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: tab complete "b test_op_assign::operat"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: tab complete "b test_op_assign::operato"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: tab complete "b test_op_assign::operator =
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: tab complete "b test_op_assign::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: tab complete "b test_op_assign::operator="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: assignment-operator: tab complete "b test_op_assign::operator=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion:"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::o"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::op"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::ope"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::oper"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::opera"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operat"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operato"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator t"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator te"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator tes"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator test"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator test_"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator test_o"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator test_op"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator test_op_"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator test_op_c"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator test_op_co"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator test_op_con"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator test_op_conv"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator test_op_conve"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator test_op_conver"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator test_op_convers"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator test_op_conversi"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator test_op_conversio"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator test_op_conversion"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator test_op_conversion_"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator test_op_conversion_r"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator test_op_conversion_re"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator test_op_conversion_res "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator test_op_conversion_res c"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator test_op_conversion_res co"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator test_op_conversion_res con"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator test_op_conversion_res cons"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator test_op_conversion_res const "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator test_op_conversion_res const v"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator test_op_conversion_res const vo"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator test_op_conversion_res const vol"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator test_op_conversion_res const vola"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator test_op_conversion_res const volat"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator test_op_conversion_res const volati"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator test_op_conversion_res const volatil"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator test_op_conversion_res const volatile * *
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator test_op_conversion_res const volatile"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator test_op_conversion_res const volatile*"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator test_op_conversion_res const volatile**"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator test_op_conversion_res const volatile**
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator test_op_conversion_res const"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator test_op_conversion_res"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion:"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::o"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::op"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::ope"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::oper"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::opera"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operat"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operato"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator t"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator te"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator tes"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator test"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator test_"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator test_o"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator test_op"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator test_op_"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator test_op_c"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator test_op_co"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator test_op_con"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator test_op_conv"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator test_op_conve"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator test_op_conver"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator test_op_convers"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator test_op_conversi"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator test_op_conversio"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator test_op_conversion"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator test_op_conversion_"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator test_op_conversion_r"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator test_op_conversion_re"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator test_op_conversion_res "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator test_op_conversion_res c"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator test_op_conversion_res co"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator test_op_conversion_res con"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator test_op_conversion_res cons"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator test_op_conversion_res const "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator test_op_conversion_res const v"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator test_op_conversion_res const vo"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator test_op_conversion_res const vol"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator test_op_conversion_res const vola"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator test_op_conversion_res const volat"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator test_op_conversion_res const volati"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator test_op_conversion_res const volatil"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator test_op_conversion_res const volatile * *
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator test_op_conversion_res const volatile"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator test_op_conversion_res const volatile*"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator test_op_conversion_res const volatile**"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator test_op_conversion_res const volatile**
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator test_op_conversion_res const"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator test_op_conversion_res"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b test_op_conversion::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion:"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::o"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::op"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::ope"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::oper"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::opera"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operat"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operato"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator t"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator te"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator tes"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator test"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator test_"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator test_o"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator test_op"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator test_op_"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator test_op_c"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator test_op_co"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator test_op_con"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator test_op_conv"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator test_op_conve"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator test_op_conver"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator test_op_convers"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator test_op_conversi"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator test_op_conversio"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator test_op_conversion"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator test_op_conversion_"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator test_op_conversion_r"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator test_op_conversion_re"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator test_op_conversion_res "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator test_op_conversion_res c"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator test_op_conversion_res co"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator test_op_conversion_res con"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator test_op_conversion_res cons"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator test_op_conversion_res const "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator test_op_conversion_res const v"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator test_op_conversion_res const vo"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator test_op_conversion_res const vol"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator test_op_conversion_res const vola"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator test_op_conversion_res const volat"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator test_op_conversion_res const volati"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator test_op_conversion_res const volatil"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator test_op_conversion_res const volatile * *
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator test_op_conversion_res const volatile"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator test_op_conversion_res const volatile*"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator test_op_conversion_res const volatile**"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator test_op_conversion_res const volatile**
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator test_op_conversion_res const"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator test_op_conversion_res"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b -function test_op_conversion::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion:"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::o"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::op"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::ope"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::oper"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::opera"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operat"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operato"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator t"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator te"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator tes"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator test"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator test_"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator test_o"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator test_op"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator test_op_"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator test_op_c"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator test_op_co"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator test_op_con"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator test_op_conv"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator test_op_conve"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator test_op_conver"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator test_op_convers"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator test_op_conversi"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator test_op_conversio"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator test_op_conversion"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator test_op_conversion_"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator test_op_conversion_r"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator test_op_conversion_re"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator test_op_conversion_res "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator test_op_conversion_res c"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator test_op_conversion_res co"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator test_op_conversion_res con"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator test_op_conversion_res cons"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator test_op_conversion_res const "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator test_op_conversion_res const v"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator test_op_conversion_res const vo"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator test_op_conversion_res const vol"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator test_op_conversion_res const vola"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator test_op_conversion_res const volat"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator test_op_conversion_res const volati"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator test_op_conversion_res const volatil"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator test_op_conversion_res const volatile * *
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator test_op_conversion_res const volatile"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator test_op_conversion_res const volatile*"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator test_op_conversion_res const volatile**"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator test_op_conversion_res const volatile**
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator test_op_conversion_res const"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator test_op_conversion_res"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: tab complete "b test_op_conversion::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: cmd complete "b -function test_op_delete::operator "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: cmd complete "b -function test_op_delete::operator d"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: cmd complete "b -function test_op_delete::operator de"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: cmd complete "b -function test_op_delete::operator del"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: cmd complete "b -function test_op_delete::operator dele"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: cmd complete "b -function test_op_delete::operator delet"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: cmd complete "b -function test_op_delete::operator delete
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: cmd complete "b -function test_op_delete::operator delete "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: cmd complete "b -function test_op_delete::operator delete"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: cmd complete "b -function test_op_delete::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: cmd complete "b test_op_delete::operator "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: cmd complete "b test_op_delete::operator d"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: cmd complete "b test_op_delete::operator de"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: cmd complete "b test_op_delete::operator del"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: cmd complete "b test_op_delete::operator dele"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: cmd complete "b test_op_delete::operator delet"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: cmd complete "b test_op_delete::operator delete
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: cmd complete "b test_op_delete::operator delete "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: cmd complete "b test_op_delete::operator delete"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: cmd complete "b test_op_delete::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: compare "b -function test_op_delete::operator delete
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: compare "b -function test_op_delete::operator delete" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: compare "b test_op_delete::operator delete
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: compare "b test_op_delete::operator delete" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: tab complete "b -function test_op_delete::operator "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: tab complete "b -function test_op_delete::operator d"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: tab complete "b -function test_op_delete::operator de"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: tab complete "b -function test_op_delete::operator del"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: tab complete "b -function test_op_delete::operator dele"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: tab complete "b -function test_op_delete::operator delet"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: tab complete "b -function test_op_delete::operator delete
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: tab complete "b -function test_op_delete::operator delete "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: tab complete "b -function test_op_delete::operator delete"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: tab complete "b -function test_op_delete::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: tab complete "b test_op_delete::operator "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: tab complete "b test_op_delete::operator d"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: tab complete "b test_op_delete::operator de"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: tab complete "b test_op_delete::operator del"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: tab complete "b test_op_delete::operator dele"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: tab complete "b test_op_delete::operator delet"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: tab complete "b test_op_delete::operator delete
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: tab complete "b test_op_delete::operator delete "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: tab complete "b test_op_delete::operator delete"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete: tab complete "b test_op_delete::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: cmd complete "b -function test_op_delete_array::operator "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: cmd complete "b -function test_op_delete_array::operator d"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: cmd complete "b -function test_op_delete_array::operator de"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: cmd complete "b -function test_op_delete_array::operator del"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: cmd complete "b -function test_op_delete_array::operator dele"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: cmd complete "b -function test_op_delete_array::operator delet"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: cmd complete "b -function test_op_delete_array::operator delete "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: cmd complete "b -function test_op_delete_array::operator delete []
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: cmd complete "b -function test_op_delete_array::operator delete"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: cmd complete "b -function test_op_delete_array::operator delete["
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: cmd complete "b -function test_op_delete_array::operator delete[]"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: cmd complete "b -function test_op_delete_array::operator delete[]
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: cmd complete "b -function test_op_delete_array::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: cmd complete "b test_op_delete_array::operator "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: cmd complete "b test_op_delete_array::operator d"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: cmd complete "b test_op_delete_array::operator de"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: cmd complete "b test_op_delete_array::operator del"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: cmd complete "b test_op_delete_array::operator dele"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: cmd complete "b test_op_delete_array::operator delet"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: cmd complete "b test_op_delete_array::operator delete "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: cmd complete "b test_op_delete_array::operator delete []
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: cmd complete "b test_op_delete_array::operator delete"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: cmd complete "b test_op_delete_array::operator delete["
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: cmd complete "b test_op_delete_array::operator delete[]"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: cmd complete "b test_op_delete_array::operator delete[]
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: cmd complete "b test_op_delete_array::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: compare "b -function test_op_delete_array::operator delete []
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: compare "b -function test_op_delete_array::operator delete[]" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: compare "b -function test_op_delete_array::operator delete[]
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: compare "b test_op_delete_array::operator delete []
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: compare "b test_op_delete_array::operator delete[]" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: compare "b test_op_delete_array::operator delete[]
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: tab complete "b -function test_op_delete_array::operator "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: tab complete "b -function test_op_delete_array::operator d"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: tab complete "b -function test_op_delete_array::operator de"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: tab complete "b -function test_op_delete_array::operator del"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: tab complete "b -function test_op_delete_array::operator dele"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: tab complete "b -function test_op_delete_array::operator delet"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: tab complete "b -function test_op_delete_array::operator delete "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: tab complete "b -function test_op_delete_array::operator delete []
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: tab complete "b -function test_op_delete_array::operator delete"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: tab complete "b -function test_op_delete_array::operator delete["
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: tab complete "b -function test_op_delete_array::operator delete[]"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: tab complete "b -function test_op_delete_array::operator delete[]
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: tab complete "b -function test_op_delete_array::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: tab complete "b test_op_delete_array::operator "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: tab complete "b test_op_delete_array::operator d"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: tab complete "b test_op_delete_array::operator de"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: tab complete "b test_op_delete_array::operator del"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: tab complete "b test_op_delete_array::operator dele"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: tab complete "b test_op_delete_array::operator delet"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: tab complete "b test_op_delete_array::operator delete "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: tab complete "b test_op_delete_array::operator delete []
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: tab complete "b test_op_delete_array::operator delete"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: tab complete "b test_op_delete_array::operator delete["
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: tab complete "b test_op_delete_array::operator delete[]"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: tab complete "b test_op_delete_array::operator delete[]
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: tab complete "b test_op_delete_array::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new: cmd complete "b -function test_op_new::operator "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new: cmd complete "b -function test_op_new::operator n"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new: cmd complete "b -function test_op_new::operator ne"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new: cmd complete "b -function test_op_new::operator new
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new: cmd complete "b -function test_op_new::operator new "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new: cmd complete "b -function test_op_new::operator new"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new: cmd complete "b -function test_op_new::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new: cmd complete "b test_op_new::operator "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new: cmd complete "b test_op_new::operator n"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new: cmd complete "b test_op_new::operator ne"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new: cmd complete "b test_op_new::operator new
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new: cmd complete "b test_op_new::operator new "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new: cmd complete "b test_op_new::operator new"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new: cmd complete "b test_op_new::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new: compare "b -function test_op_new::operator new
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new: compare "b -function test_op_new::operator new" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new: compare "b test_op_new::operator new
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new: compare "b test_op_new::operator new" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new: get size_t underlying type
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new: tab complete "b -function test_op_new::operator "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new: tab complete "b -function test_op_new::operator n"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new: tab complete "b -function test_op_new::operator ne"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new: tab complete "b -function test_op_new::operator new
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new: tab complete "b -function test_op_new::operator new "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new: tab complete "b -function test_op_new::operator new"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new: tab complete "b -function test_op_new::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new: tab complete "b test_op_new::operator "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new: tab complete "b test_op_new::operator n"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new: tab complete "b test_op_new::operator ne"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new: tab complete "b test_op_new::operator new
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new: tab complete "b test_op_new::operator new "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new: tab complete "b test_op_new::operator new"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new: tab complete "b test_op_new::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: cmd complete "b -function test_op_new_array::operator "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: cmd complete "b -function test_op_new_array::operator n"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: cmd complete "b -function test_op_new_array::operator ne"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: cmd complete "b -function test_op_new_array::operator new "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: cmd complete "b -function test_op_new_array::operator new []
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: cmd complete "b -function test_op_new_array::operator new"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: cmd complete "b -function test_op_new_array::operator new["
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: cmd complete "b -function test_op_new_array::operator new[]"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: cmd complete "b -function test_op_new_array::operator new[]
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: cmd complete "b -function test_op_new_array::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: cmd complete "b test_op_new_array::operator "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: cmd complete "b test_op_new_array::operator n"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: cmd complete "b test_op_new_array::operator ne"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: cmd complete "b test_op_new_array::operator new "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: cmd complete "b test_op_new_array::operator new []
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: cmd complete "b test_op_new_array::operator new"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: cmd complete "b test_op_new_array::operator new["
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: cmd complete "b test_op_new_array::operator new[]"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: cmd complete "b test_op_new_array::operator new[]
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: cmd complete "b test_op_new_array::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: compare "b -function test_op_new_array::operator new []
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: compare "b -function test_op_new_array::operator new[]
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: compare "b -function test_op_new_array::operator new[]" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: compare "b test_op_new_array::operator new []
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: compare "b test_op_new_array::operator new[]
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: compare "b test_op_new_array::operator new[]" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: get size_t underlying type
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: tab complete "b -function test_op_new_array::operator "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: tab complete "b -function test_op_new_array::operator n"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: tab complete "b -function test_op_new_array::operator ne"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: tab complete "b -function test_op_new_array::operator new "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: tab complete "b -function test_op_new_array::operator new []
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: tab complete "b -function test_op_new_array::operator new"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: tab complete "b -function test_op_new_array::operator new["
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: tab complete "b -function test_op_new_array::operator new[]"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: tab complete "b -function test_op_new_array::operator new[]
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: tab complete "b -function test_op_new_array::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: tab complete "b test_op_new_array::operator "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: tab complete "b test_op_new_array::operator n"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: tab complete "b test_op_new_array::operator ne"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: tab complete "b test_op_new_array::operator new "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: tab complete "b test_op_new_array::operator new []
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: tab complete "b test_op_new_array::operator new"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: tab complete "b test_op_new_array::operator new["
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: tab complete "b test_op_new_array::operator new[]"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: tab complete "b test_op_new_array::operator new[]
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: tab complete "b test_op_new_array::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: cmd complete "b -function test_op_array::operator [ ]
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: cmd complete "b -function test_op_array::operator[]"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: cmd complete "b -function test_op_array::operator[]<int>
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: cmd complete "b -function void test_op_array::operator[]<int>
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: cmd complete "b test_op_array::operator [ ]
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: cmd complete "b test_op_array::operator[]"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: cmd complete "b test_op_array::operator[]<int>
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: cmd complete "b void test_op_array::operator[]<int>
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: compare "b -function test_op_array::operator [ ]
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: compare "b -function test_op_array::operator[]" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: compare "b -function test_op_array::operator[]<int>" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: compare "b -function test_op_array::operator[]<int>
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: compare "b -function void test_op_array::operator[]<int>
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: compare "b test_op_array::operator [ ]
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: compare "b test_op_array::operator[]" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: compare "b test_op_array::operator[]<int>" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: compare "b test_op_array::operator[]<int>
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: compare "b void test_op_array::operator[]<int>
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: tab complete "b -function test_op_array::operator [ ]
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: tab complete "b -function test_op_array::operator[]"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: tab complete "b -function test_op_array::operator[]<int>
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: tab complete "b -function void test_op_array::operator[]<int>
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: tab complete "b test_op_array::operator [ ]
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: tab complete "b test_op_array::operator[]"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: tab complete "b test_op_array::operator[]<int>
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: tab complete "b void test_op_array::operator[]<int>
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: cmd complete "b -function test_unique_op_array:"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: cmd complete "b -function test_unique_op_array::"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: cmd complete "b -function test_unique_op_array::o"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: cmd complete "b -function test_unique_op_array::op"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: cmd complete "b -function test_unique_op_array::ope"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: cmd complete "b -function test_unique_op_array::oper"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: cmd complete "b -function test_unique_op_array::opera"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: cmd complete "b -function test_unique_op_array::operat"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: cmd complete "b -function test_unique_op_array::operato"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: cmd complete "b -function test_unique_op_array::operator [ ]"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: cmd complete "b -function test_unique_op_array::operator ["
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: cmd complete "b -function test_unique_op_array::operator []"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: cmd complete "b -function test_unique_op_array::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: cmd complete "b -function test_unique_op_array::operator["
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: cmd complete "b -function test_unique_op_array::operator[]"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: cmd complete "b -function test_unique_op_array::operator[]
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: cmd complete "b test_unique_op_array:"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: cmd complete "b test_unique_op_array::"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: cmd complete "b test_unique_op_array::o"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: cmd complete "b test_unique_op_array::op"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: cmd complete "b test_unique_op_array::ope"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: cmd complete "b test_unique_op_array::oper"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: cmd complete "b test_unique_op_array::opera"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: cmd complete "b test_unique_op_array::operat"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: cmd complete "b test_unique_op_array::operato"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: cmd complete "b test_unique_op_array::operator [ ]
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: cmd complete "b test_unique_op_array::operator [ ]"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: cmd complete "b test_unique_op_array::operator ["
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: cmd complete "b test_unique_op_array::operator []"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: cmd complete "b test_unique_op_array::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: cmd complete "b test_unique_op_array::operator["
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: cmd complete "b test_unique_op_array::operator[]"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: cmd complete "b test_unique_op_array::operator[]
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: compare "b -function test_unique_op_array::operator [ ]
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: compare "b -function test_unique_op_array::operator []" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: compare "b -function test_unique_op_array::operator []
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: compare "b -function test_unique_op_array::operator[]" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: compare "b -function test_unique_op_array::operator[]
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: compare "b test_unique_op_array::operator [ ]
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: compare "b test_unique_op_array::operator []" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: compare "b test_unique_op_array::operator []
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: compare "b test_unique_op_array::operator[]" completion list with bp location list: matches
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: compare "b test_unique_op_array::operator[]
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: tab complete "b -function test_unique_op_array:"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: tab complete "b -function test_unique_op_array::"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: tab complete "b -function test_unique_op_array::o"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: tab complete "b -function test_unique_op_array::op"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: tab complete "b -function test_unique_op_array::ope"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: tab complete "b -function test_unique_op_array::oper"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: tab complete "b -function test_unique_op_array::opera"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: tab complete "b -function test_unique_op_array::operat"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: tab complete "b -function test_unique_op_array::operato"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: tab complete "b -function test_unique_op_array::operator [ ]"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: tab complete "b -function test_unique_op_array::operator ["
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: tab complete "b -function test_unique_op_array::operator []"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: tab complete "b -function test_unique_op_array::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: tab complete "b -function test_unique_op_array::operator["
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: tab complete "b -function test_unique_op_array::operator[]"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: tab complete "b -function test_unique_op_array::operator[]
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: tab complete "b test_unique_op_array:"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: tab complete "b test_unique_op_array::"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: tab complete "b test_unique_op_array::o"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: tab complete "b test_unique_op_array::op"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: tab complete "b test_unique_op_array::ope"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: tab complete "b test_unique_op_array::oper"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: tab complete "b test_unique_op_array::opera"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: tab complete "b test_unique_op_array::operat"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: tab complete "b test_unique_op_array::operato"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: tab complete "b test_unique_op_array::operator [ ]
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: tab complete "b test_unique_op_array::operator [ ]"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: tab complete "b test_unique_op_array::operator ["
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: tab complete "b test_unique_op_array::operator []"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: tab complete "b test_unique_op_array::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: tab complete "b test_unique_op_array::operator["
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: tab complete "b test_unique_op_array::operator[]"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-unique: tab complete "b test_unique_op_array::operator[]
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b -function test_ops::operator!
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b -function test_ops::operator!=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b -function test_ops::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b -function test_ops::operator%
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b -function test_ops::operator%=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b -function test_ops::operator&&
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b -function test_ops::operator&
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b -function test_ops::operator&=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b -function test_ops::operator*
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b -function test_ops::operator*=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b -function test_ops::operator+
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b -function test_ops::operator++
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b -function test_ops::operator+=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b -function test_ops::operator,
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b -function test_ops::operator-
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b -function test_ops::operator--
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b -function test_ops::operator-=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b -function test_ops::operator/
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b -function test_ops::operator/=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b -function test_ops::operator<
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b -function test_ops::operator<<
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b -function test_ops::operator<<=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b -function test_ops::operator<=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b -function test_ops::operator==
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b -function test_ops::operator>
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b -function test_ops::operator>=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b -function test_ops::operator>>
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b -function test_ops::operator>>=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b -function test_ops::operator^
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b -function test_ops::operator^=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b -function test_ops::operator|
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b -function test_ops::operator|=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b -function test_ops::operator||
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b -function test_ops::operator~
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b test_ops::operator!
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b test_ops::operator!=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b test_ops::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b test_ops::operator%
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b test_ops::operator%=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b test_ops::operator&&
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b test_ops::operator&
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b test_ops::operator&=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b test_ops::operator*
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b test_ops::operator*=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b test_ops::operator+
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b test_ops::operator++
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b test_ops::operator+=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b test_ops::operator,
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b test_ops::operator-
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b test_ops::operator--
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b test_ops::operator-=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b test_ops::operator/
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b test_ops::operator/=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b test_ops::operator<
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b test_ops::operator<<
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b test_ops::operator<<=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b test_ops::operator<=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b test_ops::operator==
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b test_ops::operator>
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b test_ops::operator>=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b test_ops::operator>>
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b test_ops::operator>>=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b test_ops::operator^
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b test_ops::operator^=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b test_ops::operator|
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b test_ops::operator|=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b test_ops::operator||
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: cmd complete "b test_ops::operator~
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b -function test_ops::operator!
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b -function test_ops::operator!=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b -function test_ops::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b -function test_ops::operator%
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b -function test_ops::operator%=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b -function test_ops::operator&&
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b -function test_ops::operator&
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b -function test_ops::operator&=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b -function test_ops::operator*
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b -function test_ops::operator*=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b -function test_ops::operator+
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b -function test_ops::operator++
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b -function test_ops::operator+=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b -function test_ops::operator,
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b -function test_ops::operator-
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b -function test_ops::operator--
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b -function test_ops::operator-=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b -function test_ops::operator/
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b -function test_ops::operator/=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b -function test_ops::operator<
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b -function test_ops::operator<<
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b -function test_ops::operator<<=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b -function test_ops::operator<=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b -function test_ops::operator==
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b -function test_ops::operator>
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b -function test_ops::operator>=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b -function test_ops::operator>>
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b -function test_ops::operator>>=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b -function test_ops::operator^
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b -function test_ops::operator^=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b -function test_ops::operator|
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b -function test_ops::operator|=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b -function test_ops::operator||
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b -function test_ops::operator~
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b test_ops::operator!
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b test_ops::operator!=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b test_ops::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b test_ops::operator%
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b test_ops::operator%=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b test_ops::operator&&
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b test_ops::operator&
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b test_ops::operator&=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b test_ops::operator*
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b test_ops::operator*=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b test_ops::operator+
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b test_ops::operator++
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b test_ops::operator+=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b test_ops::operator,
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b test_ops::operator-
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b test_ops::operator--
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b test_ops::operator-=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b test_ops::operator/
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b test_ops::operator/=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b test_ops::operator<
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b test_ops::operator<<
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b test_ops::operator<<=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b test_ops::operator<=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b test_ops::operator==
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b test_ops::operator>
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b test_ops::operator>=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b test_ops::operator>>
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b test_ops::operator>>=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b test_ops::operator^
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b test_ops::operator^=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b test_ops::operator|
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b test_ops::operator|=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b test_ops::operator||
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b test_ops::operator~
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_BIT_AND::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_BIT_AND::operator&"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_BIT_AND::operator&
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_BIT_AND_A::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_BIT_AND_A::operator&"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_BIT_AND_A::operator&="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_BIT_AND_A::operator&=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_BIT_O::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_BIT_O::operator|"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_BIT_O::operator|
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_COMMA::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_COMMA::operator,"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_COMMA::operator,
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_DIV::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_DIV::operator/"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_DIV::operator/
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_DIV_A::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_DIV_A::operator/"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_DIV_A::operator/="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_DIV_A::operator/=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_EQ::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_EQ::operator="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_EQ::operator=="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_EQ::operator==
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_GT::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_GT::operator>"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_GT::operator>
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_GTE::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_GTE::operator>"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_GTE::operator>="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_GTE::operator>=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_LAND::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_LAND::operator&"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_LAND::operator&&"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_LAND::operator&&
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_LOR::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_LOR::operator|"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_LOR::operator||"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_LOR::operator||
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_LT::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_LT::operator<"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_LT::operator<
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_LTE::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_LTE::operator<"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_LTE::operator<="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_LTE::operator<=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_MINUS::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_MINUS::operator-"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_MINUS::operator-
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_MINUS_A::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_MINUS_A::operator-"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_MINUS_A::operator-="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_MINUS_A::operator-=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_MOD::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_MOD::operator%"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_MOD::operator%
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_MOD_A::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_MOD_A::operator%"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_MOD_A::operator%="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_MOD_A::operator%=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_MUL::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_MUL::operator*"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_MUL::operator*
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_MUL_A::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_MUL_A::operator*"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_MUL_A::operator*="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_MUL_A::operator*=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_NEG::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_NEG::operator~"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_NEG::operator~
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_NEQ::operator!"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_NEQ::operator!="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_NEQ::operator!=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_NEQ::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_NOT::operator!"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_NOT::operator!
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_NOT::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_OE::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_OE::operator|"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_OE::operator|="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_OE::operator|=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_PLUS::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_PLUS::operator+"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_PLUS::operator+
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_PLUS_A::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_PLUS_A::operator+"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_PLUS_A::operator+="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_PLUS_A::operator+=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_POST_DEC::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_POST_DEC::operator-"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_POST_DEC::operator--"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_POST_DEC::operator--
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_POST_INC::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_POST_INC::operator+"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_POST_INC::operator++"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_POST_INC::operator++
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_PRE_DEC::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_PRE_DEC::operator-"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_PRE_DEC::operator--"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_PRE_DEC::operator--
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_PRE_INC::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_PRE_INC::operator+"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_PRE_INC::operator++"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_PRE_INC::operator++
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_SL::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_SL::operator<"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_SL::operator<<"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_SL::operator<<
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_SL_A::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_SL_A::operator<"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_SL_A::operator<<"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_SL_A::operator<<="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_SL_A::operator<<=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_SR::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_SR::operator>"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_SR::operator>>"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_SR::operator>>
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_SR_A::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_SR_A::operator>"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_SR_A::operator>>"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_SR_A::operator>>="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_SR_A::operator>>=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_XOR::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_XOR::operator^"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_XOR::operator^
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_XOR_A::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_XOR_A::operator^"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_XOR_A::operator^="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b -function test_op_XOR_A::operator^=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_BIT_AND::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_BIT_AND::operator&"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_BIT_AND::operator&
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_BIT_AND_A::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_BIT_AND_A::operator&"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_BIT_AND_A::operator&="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_BIT_AND_A::operator&=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_BIT_O::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_BIT_O::operator|"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_BIT_O::operator|
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_COMMA::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_COMMA::operator,"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_COMMA::operator,
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_DIV::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_DIV::operator/"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_DIV::operator/
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_DIV_A::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_DIV_A::operator/"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_DIV_A::operator/="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_DIV_A::operator/=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_EQ::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_EQ::operator="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_EQ::operator=="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_EQ::operator==
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_GT::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_GT::operator>"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_GT::operator>
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_GTE::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_GTE::operator>"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_GTE::operator>="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_GTE::operator>=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_LAND::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_LAND::operator&"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_LAND::operator&&"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_LAND::operator&&
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_LOR::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_LOR::operator|"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_LOR::operator||"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_LOR::operator||
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_LT::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_LT::operator<"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_LT::operator<
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_LTE::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_LTE::operator<"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_LTE::operator<="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_LTE::operator<=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_MINUS::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_MINUS::operator-"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_MINUS::operator-
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_MINUS_A::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_MINUS_A::operator-"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_MINUS_A::operator-="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_MINUS_A::operator-=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_MOD::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_MOD::operator%"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_MOD::operator%
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_MOD_A::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_MOD_A::operator%"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_MOD_A::operator%="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_MOD_A::operator%=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_MUL::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_MUL::operator*"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_MUL::operator*
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_MUL_A::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_MUL_A::operator*"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_MUL_A::operator*="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_MUL_A::operator*=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_NEG::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_NEG::operator~"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_NEG::operator~
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_NEQ::operator!"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_NEQ::operator!="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_NEQ::operator!=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_NEQ::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_NOT::operator!"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_NOT::operator!
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_NOT::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_OE::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_OE::operator|"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_OE::operator|="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_OE::operator|=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_PLUS::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_PLUS::operator+"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_PLUS::operator+
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_PLUS_A::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_PLUS_A::operator+"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_PLUS_A::operator+="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_PLUS_A::operator+=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_POST_DEC::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_POST_DEC::operator-"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_POST_DEC::operator--"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_POST_DEC::operator--
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_POST_INC::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_POST_INC::operator+"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_POST_INC::operator++"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_POST_INC::operator++
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_PRE_DEC::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_PRE_DEC::operator-"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_PRE_DEC::operator--"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_PRE_DEC::operator--
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_PRE_INC::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_PRE_INC::operator+"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_PRE_INC::operator++"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_PRE_INC::operator++
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_SL::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_SL::operator<"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_SL::operator<<"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_SL::operator<<
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_SL_A::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_SL_A::operator<"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_SL_A::operator<<"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_SL_A::operator<<="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_SL_A::operator<<=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_SR::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_SR::operator>"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_SR::operator>>"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_SR::operator>>
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_SR_A::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_SR_A::operator>"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_SR_A::operator>>"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_SR_A::operator>>="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_SR_A::operator>>=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_XOR::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_XOR::operator^"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_XOR::operator^
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_XOR_A::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_XOR_A::operator^"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_XOR_A::operator^="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: cmd complete "b test_op_XOR_A::operator^=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_BIT_AND::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_BIT_AND::operator&"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_BIT_AND::operator&
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_BIT_AND_A::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_BIT_AND_A::operator&"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_BIT_AND_A::operator&="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_BIT_AND_A::operator&=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_BIT_O::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_BIT_O::operator|"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_BIT_O::operator|
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_COMMA::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_COMMA::operator,"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_COMMA::operator,
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_DIV::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_DIV::operator/"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_DIV::operator/
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_DIV_A::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_DIV_A::operator/"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_DIV_A::operator/="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_DIV_A::operator/=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_EQ::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_EQ::operator="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_EQ::operator=="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_EQ::operator==
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_GT::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_GT::operator>"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_GT::operator>
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_GTE::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_GTE::operator>"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_GTE::operator>="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_GTE::operator>=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_LAND::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_LAND::operator&"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_LAND::operator&&"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_LAND::operator&&
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_LOR::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_LOR::operator|"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_LOR::operator||"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_LOR::operator||
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_LT::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_LT::operator<"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_LT::operator<
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_LTE::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_LTE::operator<"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_LTE::operator<="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_LTE::operator<=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_MINUS::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_MINUS::operator-"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_MINUS::operator-
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_MINUS_A::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_MINUS_A::operator-"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_MINUS_A::operator-="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_MINUS_A::operator-=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_MOD::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_MOD::operator%"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_MOD::operator%
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_MOD_A::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_MOD_A::operator%"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_MOD_A::operator%="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_MOD_A::operator%=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_MUL::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_MUL::operator*"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_MUL::operator*
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_MUL_A::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_MUL_A::operator*"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_MUL_A::operator*="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_MUL_A::operator*=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_NEG::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_NEG::operator~"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_NEG::operator~
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_NEQ::operator!"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_NEQ::operator!="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_NEQ::operator!=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_NEQ::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_NOT::operator!"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_NOT::operator!
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_NOT::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_OE::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_OE::operator|"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_OE::operator|="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_OE::operator|=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_PLUS::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_PLUS::operator+"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_PLUS::operator+
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_PLUS_A::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_PLUS_A::operator+"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_PLUS_A::operator+="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_PLUS_A::operator+=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_POST_DEC::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_POST_DEC::operator-"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_POST_DEC::operator--"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_POST_DEC::operator--
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_POST_INC::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_POST_INC::operator+"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_POST_INC::operator++"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_POST_INC::operator++
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_PRE_DEC::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_PRE_DEC::operator-"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_PRE_DEC::operator--"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_PRE_DEC::operator--
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_PRE_INC::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_PRE_INC::operator+"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_PRE_INC::operator++"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_PRE_INC::operator++
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_SL::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_SL::operator<"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_SL::operator<<"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_SL::operator<<
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_SL_A::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_SL_A::operator<"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_SL_A::operator<<"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_SL_A::operator<<="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_SL_A::operator<<=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_SR::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_SR::operator>"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_SR::operator>>"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_SR::operator>>
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_SR_A::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_SR_A::operator>"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_SR_A::operator>>"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_SR_A::operator>>="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_SR_A::operator>>=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_XOR::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_XOR::operator^"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_XOR::operator^
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_XOR_A::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_XOR_A::operator^"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_XOR_A::operator^="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b -function test_op_XOR_A::operator^=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_BIT_AND::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_BIT_AND::operator&"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_BIT_AND::operator&
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_BIT_AND_A::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_BIT_AND_A::operator&"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_BIT_AND_A::operator&="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_BIT_AND_A::operator&=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_BIT_O::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_BIT_O::operator|"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_BIT_O::operator|
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_COMMA::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_COMMA::operator,"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_COMMA::operator,
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_DIV::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_DIV::operator/"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_DIV::operator/
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_DIV_A::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_DIV_A::operator/"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_DIV_A::operator/="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_DIV_A::operator/=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_EQ::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_EQ::operator="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_EQ::operator=="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_EQ::operator==
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_GT::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_GT::operator>"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_GT::operator>
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_GTE::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_GTE::operator>"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_GTE::operator>="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_GTE::operator>=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_LAND::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_LAND::operator&"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_LAND::operator&&"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_LAND::operator&&
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_LOR::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_LOR::operator|"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_LOR::operator||"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_LOR::operator||
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_LT::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_LT::operator<"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_LT::operator<
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_LTE::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_LTE::operator<"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_LTE::operator<="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_LTE::operator<=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_MINUS::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_MINUS::operator-"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_MINUS::operator-
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_MINUS_A::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_MINUS_A::operator-"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_MINUS_A::operator-="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_MINUS_A::operator-=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_MOD::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_MOD::operator%"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_MOD::operator%
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_MOD_A::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_MOD_A::operator%"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_MOD_A::operator%="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_MOD_A::operator%=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_MUL::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_MUL::operator*"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_MUL::operator*
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_MUL_A::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_MUL_A::operator*"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_MUL_A::operator*="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_MUL_A::operator*=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_NEG::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_NEG::operator~"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_NEG::operator~
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_NEQ::operator!"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_NEQ::operator!="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_NEQ::operator!=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_NEQ::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_NOT::operator!"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_NOT::operator!
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_NOT::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_OE::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_OE::operator|"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_OE::operator|="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_OE::operator|=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_PLUS::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_PLUS::operator+"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_PLUS::operator+
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_PLUS_A::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_PLUS_A::operator+"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_PLUS_A::operator+="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_PLUS_A::operator+=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_POST_DEC::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_POST_DEC::operator-"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_POST_DEC::operator--"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_POST_DEC::operator--
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_POST_INC::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_POST_INC::operator+"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_POST_INC::operator++"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_POST_INC::operator++
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_PRE_DEC::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_PRE_DEC::operator-"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_PRE_DEC::operator--"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_PRE_DEC::operator--
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_PRE_INC::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_PRE_INC::operator+"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_PRE_INC::operator++"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_PRE_INC::operator++
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_SL::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_SL::operator<"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_SL::operator<<"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_SL::operator<<
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_SL_A::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_SL_A::operator<"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_SL_A::operator<<"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_SL_A::operator<<="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_SL_A::operator<<=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_SR::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_SR::operator>"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_SR::operator>>"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_SR::operator>>
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_SR_A::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_SR_A::operator>"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_SR_A::operator>>"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_SR_A::operator>>="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_SR_A::operator>>=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_XOR::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_XOR::operator^"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_XOR::operator^
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_XOR_A::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_XOR_A::operator^"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_XOR_A::operator^="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: tab complete "b test_op_XOR_A::operator^=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_BIT_AND::operator & "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_BIT_AND::operator &
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_BIT_AND::operator &"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_BIT_AND_A::operator &"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_BIT_AND_A::operator &= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_BIT_AND_A::operator &=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_BIT_AND_A::operator &="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_BIT_O::operator | "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_BIT_O::operator |
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_BIT_O::operator |"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_COMMA::operator , "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_COMMA::operator ,
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_COMMA::operator ,"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_DIV::operator / "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_DIV::operator /
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_DIV::operator /"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_DIV_A::operator /"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_DIV_A::operator /= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_DIV_A::operator /=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_DIV_A::operator /="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_EQ::operator ="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_EQ::operator == "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_EQ::operator ==
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_EQ::operator =="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_GT::operator > "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_GT::operator >
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_GT::operator >"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_GTE::operator >"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_GTE::operator >= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_GTE::operator >=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_GTE::operator >="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_LAND::operator &"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_LAND::operator && "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_LAND::operator &&
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_LAND::operator &&"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_LOR::operator |"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_LOR::operator || "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_LOR::operator ||
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_LOR::operator ||"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_LT::operator < "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_LT::operator <
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_LT::operator <"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_LTE::operator <"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_LTE::operator <= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_LTE::operator <=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_LTE::operator <="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_MINUS::operator - "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_MINUS::operator -
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_MINUS::operator -"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_MINUS_A::operator -"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_MINUS_A::operator -= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_MINUS_A::operator -=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_MINUS_A::operator -="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_MOD::operator % "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_MOD::operator %
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_MOD::operator %"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_MOD_A::operator %"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_MOD_A::operator %= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_MOD_A::operator %=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_MOD_A::operator %="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_MUL::operator * "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_MUL::operator *
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_MUL::operator *"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_MUL_A::operator *"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_MUL_A::operator *= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_MUL_A::operator *=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_MUL_A::operator *="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_NEG::operator ~ "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_NEG::operator ~
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_NEG::operator ~"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_NEQ::operator !"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_NEQ::operator != "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_NEQ::operator !=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_NEQ::operator !="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_NOT::operator ! "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_NOT::operator !
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_NOT::operator !"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_OE::operator |"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_OE::operator |= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_OE::operator |=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_OE::operator |="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_PLUS::operator + "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_PLUS::operator +
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_PLUS::operator +"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_PLUS_A::operator +"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_PLUS_A::operator += "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_PLUS_A::operator +=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_PLUS_A::operator +="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_POST_DEC::operator -"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_POST_DEC::operator -- "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_POST_DEC::operator --
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_POST_DEC::operator --"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_POST_INC::operator +"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_POST_INC::operator ++ "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_POST_INC::operator ++
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_POST_INC::operator ++"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_PRE_DEC::operator -"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_PRE_DEC::operator -- "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_PRE_DEC::operator --
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_PRE_DEC::operator --"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_PRE_INC::operator +"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_PRE_INC::operator ++ "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_PRE_INC::operator ++
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_PRE_INC::operator ++"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_SL::operator <"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_SL::operator << "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_SL::operator <<
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_SL::operator <<"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_SL_A::operator <"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_SL_A::operator <<"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_SL_A::operator <<= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_SL_A::operator <<=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_SL_A::operator <<="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_SR::operator >"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_SR::operator >> "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_SR::operator >>
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_SR::operator >>"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_SR_A::operator >"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_SR_A::operator >>"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_SR_A::operator >>= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_SR_A::operator >>=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_SR_A::operator >>="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_XOR::operator ^ "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_XOR::operator ^
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_XOR::operator ^"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_XOR_A::operator ^"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_XOR_A::operator ^= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_XOR_A::operator ^=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b -function test_op_XOR_A::operator ^="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_BIT_AND::operator & "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_BIT_AND::operator &
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_BIT_AND::operator &"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_BIT_AND_A::operator &"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_BIT_AND_A::operator &= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_BIT_AND_A::operator &=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_BIT_AND_A::operator &="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_BIT_O::operator | "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_BIT_O::operator |
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_BIT_O::operator |"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_COMMA::operator , "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_COMMA::operator ,
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_COMMA::operator ,"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_DIV::operator / "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_DIV::operator /
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_DIV::operator /"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_DIV_A::operator /"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_DIV_A::operator /= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_DIV_A::operator /=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_DIV_A::operator /="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_EQ::operator ="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_EQ::operator == "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_EQ::operator ==
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_EQ::operator =="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_GT::operator > "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_GT::operator >
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_GT::operator >"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_GTE::operator >"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_GTE::operator >= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_GTE::operator >=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_GTE::operator >="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_LAND::operator &"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_LAND::operator && "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_LAND::operator &&
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_LAND::operator &&"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_LOR::operator |"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_LOR::operator || "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_LOR::operator ||
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_LOR::operator ||"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_LT::operator < "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_LT::operator <
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_LT::operator <"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_LTE::operator <"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_LTE::operator <= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_LTE::operator <=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_LTE::operator <="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_MINUS::operator - "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_MINUS::operator -
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_MINUS::operator -"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_MINUS_A::operator -"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_MINUS_A::operator -= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_MINUS_A::operator -=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_MINUS_A::operator -="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_MOD::operator % "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_MOD::operator %
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_MOD::operator %"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_MOD_A::operator %"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_MOD_A::operator %= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_MOD_A::operator %=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_MOD_A::operator %="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_MUL::operator * "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_MUL::operator *
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_MUL::operator *"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_MUL_A::operator *"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_MUL_A::operator *= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_MUL_A::operator *=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_MUL_A::operator *="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_NEG::operator ~ "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_NEG::operator ~
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_NEG::operator ~"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_NEQ::operator !"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_NEQ::operator != "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_NEQ::operator !=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_NEQ::operator !="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_NOT::operator ! "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_NOT::operator !
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_NOT::operator !"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_OE::operator |"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_OE::operator |= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_OE::operator |=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_OE::operator |="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_PLUS::operator + "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_PLUS::operator +
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_PLUS::operator +"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_PLUS_A::operator +"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_PLUS_A::operator += "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_PLUS_A::operator +=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_PLUS_A::operator +="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_POST_DEC::operator -"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_POST_DEC::operator -- "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_POST_DEC::operator --
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_POST_DEC::operator --"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_POST_INC::operator +"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_POST_INC::operator ++ "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_POST_INC::operator ++
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_POST_INC::operator ++"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_PRE_DEC::operator -"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_PRE_DEC::operator -- "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_PRE_DEC::operator --
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_PRE_DEC::operator --"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_PRE_INC::operator +"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_PRE_INC::operator ++ "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_PRE_INC::operator ++
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_PRE_INC::operator ++"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_SL::operator <"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_SL::operator << "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_SL::operator <<
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_SL::operator <<"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_SL_A::operator <"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_SL_A::operator <<"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_SL_A::operator <<= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_SL_A::operator <<=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_SL_A::operator <<="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_SR::operator >"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_SR::operator >> "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_SR::operator >>
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_SR::operator >>"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_SR_A::operator >"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_SR_A::operator >>"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_SR_A::operator >>= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_SR_A::operator >>=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_SR_A::operator >>="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_XOR::operator ^ "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_XOR::operator ^
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_XOR::operator ^"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_XOR_A::operator ^"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_XOR_A::operator ^= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_XOR_A::operator ^=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_XOR_A::operator ^="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_BIT_AND::operator & "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_BIT_AND::operator &
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_BIT_AND::operator &"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_BIT_AND_A::operator &"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_BIT_AND_A::operator &= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_BIT_AND_A::operator &=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_BIT_AND_A::operator &="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_BIT_O::operator | "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_BIT_O::operator |
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_BIT_O::operator |"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_COMMA::operator , "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_COMMA::operator ,
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_COMMA::operator ,"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_DIV::operator / "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_DIV::operator /
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_DIV::operator /"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_DIV_A::operator /"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_DIV_A::operator /= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_DIV_A::operator /=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_DIV_A::operator /="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_EQ::operator ="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_EQ::operator == "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_EQ::operator ==
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_EQ::operator =="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_GT::operator > "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_GT::operator >
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_GT::operator >"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_GTE::operator >"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_GTE::operator >= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_GTE::operator >=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_GTE::operator >="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_LAND::operator &"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_LAND::operator && "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_LAND::operator &&
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_LAND::operator &&"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_LOR::operator |"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_LOR::operator || "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_LOR::operator ||
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_LOR::operator ||"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_LT::operator < "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_LT::operator <
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_LT::operator <"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_LTE::operator <"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_LTE::operator <= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_LTE::operator <=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_LTE::operator <="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_MINUS::operator - "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_MINUS::operator -
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_MINUS::operator -"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_MINUS_A::operator -"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_MINUS_A::operator -= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_MINUS_A::operator -=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_MINUS_A::operator -="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_MOD::operator % "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_MOD::operator %
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_MOD::operator %"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_MOD_A::operator %"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_MOD_A::operator %= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_MOD_A::operator %=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_MOD_A::operator %="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_MUL::operator * "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_MUL::operator *
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_MUL::operator *"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_MUL_A::operator *"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_MUL_A::operator *= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_MUL_A::operator *=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_MUL_A::operator *="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_NEG::operator ~ "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_NEG::operator ~
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_NEG::operator ~"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_NEQ::operator !"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_NEQ::operator != "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_NEQ::operator !=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_NEQ::operator !="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_NOT::operator ! "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_NOT::operator !
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_NOT::operator !"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_OE::operator |"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_OE::operator |= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_OE::operator |=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_OE::operator |="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_PLUS::operator + "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_PLUS::operator +
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_PLUS::operator +"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_PLUS_A::operator +"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_PLUS_A::operator += "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_PLUS_A::operator +=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_PLUS_A::operator +="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_POST_DEC::operator -"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_POST_DEC::operator -- "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_POST_DEC::operator --
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_POST_DEC::operator --"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_POST_INC::operator +"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_POST_INC::operator ++ "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_POST_INC::operator ++
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_POST_INC::operator ++"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_PRE_DEC::operator -"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_PRE_DEC::operator -- "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_PRE_DEC::operator --
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_PRE_DEC::operator --"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_PRE_INC::operator +"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_PRE_INC::operator ++ "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_PRE_INC::operator ++
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_PRE_INC::operator ++"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_SL::operator <"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_SL::operator << "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_SL::operator <<
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_SL::operator <<"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_SL_A::operator <"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_SL_A::operator <<"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_SL_A::operator <<= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_SL_A::operator <<=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_SL_A::operator <<="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_SR::operator >"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_SR::operator >> "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_SR::operator >>
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_SR::operator >>"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_SR_A::operator >"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_SR_A::operator >>"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_SR_A::operator >>= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_SR_A::operator >>=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_SR_A::operator >>="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_XOR::operator ^ "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_XOR::operator ^
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_XOR::operator ^"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_XOR_A::operator ^"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_XOR_A::operator ^= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_XOR_A::operator ^=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b -function test_op_XOR_A::operator ^="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_BIT_AND::operator & "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_BIT_AND::operator &
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_BIT_AND::operator &"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_BIT_AND_A::operator &"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_BIT_AND_A::operator &= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_BIT_AND_A::operator &=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_BIT_AND_A::operator &="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_BIT_O::operator | "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_BIT_O::operator |
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_BIT_O::operator |"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_COMMA::operator , "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_COMMA::operator ,
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_COMMA::operator ,"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_DIV::operator / "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_DIV::operator /
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_DIV::operator /"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_DIV_A::operator /"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_DIV_A::operator /= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_DIV_A::operator /=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_DIV_A::operator /="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_EQ::operator ="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_EQ::operator == "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_EQ::operator ==
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_EQ::operator =="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_GT::operator > "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_GT::operator >
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_GT::operator >"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_GTE::operator >"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_GTE::operator >= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_GTE::operator >=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_GTE::operator >="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_LAND::operator &"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_LAND::operator && "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_LAND::operator &&
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_LAND::operator &&"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_LOR::operator |"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_LOR::operator || "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_LOR::operator ||
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_LOR::operator ||"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_LT::operator < "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_LT::operator <
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_LT::operator <"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_LTE::operator <"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_LTE::operator <= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_LTE::operator <=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_LTE::operator <="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_MINUS::operator - "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_MINUS::operator -
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_MINUS::operator -"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_MINUS_A::operator -"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_MINUS_A::operator -= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_MINUS_A::operator -=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_MINUS_A::operator -="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_MOD::operator % "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_MOD::operator %
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_MOD::operator %"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_MOD_A::operator %"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_MOD_A::operator %= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_MOD_A::operator %=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_MOD_A::operator %="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_MUL::operator * "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_MUL::operator *
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_MUL::operator *"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_MUL_A::operator *"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_MUL_A::operator *= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_MUL_A::operator *=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_MUL_A::operator *="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_NEG::operator ~ "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_NEG::operator ~
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_NEG::operator ~"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_NEQ::operator !"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_NEQ::operator != "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_NEQ::operator !=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_NEQ::operator !="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_NOT::operator ! "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_NOT::operator !
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_NOT::operator !"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_OE::operator |"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_OE::operator |= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_OE::operator |=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_OE::operator |="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_PLUS::operator + "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_PLUS::operator +
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_PLUS::operator +"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_PLUS_A::operator +"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_PLUS_A::operator += "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_PLUS_A::operator +=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_PLUS_A::operator +="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_POST_DEC::operator -"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_POST_DEC::operator -- "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_POST_DEC::operator --
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_POST_DEC::operator --"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_POST_INC::operator +"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_POST_INC::operator ++ "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_POST_INC::operator ++
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_POST_INC::operator ++"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_PRE_DEC::operator -"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_PRE_DEC::operator -- "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_PRE_DEC::operator --
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_PRE_DEC::operator --"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_PRE_INC::operator +"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_PRE_INC::operator ++ "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_PRE_INC::operator ++
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_PRE_INC::operator ++"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_SL::operator <"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_SL::operator << "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_SL::operator <<
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_SL::operator <<"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_SL_A::operator <"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_SL_A::operator <<"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_SL_A::operator <<= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_SL_A::operator <<=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_SL_A::operator <<="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_SR::operator >"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_SR::operator >> "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_SR::operator >>
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_SR::operator >>"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_SR_A::operator >"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_SR_A::operator >>"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_SR_A::operator >>= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_SR_A::operator >>=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_SR_A::operator >>="
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_XOR::operator ^ "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_XOR::operator ^
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_XOR::operator ^"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_XOR_A::operator ^"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_XOR_A::operator ^= "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_XOR_A::operator ^=
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_XOR_A::operator ^="
new FAIL: gdb.linespec/explicit.exp:
new FAIL: gdb.linespec/keywords.exp:
new FAIL: gdb.linespec/keywords.exp: can't run to main
new FAIL: gdb.linespec/linespec.exp:
PASS -> FAIL: gdb.linespec/linespec.exp: clear breakpoint using dir/file:line
PASS -> FAIL: gdb.linespec/linespec.exp: complete condition
PASS -> FAIL: gdb.linespec/linespec.exp: complete non-unique function name in two source files
PASS -> FAIL: gdb.linespec/linespec.exp: complete unique function name in disambiguated source file
PASS -> FAIL: gdb.linespec/linespec.exp: complete unique function name in two source files
PASS -> FAIL: gdb.linespec/linespec.exp: multi-location break using duplicate function name
PASS -> FAIL: gdb.linespec/linespec.exp: multi-location break using duplicate function name and label
PASS -> FAIL: gdb.linespec/linespec.exp: multi-location break using file:line
PASS -> FAIL: gdb.linespec/linespec.exp: set break in function in non-existing absolute path
PASS -> FAIL: gdb.linespec/linespec.exp: set breakpoint at all instances of NameSpace::overload
PASS -> FAIL: gdb.linespec/linespec.exp: set breakpoint at lspec.cc instance of NameSpace::overload
PASS -> FAIL: gdb.linespec/linespec.exp: set breakpoint at main in both inferiors
PASS -> FAIL: gdb.linespec/linespec.exp: set breakpoint at non-existent lspec.cc instance of NameSpace::overload
PASS -> FAIL: gdb.linespec/linespec.exp: set breakpoint at specific instance of NameSpace::overload
PASS -> FAIL: gdb.linespec/linespec.exp: set breakpoint in body.h
PASS -> FAIL: gdb.linespec/linespec.exp: set breakpoint in f1
PASS -> FAIL: gdb.linespec/linespec.exp: set breakpoint on non-existent function
PASS -> FAIL: gdb.linespec/linespec.exp: set the new inferior file for linespec tests
PASS -> FAIL: gdb.linespec/linespec.exp: single-location break using dir/file:line
new FAIL: gdb.linespec/ls-dollar.exp:
PASS -> FAIL: gdb.linespec/ls-dollar.exp: break $dollar_func
PASS -> FAIL: gdb.linespec/ls-dollar.exp: break ls-dollar.cc:$theline
PASS -> FAIL: gdb.linespec/ls-dollar.exp: list $dollar_var
PASS -> FAIL: gdb.linespec/ls-dollar.exp: list ls-dollar.cc:$theline
new FAIL: gdb.linespec/ls-errs.exp: lang=C++:
new FAIL: gdb.linespec/ls-errs.exp: lang=C++: can't run to main
new FAIL: gdb.linespec/ls-errs.exp: lang=C:
new FAIL: gdb.linespec/ls-errs.exp: lang=C: can't run to main
new FAIL: gdb.linespec/macro-relative.exp:
new FAIL: gdb.linespec/skip-two.exp:
new FAIL: gdb.linespec/thread.exp:
new FAIL: gdb.linespec/thread.exp: can't run to main
PASS -> UNRESOLVED: gdb.mi/dw2-ref-missing-frame.exp: breakpoint at func_loopfb_marker
PASS -> UNRESOLVED: gdb.mi/dw2-ref-missing-frame.exp: breakpoint at func_nofb_marker
PASS -> FAIL: gdb.mi/dw2-ref-missing-frame.exp: test func_loopfb_var
PASS -> FAIL: gdb.mi/dw2-ref-missing-frame.exp: test func_nofb_marker
PASS -> UNRESOLVED: gdb.mi/gdb2549.exp: breakpoint at main
PASS -> FAIL: gdb.mi/gdb2549.exp: register values d
PASS -> FAIL: gdb.mi/gdb2549.exp: register values f
PASS -> FAIL: gdb.mi/gdb2549.exp: register values o
PASS -> FAIL: gdb.mi/gdb2549.exp: register values t
PASS -> FAIL: gdb.mi/gdb2549.exp: register values x
PASS -> FAIL: gdb.mi/gdb669.exp: -thread-list-ids
PASS -> FAIL: gdb.mi/gdb669.exp: -thread_list_ids
PASS -> UNRESOLVED: gdb.mi/gdb669.exp: breakpoint at main
PASS -> FAIL: gdb.mi/gdb669.exp: next, try 0
PASS -> FAIL: gdb.mi/gdb669.exp: next, try 1
PASS -> FAIL: gdb.mi/gdb669.exp: next, try 2
PASS -> FAIL: gdb.mi/gdb669.exp: next, try 3
PASS -> UNRESOLVED: gdb.mi/gdb701.exp: breakpoint at main
PASS -> FAIL: gdb.mi/gdb701.exp: create fooPtr
PASS -> FAIL: gdb.mi/gdb701.exp: list children of fooPtr
PASS -> FAIL: gdb.mi/gdb701.exp: list children of fooPtr.x
PASS -> FAIL: gdb.mi/gdb701.exp: list children of fooPtr.y
PASS -> FAIL: gdb.mi/gdb701.exp: list children of fooPtr.z
PASS -> FAIL: gdb.mi/gdb701.exp: step over "foo = 0"
PASS -> UNRESOLVED: gdb.mi/gdb792.exp: breakpoint at main
PASS -> FAIL: gdb.mi/gdb792.exp: create var for class A
PASS -> FAIL: gdb.mi/gdb792.exp: create var for class C which has baseclass A
PASS -> FAIL: gdb.mi/gdb792.exp: list children of A.private
PASS -> FAIL: gdb.mi/gdb792.exp: list children of A.protected
PASS -> FAIL: gdb.mi/gdb792.exp: list children of A.protected.b
PASS -> FAIL: gdb.mi/gdb792.exp: list children of A.protected.b.private
PASS -> FAIL: gdb.mi/gdb792.exp: list children of A.protected.b.public
PASS -> FAIL: gdb.mi/gdb792.exp: list children of A.public
PASS -> FAIL: gdb.mi/gdb792.exp: list children of class A
PASS -> FAIL: gdb.mi/gdb792.exp: list children of class C
PASS -> FAIL: gdb.mi/mi-async-run.exp: expect interrupt
PASS -> UNRESOLVED: gdb.mi/mi-async-run.exp: send interrupt command
FAIL -> UNRESOLVED: gdb.mi/mi-async.exp: start: send
PASS -> FAIL: gdb.mi/mi-basics.exp: file-exec-and-symbols operation
new UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main:
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: break-insert -a operation
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: break-insert -t operation
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: breakpoint at main
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=main: breakpoint at nonexistent function
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=main: breakpoint commands: check that commands are cleared
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=main: breakpoint commands: check that commands are set
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=main: breakpoint commands: clear commands
new UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: breakpoint commands: continue
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=main: breakpoint commands: insert breakpoint at basics.c:callee2
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: breakpoint commands: insert breakpoint at basics.c:callee2, again
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=main: breakpoint commands: set commands
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: create local variable tpnum
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=main: create varobj for function call
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=main: delete temp breakpoints
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: eval tpnum after tracepoint
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: eval tpnum before tracepoint
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with ignore count at callme
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: insert explicit conditional breakpoint in callee2
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=main: insert temp breakpoint at "<fullfilename>":$line_callee4_head
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=main: insert temp breakpoint at basics.c:$line_callee3_head
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=main: insert temp breakpoint at basics.c:callee2
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: insert temp explicit breakpoint at "basics.c":25
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: insert temp explicit breakpoint at basics.c:34
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: insert temp explicit breakpoint at basics.c:callee2
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: insert temp explicit breakpoint in main
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: intermediate stop and continue, bp commands
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: intermediate stop and continue, mi running
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: list of explicit breakpoints
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=main: run to breakpoint with ignore count
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=main: test disabled creation
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: test hitting breakpoint with commands
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: update tpnum
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=separate: break-insert -t operation
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=separate: breakpoint at nonexistent function
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=separate: breakpoint commands: check that commands are cleared
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=separate: breakpoint commands: check that commands are set
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=separate: breakpoint commands: clear commands
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=separate: breakpoint commands: insert breakpoint at basics.c:callee2
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=separate: breakpoint commands: set commands
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=separate: breakpoint with garbage after location
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=separate: conditional breakpoint with garbage after location
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=separate: create varobj for function call
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=separate: delete temp breakpoints
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with ignore count at callme
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert temp breakpoint at "<fullfilename>":$line_callee4_head
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert temp breakpoint at basics.c:$line_callee3_head
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert temp breakpoint at basics.c:callee2
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=separate: run to breakpoint with ignore count
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=separate: test disabled creation
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=separate: test disabled creation: cleanup
PASS -> FAIL: gdb.mi/mi-break.exp: mi-mode=separate: update varobj for function call
PASS -> FAIL: gdb.mi/mi-breakpoint-changed.exp: test_insert_delete_modify: -break-after 5 1
PASS -> FAIL: gdb.mi/mi-breakpoint-changed.exp: test_insert_delete_modify: -break-passcount 4 1
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-changed.exp: test_insert_delete_modify: breakpoint at main
PASS -> FAIL: gdb.mi/mi-breakpoint-changed.exp: test_insert_delete_modify: catch syscall
PASS -> FAIL: gdb.mi/mi-breakpoint-changed.exp: test_insert_delete_modify: delete 5
PASS -> FAIL: gdb.mi/mi-breakpoint-changed.exp: test_insert_delete_modify: delete 6
PASS -> FAIL: gdb.mi/mi-breakpoint-changed.exp: test_insert_delete_modify: dprintf marker, "arg" "
PASS -> FAIL: gdb.mi/mi-breakpoint-changed.exp: test_insert_delete_modify: ignore 5 1
PASS -> FAIL: gdb.mi/mi-breakpoint-changed.exp: test_insert_delete_modify: passcount 1 4
PASS -> FAIL: gdb.mi/mi-breakpoint-changed.exp: test_insert_delete_modify: trace marker
PASS -> FAIL: gdb.mi/mi-breakpoint-changed.exp: test_insert_delete_modify: watch watch
PASS -> FAIL: gdb.mi/mi-breakpoint-changed.exp: test_pending_resolved: pending resolved:
PASS -> FAIL: gdb.mi/mi-breakpoint-changed.exp: test_pending_resolved: pending resolved: breakpoint on pendfunc1 resolved
PASS -> FAIL: gdb.mi/mi-breakpoint-changed.exp: test_pending_resolved: pending resolved: breakpoint on pendfunc3 pending again
PASS -> FAIL: gdb.mi/mi-breakpoint-changed.exp: test_pending_resolved: pending resolved: breakpoint on pendfunc3 resolved
PASS -> FAIL: gdb.mi/mi-breakpoint-changed.exp: test_pending_resolved: pending resolved: continue to marker 1
PASS -> FAIL: gdb.mi/mi-breakpoint-changed.exp: test_pending_resolved: pending resolved: continue to marker 2
PASS -> FAIL: gdb.mi/mi-breakpoint-changed.exp: test_pending_resolved: pending resolved: continue to pendfunc1 breakpoint
new FAIL: gdb.mi/mi-breakpoint-changed.exp: test_pending_resolved: pending resolved: continuing execution to marker
new FAIL: gdb.mi/mi-breakpoint-changed.exp: test_pending_resolved: pending resolved: continuing to exit
PASS -> FAIL: gdb.mi/mi-breakpoint-changed.exp: test_pending_resolved: pending resolved: delete breakpoint on pendfunc1
PASS -> FAIL: gdb.mi/mi-breakpoint-changed.exp: test_pending_resolved: pending resolved: insert breakpoint on marker
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-changed.exp: test_pending_resolved: pending resolved: insert breakpoint on pendfunc1
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=0: -break-disable 2.2
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=0: -break-enable 2.2
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=0: -break-info
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=0: break add
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=0: breakpoint at main
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=0: dis 2.2
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=0: en 2.2
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=0: insert breakpoint with MI command
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=1: -break-disable 2.2
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=1: -break-enable 2.2
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=1: -break-info
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=1: break add
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=1: breakpoint at main
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=1: dis 2.2
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=1: en 2.2
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=1: insert breakpoint with MI command
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=1: send -fix-multi-location-breakpoint-output
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=0: -break-disable 2.2
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=0: -break-enable 2.2
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=0: -break-info
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=0: break add
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=0: breakpoint at main
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=0: dis 2.2
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=0: en 2.2
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=0: insert breakpoint with MI command
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=1: -break-disable 2.2
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=1: -break-enable 2.2
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=1: -break-info
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=1: break add
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=1: breakpoint at main
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=1: dis 2.2
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=1: en 2.2
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=1: insert breakpoint with MI command
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=1: send -fix-multi-location-breakpoint-output
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=0: -break-disable 2.2
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=0: -break-enable 2.2
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=0: -break-info
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=0: break add
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=0: breakpoint at main
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=0: dis 2.2
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=0: en 2.2
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=0: insert breakpoint with MI command
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=1: -break-disable 2.2
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=1: -break-enable 2.2
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=1: -break-info
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=1: break add
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=1: breakpoint at main
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=1: dis 2.2
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=1: en 2.2
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=1: insert breakpoint with MI command
PASS -> FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=1: send -fix-multi-location-breakpoint-output
PASS -> UNRESOLVED: gdb.mi/mi-catch-load.exp: breakpoint at main
PASS -> FAIL: gdb.mi/mi-catch-load.exp: catch-load: auto-solib-add on
PASS -> FAIL: gdb.mi/mi-catch-load.exp: catch-load: catch load
new FAIL: gdb.mi/mi-catch-load.exp: catch-load: continue
PASS -> FAIL: gdb.mi/mi-catch-load.exp: catch-load: solib-event stop
PASS -> FAIL: gdb.mi/mi-catch-load.exp: catch-unload: auto-solib-add on
PASS -> FAIL: gdb.mi/mi-catch-load.exp: catch-unload: catch unload
new FAIL: gdb.mi/mi-catch-load.exp: catch-unload: continue
PASS -> FAIL: gdb.mi/mi-catch-load.exp: catch-unload: solib-event stop
PASS -> UNRESOLVED: gdb.mi/mi-cli.exp: -interpreter-exec console "file $binfile"
new FAIL: gdb.mi/mi-cmd-param-changed.exp:
PASS -> FAIL: gdb.mi/mi-complete.exp: -complete "b mai"
PASS -> FAIL: gdb.mi/mi-complete.exp: -complete "b push_ba", wildmatching
PASS -> FAIL: gdb.mi/mi-complete.exp: -complete br
PASS -> UNRESOLVED: gdb.mi/mi-complete.exp: breakpoint at main
PASS -> UNRESOLVED: gdb.mi/mi-condbreak-call-thr-state.exp: mt: breakpoint at test
PASS -> FAIL: gdb.mi/mi-condbreak-call-thr-state.exp: mt: no spurious *running notifications
PASS -> UNRESOLVED: gdb.mi/mi-condbreak-call-thr-state.exp: st: breakpoint at test
PASS -> FAIL: gdb.mi/mi-condbreak-call-thr-state.exp: st: no spurious *running notifications
PASS -> FAIL: gdb.mi/mi-console.exp: Testing console output
PASS -> UNRESOLVED: gdb.mi/mi-console.exp: breakpoint at main
PASS -> FAIL: gdb.mi/mi-console.exp: finished step over hello
PASS -> UNRESOLVED: gdb.mi/mi-detach.exp: breakpoint at main
PASS -> UNRESOLVED: gdb.mi/mi-disassemble.exp: breakpoint at main
PASS -> FAIL: gdb.mi/mi-disassemble.exp: data-disassemble bogus address, -a
PASS -> FAIL: gdb.mi/mi-disassemble.exp: data-disassemble bogus address, -s -e
PASS -> FAIL: gdb.mi/mi-disassemble.exp: data-disassemble file & line, assembly only
PASS -> FAIL: gdb.mi/mi-disassemble.exp: data-disassemble file & line, assembly with opcodes
PASS -> FAIL: gdb.mi/mi-disassemble.exp: data-disassemble file, line assembly mixed
PASS -> FAIL: gdb.mi/mi-disassemble.exp: data-disassemble file, line assembly mixed with opcodes
PASS -> FAIL: gdb.mi/mi-disassemble.exp: data-disassemble file, line, number
PASS -> FAIL: gdb.mi/mi-disassemble.exp: data-disassemble file, line, number assembly mixed
PASS -> FAIL: gdb.mi/mi-disassemble.exp: data-disassemble file, line, number assembly only
PASS -> FAIL: gdb.mi/mi-disassemble.exp: data-disassemble from pc to pc+12 assembly only
PASS -> FAIL: gdb.mi/mi-disassemble.exp: data-disassemble from pc to pc+12 assembly with opcodes
PASS -> FAIL: gdb.mi/mi-disassemble.exp: data-disassemble function around pc assembly only
PASS -> FAIL: gdb.mi/mi-disassemble.exp: data-disassemble function callee4 assembly only
PASS -> FAIL: gdb.mi/mi-disassemble.exp: data-disassemble mix different args
PASS -> FAIL: gdb.mi/mi-disassemble.exp: data-disassemble range assembly mixed
PASS -> FAIL: gdb.mi/mi-disassemble.exp: data-disassemble range assembly mixed with opcodes
PASS -> FAIL: gdb.mi/mi-dprintf-pending.exp: mi dprintf
PASS -> FAIL: gdb.mi/mi-dprintf-pending.exp: mi dprintf stop
PASS -> FAIL: gdb.mi/mi-dprintf-pending.exp: mi insert breakpoint bp_location1
PASS -> UNRESOLVED: gdb.mi/mi-dprintf-pending.exp: mi set dprintf
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: breakpoint at main
new UNRESOLVED: gdb.mi/mi-dprintf.exp: call:
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: call: mi 1st dprintf
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: call: mi 1st dprintf stop
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: call: mi 2nd dprintf
new UNRESOLVED: gdb.mi/mi-dprintf.exp: call: mi 2nd dprintf continue
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: call: mi 2nd dprintf stop
PASS -> FAIL: gdb.mi/mi-dprintf.exp: explicit breakpoint at mi-dprintf.c:30
PASS -> FAIL: gdb.mi/mi-dprintf.exp: explicit dprintf at main
new UNRESOLVED: gdb.mi/mi-dprintf.exp: fprintf:
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: fprintf: mi 1st dprintf
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: fprintf: mi 1st dprintf stop
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: fprintf: mi 2nd dprintf
new UNRESOLVED: gdb.mi/mi-dprintf.exp: fprintf: mi 2nd dprintf continue
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: fprintf: mi 2nd dprintf stop
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: gdb: mi 1st dprintf
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: gdb: mi 1st dprintf stop
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: gdb: mi 2nd dprintf
new UNRESOLVED: gdb.mi/mi-dprintf.exp: gdb: mi 2nd dprintf continue
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: gdb: mi 2nd dprintf stop
PASS -> FAIL: gdb.mi/mi-dprintf.exp: mi info dprintf
PASS -> FAIL: gdb.mi/mi-dprintf.exp: mi insert dprintf dp_location1
PASS -> FAIL: gdb.mi/mi-dprintf.exp: mi insert dprintf foo
PASS -> FAIL: gdb.mi/mi-dprintf.exp: mi insert without location
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: mi set dprintf channel
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: mi set dprintf style to an unrecognized type
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: mi set dprintf style to call
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: mi set dprintf-channel stderr
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: set dprintf style to agent
PASS -> UNRESOLVED: gdb.mi/mi-eval.exp: breakpoint at callee4
PASS -> FAIL: gdb.mi/mi-eval.exp: eval &A
PASS -> FAIL: gdb.mi/mi-eval.exp: eval A
PASS -> FAIL: gdb.mi/mi-eval.exp: eval A + 3
PASS -> FAIL: gdb.mi/mi-eval.exp: eval A+3
PASS -> FAIL: gdb.mi/mi-eval.exp: next at callee4
PASS -> FAIL: gdb.mi/mi-exit-code.exp: first run: -list-thread-groups after exit shows exit-code
PASS -> FAIL: gdb.mi/mi-exit-code.exp: first run: -list-thread-groups during run shows no exit-code
PASS -> UNRESOLVED: gdb.mi/mi-exit-code.exp: first run: breakpoint at main
new FAIL: gdb.mi/mi-exit-code.exp: first run: continuing to inferior exit
PASS -> FAIL: gdb.mi/mi-exit-code.exp: first run: exit normally
new UNRESOLVED: gdb.mi/mi-exit-code.exp: second run:
PASS -> UNRESOLVED: gdb.mi/mi-exit-code.exp: second run: -list-thread-groups after exit shows exit-code
PASS -> UNRESOLVED: gdb.mi/mi-exit-code.exp: second run: -list-thread-groups during run shows no exit-code
PASS -> UNRESOLVED: gdb.mi/mi-exit-code.exp: second run: breakpoint at main
new UNRESOLVED: gdb.mi/mi-exit-code.exp: second run: continuing to inferior exit
PASS -> UNRESOLVED: gdb.mi/mi-exit-code.exp: second run: exit with code
PASS -> UNRESOLVED: gdb.mi/mi-exit-code.exp: second run: write exit code
PASS -> FAIL: gdb.mi/mi-file-transfer.exp: compare binary file
PASS -> FAIL: gdb.mi/mi-file-transfer.exp: compare intermediate binary file
PASS -> FAIL: gdb.mi/mi-file-transfer.exp: deleted binary file
PASS -> FAIL: gdb.mi/mi-file-transfer.exp: get binary file
PASS -> UNRESOLVED: gdb.mi/mi-file-transfer.exp: put binary file
PASS -> FAIL: gdb.mi/mi-file.exp: Getting a list of source files.
PASS -> UNRESOLVED: gdb.mi/mi-file.exp: request path info of current source file
PASS -> UNRESOLVED: gdb.mi/mi-fill-memory.exp: breakpoint at main
PASS -> FAIL: gdb.mi/mi-fill-memory.exp: memory successfully filled
PASS -> FAIL: gdb.mi/mi-fill-memory.exp: memory successfully written
PASS -> FAIL: gdb.mi/mi-fill-memory.exp: next at main
PASS -> FAIL: gdb.mi/mi-fill-memory.exp: pattern correctly read from memory
PASS -> UNRESOLVED: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: breakpoint at main
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: breakpoint hit in callee3
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: create varobj for $pc in frame 0
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: create varobj for $pc in frame 1
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: create varobj for $pc in frame 2
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: create varobj for $pc in frame 3
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: create varobj for 'global_zero + $pc' in frame 0
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: create varobj for 'global_zero + $pc' in frame 1
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: create varobj for 'global_zero + $pc' in frame 2
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: create varobj for 'global_zero + $pc' in frame 3
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: insert breakpoint at basics.c:callee3
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: next instruction in callee3
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: varobj var1 has changed
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: varobj var2 has changed
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: varobj var3 has not changed
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: varobj var4 has not changed
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: varobj var5 has not changed
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: varobj var6 has not changed
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: varobj var7 has not changed
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: varobj var8 has not changed
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_floating_varobj_test: -var-update for frame 1
PASS -> UNRESOLVED: gdb.mi/mi-frame-regs.exp: do_floating_varobj_test: breakpoint at main
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_floating_varobj_test: breakpoint hit in callee1
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_floating_varobj_test: create varobj for pc in frame 0
PASS -> FAIL: gdb.mi/mi-frame-regs.exp: do_floating_varobj_test: insert breakpoint at basics.c:callee1
PASS -> FAIL: gdb.mi/mi-fullname-deleted.exp: compare_filenames_for_search does match
PASS -> FAIL: gdb.mi/mi-fullname-deleted.exp: compare_filenames_for_search does not match
PASS -> FAIL: gdb.mi/mi-fullname-deleted.exp: fullname present
PASS -> UNRESOLVED: gdb.mi/mi-fullname-deleted.exp: set substitute-path
PASS -> FAIL: gdb.mi/mi-fullname-deleted.exp: substituted fullname
PASS -> FAIL: gdb.mi/mi-inheritance-syntax-error.exp: -var-info-path-expression var1.A
PASS -> UNRESOLVED: gdb.mi/mi-inheritance-syntax-error.exp: breakpoint at C::testLocation
PASS -> FAIL: gdb.mi/mi-inheritance-syntax-error.exp: create var for THIS
PASS -> FAIL: gdb.mi/mi-inheritance-syntax-error.exp: list children of THIS
new FAIL: gdb.mi/mi-linespec-err-cp.exp:
PASS -> UNRESOLVED: gdb.mi/mi-linespec-err-cp.exp: breakpoint at main
PASS -> FAIL: gdb.mi/mi-linespec-err-cp.exp: breakpoint hit
PASS -> FAIL: gdb.mi/mi-linespec-err-cp.exp: set breakpoint
PASS -> UNRESOLVED: gdb.mi/mi-logging.exp: breakpoint at main
PASS -> FAIL: gdb.mi/mi-memory-changed.exp: change C thru. -data-write-memory-bytes
PASS -> FAIL: gdb.mi/mi-memory-changed.exp: change C thru. varobj
PASS -> FAIL: gdb.mi/mi-memory-changed.exp: continue to callee4
PASS -> FAIL: gdb.mi/mi-memory-changed.exp: create objvar for C
PASS -> FAIL: gdb.mi/mi-memory-changed.exp: get address of main
PASS -> UNRESOLVED: gdb.mi/mi-memory-changed.exp: insert breakpoint
PASS -> FAIL: gdb.mi/mi-memory-changed.exp: set var C = 4
PASS -> FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
PASS -> UNRESOLVED: gdb.mi/mi-pending.exp: MI pending breakpoint on pendfunc1
PASS -> FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on pendfunc3
PASS -> FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on thread_func
PASS -> FAIL: gdb.mi/mi-pending.exp: Run till MI pending breakpoint on pendfunc1
PASS -> FAIL: gdb.mi/mi-pending.exp: Run till MI pending breakpoint on pendfunc1 a second time
PASS -> FAIL: gdb.mi/mi-pending.exp: Run till MI pending breakpoint on pendfunc2 with x==4
PASS -> FAIL: gdb.mi/mi-pending.exp: Run till MI pending breakpoint on thread_func
new FAIL: gdb.mi/mi-pending.exp: continuing execution to conditional bp
new FAIL: gdb.mi/mi-pending.exp: continuing execution to skip conditional bp
new FAIL: gdb.mi/mi-pending.exp: continuing execution to thread condition
new FAIL: gdb.mi/mi-pending.exp: continuing execution to thread creation
PASS -> FAIL: gdb.mi/mi-pending.exp: delete breakpoint 3
PASS -> FAIL: gdb.mi/mi-pending.exp: run till MI pending breakpoint on pendfunc3 on thread 2
PASS -> FAIL: gdb.mi/mi-pthreads.exp: -thread_list_ids
PASS -> UNRESOLVED: gdb.mi/mi-pthreads.exp: breakpoint at done_making_threads
PASS -> FAIL: gdb.mi/mi-read-memory.exp: 3x2, one byte
PASS -> FAIL: gdb.mi/mi-read-memory.exp: 3x2, one byte offset by -6
PASS -> FAIL: gdb.mi/mi-read-memory.exp: ascii and data
PASS -> UNRESOLVED: gdb.mi/mi-read-memory.exp: breakpoint at main
PASS -> FAIL: gdb.mi/mi-read-memory.exp: decimal
PASS -> FAIL: gdb.mi/mi-read-memory.exp: expression in quotes
PASS -> FAIL: gdb.mi/mi-read-memory.exp: next at main
PASS -> FAIL: gdb.mi/mi-read-memory.exp: octal
PASS -> UNRESOLVED: gdb.mi/mi-record-changed.exp: breakpoint at main
PASS -> FAIL: gdb.mi/mi-record-changed.exp: record
PASS -> FAIL: gdb.mi/mi-record-changed.exp: record end
PASS -> FAIL: gdb.mi/mi-record-changed.exp: target record
PASS -> UNRESOLVED: gdb.mi/mi-return.exp: breakpoint at callee4
PASS -> FAIL: gdb.mi/mi-return.exp: delete all breakpoints
PASS -> FAIL: gdb.mi/mi-return.exp: return from callee4 now
PASS -> FAIL: gdb.mi/mi-reverse.exp: Turn on process record
PASS -> UNRESOLVED: gdb.mi/mi-reverse.exp: breakpoint at main
PASS -> UNRESOLVED: gdb.mi/mi-simplerun.exp: break-insert operation
PASS -> FAIL: gdb.mi/mi-simplerun.exp: continue to end
PASS -> FAIL: gdb.mi/mi-simplerun.exp: disabling of breakpoints
PASS -> FAIL: gdb.mi/mi-simplerun.exp: exec-finish
PASS -> FAIL: gdb.mi/mi-simplerun.exp: insert breakpoint at "<fullfilename>":$line_callee4_head
PASS -> FAIL: gdb.mi/mi-simplerun.exp: insert breakpoint at basics.c:$line_callee3_head
PASS -> FAIL: gdb.mi/mi-simplerun.exp: insert breakpoint at basics.c:callee2
PASS -> FAIL: gdb.mi/mi-simplerun.exp: list of breakpoints
PASS -> FAIL: gdb.mi/mi-simplerun.exp: list of breakpoints, 16 disabled
PASS -> FAIL: gdb.mi/mi-simplerun.exp: next at main
PASS -> FAIL: gdb.mi/mi-simplerun.exp: run to main
PASS -> FAIL: gdb.mi/mi-simplerun.exp: step at main
PASS -> FAIL: gdb.mi/mi-simplerun.exp: step to callee4
PASS -> FAIL: gdb.mi/mi-solib.exp: test_file_list_shared_libraries: breakpoint at main
PASS -> FAIL: gdb.mi/mi-solib.exp: test_file_list_shared_libraries: get the list of shared libraries
PASS -> FAIL: gdb.mi/mi-solib.exp: test_file_list_shared_libraries: mi runto main
PASS -> FAIL: gdb.mi/mi-solib.exp: test_stop_on_solib_events: CLI prints solib event
PASS -> FAIL: gdb.mi/mi-solib.exp: test_stop_on_solib_events: check for solib event
PASS -> UNRESOLVED: gdb.mi/mi-solib.exp: test_stop_on_solib_events: set stop-on-solib-events
PASS -> FAIL: gdb.mi/mi-solib.exp: test_stop_on_solib_events: unset stop-on-solib-events
PASS -> UNRESOLVED: gdb.mi/mi-stack.exp: breakpoint at callee4
PASS -> FAIL: gdb.mi/mi-stack.exp: next's in callee4
PASS -> FAIL: gdb.mi/mi-stack.exp: run to 27
PASS -> FAIL: gdb.mi/mi-stack.exp: selected frame listing
PASS -> FAIL: gdb.mi/mi-stack.exp: stack args listing 0
PASS -> FAIL: gdb.mi/mi-stack.exp: stack args listing 0 1 1
PASS -> FAIL: gdb.mi/mi-stack.exp: stack args listing 0 1 3
PASS -> FAIL: gdb.mi/mi-stack.exp: stack args listing 1
PASS -> FAIL: gdb.mi/mi-stack.exp: stack args listing 1 1 1
PASS -> FAIL: gdb.mi/mi-stack.exp: stack args listing 1 1 3
PASS -> FAIL: gdb.mi/mi-stack.exp: stack args listing 1 1 300
PASS -> FAIL: gdb.mi/mi-stack.exp: stack frame listing
PASS -> FAIL: gdb.mi/mi-stack.exp: stack frame listing 1 1
PASS -> FAIL: gdb.mi/mi-stack.exp: stack frame listing 1 3
PASS -> FAIL: gdb.mi/mi-stack.exp: stack frame listing 1 300
PASS -> FAIL: gdb.mi/mi-stack.exp: stack info-depth
PASS -> FAIL: gdb.mi/mi-stack.exp: stack info-depth 3
PASS -> FAIL: gdb.mi/mi-stack.exp: stack info-depth 99
PASS -> FAIL: gdb.mi/mi-stack.exp: stack locals for same frame
PASS -> FAIL: gdb.mi/mi-stack.exp: stack locals listing for new frame
PASS -> FAIL: gdb.mi/mi-stack.exp: stack locals listing of names
PASS -> FAIL: gdb.mi/mi-stack.exp: stack locals listing of names and values
PASS -> FAIL: gdb.mi/mi-stack.exp: stack locals listing, simple types: names and values, complex type: names and types
PASS -> FAIL: gdb.mi/mi-stack.exp: stack select frame 1
new FAIL: gdb.mi/mi-stack.exp: wait for stop
PASS -> UNRESOLVED: gdb.mi/mi-stepi.exp: breakpoint at main
PASS -> FAIL: gdb.mi/mi-stepi.exp: next-instruction at main
PASS -> FAIL: gdb.mi/mi-stepi.exp: next-instruction at main 2
PASS -> FAIL: gdb.mi/mi-stepi.exp: step-instruction at main
PASS -> UNRESOLVED: gdb.mi/mi-stepn.exp: breakpoint at main
new FAIL: gdb.mi/mi-sym-info.exp:
PASS -> FAIL: gdb.mi/mi-sym-info.exp: -symbol-info-functions --max-results 1
PASS -> FAIL: gdb.mi/mi-sym-info.exp: -symbol-info-functions --max-results 2
PASS -> FAIL: gdb.mi/mi-sym-info.exp: -symbol-info-types --max-results 4
PASS -> FAIL: gdb.mi/mi-sym-info.exp: -symbol-info-variables --max-results 3
PASS -> FAIL: gdb.mi/mi-sym-info.exp: List all functions
PASS -> FAIL: gdb.mi/mi-sym-info.exp: List all functions from debug information only
PASS -> FAIL: gdb.mi/mi-sym-info.exp: List all functions matching pattern f3
PASS -> FAIL: gdb.mi/mi-sym-info.exp: List all functions matching type void
PASS -> FAIL: gdb.mi/mi-sym-info.exp: List all types
PASS -> FAIL: gdb.mi/mi-sym-info.exp: List all types matching _int_
PASS -> FAIL: gdb.mi/mi-sym-info.exp: List all variables
PASS -> FAIL: gdb.mi/mi-sym-info.exp: List all variables from debug information only
PASS -> FAIL: gdb.mi/mi-sym-info.exp: List all variables matching pattern global_f2
PASS -> FAIL: gdb.mi/mi-sym-info.exp: List all variables matching type float
PASS -> UNRESOLVED: gdb.mi/mi-sym-info.exp: breakpoint at main
PASS -> FAIL: gdb.mi/mi-syn-frame.exp: backtrace from inferior function at exception
PASS -> FAIL: gdb.mi/mi-syn-frame.exp: backtrace from inferior function stopped at bp, showing gdb dummy frame
PASS -> UNRESOLVED: gdb.mi/mi-syn-frame.exp: breakpoint at main
PASS -> FAIL: gdb.mi/mi-syn-frame.exp: call inferior function which raises exception
PASS -> FAIL: gdb.mi/mi-syn-frame.exp: call inferior's function with a breakpoint set in it
PASS -> FAIL: gdb.mi/mi-syn-frame.exp: data evaluate expression
PASS -> FAIL: gdb.mi/mi-syn-frame.exp: finished exec continue
PASS -> FAIL: gdb.mi/mi-syn-frame.exp: insert breakpoint foo
PASS -> FAIL: gdb.mi/mi-syn-frame.exp: insert breakpoint subroutine
PASS -> FAIL: gdb.mi/mi-syn-frame.exp: list stack frames
new FAIL: gdb.mi/mi-syn-frame.exp: testing exec continue
PASS -> UNRESOLVED: gdb.mi/mi-threads-interrupt.exp: breakpoint at all_threads_created
PASS -> FAIL: gdb.mi/mi-threads-interrupt.exp: check thread states
new FAIL: gdb.mi/mi-threads-interrupt.exp: continue
PASS -> FAIL: gdb.mi/mi-threads-interrupt.exp: interrupt reported
PASS -> FAIL: gdb.mi/mi-until.exp: break-delete 1
PASS -> UNRESOLVED: gdb.mi/mi-until.exp: break-insert operation
PASS -> FAIL: gdb.mi/mi-until.exp: run to main
PASS -> FAIL: gdb.mi/mi-until.exp: until after current function
KFAIL -> FAIL: gdb.mi/mi-until.exp: until after while loop
PASS -> FAIL: gdb.mi/mi-until.exp: until line number
PASS -> FAIL: gdb.mi/mi-until.exp: until line number:file
PASS -> UNRESOLVED: gdb.mi/mi-var-block.exp: breakpoint at do_block_tests
PASS -> FAIL: gdb.mi/mi-var-block.exp: create local variable cb
PASS -> FAIL: gdb.mi/mi-var-block.exp: create local variable foo
PASS -> FAIL: gdb.mi/mi-var-block.exp: create local variable foo2
PASS -> FAIL: gdb.mi/mi-var-block.exp: create local variable inner_foo
PASS -> FAIL: gdb.mi/mi-var-block.exp: delete var cb
PASS -> FAIL: gdb.mi/mi-var-block.exp: delete var foo 2
PASS -> FAIL: gdb.mi/mi-var-block.exp: delete var foo2
PASS -> FAIL: gdb.mi/mi-var-block.exp: delete var inner_foo
PASS -> FAIL: gdb.mi/mi-var-block.exp: step at do_block_test 1
PASS -> FAIL: gdb.mi/mi-var-block.exp: step at do_block_test 2
PASS -> FAIL: gdb.mi/mi-var-block.exp: step at do_block_test 3
PASS -> FAIL: gdb.mi/mi-var-block.exp: step at do_block_test 4
PASS -> FAIL: gdb.mi/mi-var-block.exp: step at do_block_test 5
PASS -> FAIL: gdb.mi/mi-var-block.exp: step at do_block_test 6
PASS -> FAIL: gdb.mi/mi-var-block.exp: update all vars: cb foo changed
PASS -> FAIL: gdb.mi/mi-var-block.exp: update cb
PASS -> FAIL: gdb.mi/mi-var-block.exp: update foo: did not change
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: breakpoint at do_children_tests
new FAIL: gdb.mi/mi-var-child.exp: child_deletion: go to line 339
new UNRESOLVED: gdb.mi/mi-var-child.exp: child_deletion: step over 339
PASS -> FAIL: gdb.mi/mi-var-child.exp: create local variable  psnp->char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: create local variable  psnp->long_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: create local variable  psnp->ptrs
PASS -> FAIL: gdb.mi/mi-var-child.exp: create local variable struct_declarations
PASS -> FAIL: gdb.mi/mi-var-child.exp: create local variable weird
PASS -> FAIL: gdb.mi/mi-var-child.exp: create local variable weird->int_ptr_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: delete var struct_declarations
PASS -> FAIL: gdb.mi/mi-var-child.exp: delete var weird
PASS -> FAIL: gdb.mi/mi-var-child.exp: delete var weird->int_ptr_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of psnp->char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of psnp->char_ptr.*psnp->char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr.***psnp->char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr.***psnp->char_ptr.****psnp->char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of psnp->long_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of psnp->long_ptr.*psnp->long_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr.***psnp->long_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr.***psnp->long_ptr.****psnp->long_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of psnp->ptrs
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of psnp->ptrs.0
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of psnp->ptrs.0.next
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of psnp->ptrs.0.next.char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of psnp->ptrs.0.next.char_ptr.*char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of psnp->ptrs.0.next.char_ptr.*char_ptr.**char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of psnp->ptrs.0.next.char_ptr.*char_ptr.**char_ptr.***char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of psnp->ptrs.0.next.next
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of psnp->ptrs.0.next.next.ptrs
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.character
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.func_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.func_ptr_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.func_ptr_struct
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.int_ptr_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.int_ptr_ptr.*int_ptr_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.integer
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array.1
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array.2
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array.3
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array.4
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array.5
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array.6
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array.7
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array.8
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array.9
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_int
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.g
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.h
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.i
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2.f
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2.u1s1
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2.u1s1.d
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2.u1s1.e
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2.u1s1.foo
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2.u1s1.func
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2.u1s2
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2.u1s2.array_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2.u1s2.func
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.u1
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.u1.a
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.u1.b
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.u1.c
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.u1.d
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of weird
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of weird->int_ptr_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of weird->int_ptr_ptr.*weird->int_ptr_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of weird->int_ptr_ptr.*weird->int_ptr_ptr.**weird->int_ptr_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of weird.int_ptr_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of weird.int_ptr_ptr.*int_ptr_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get children of weird.long_array
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->char_ptr.*psnp->char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr.***psnp->char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr.***psnp->char_ptr.****psnp->char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->long_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->long_ptr.*psnp->long_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr.***psnp->long_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr.***psnp->long_ptr.****psnp->long_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->ptrs
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->ptrs.0
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->ptrs.0.next
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->ptrs.0.next.char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->ptrs.0.next.char_ptr.*char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->ptrs.0.next.char_ptr.*char_ptr.**char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->ptrs.0.next.char_ptr.*char_ptr.**char_ptr.***char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.character
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.func_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.func_ptr_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.func_ptr_struct
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.int_ptr_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.int_ptr_ptr.*int_ptr_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.integer
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array.1
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array.2
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array.3
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array.4
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array.5
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array.6
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array.7
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array.8
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array.9
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_int
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.g
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.h
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.i
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2.f
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1.d
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1.e
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1.foo
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1.func
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2.u1s2
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2.u1s2.array_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2.u1s2.func
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.u1
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.u1.a
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.u1.b
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.u1.c
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.u1.d
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of weird
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of weird->int_ptr_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of weird->int_ptr_ptr.*weird->int_ptr_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of weird->int_ptr_ptr.*weird->int_ptr_ptr.**weird->int_ptr_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of weird.int_ptr_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of weird.int_ptr_ptr.*int_ptr_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: get number of children of weird.long_array
PASS -> FAIL: gdb.mi/mi-var-child.exp: is struct_declarations editable
PASS -> FAIL: gdb.mi/mi-var-child.exp: is struct_declarations.long_array editable
PASS -> FAIL: gdb.mi/mi-var-child.exp: is struct_declarations.long_array.0 editable
PASS -> FAIL: gdb.mi/mi-var-child.exp: is struct_declarations.u1.a editable
PASS -> FAIL: gdb.mi/mi-var-child.exp: is struct_declarations.u1.b editable
PASS -> FAIL: gdb.mi/mi-var-child.exp: is struct_declarations.u1.c editable
PASS -> FAIL: gdb.mi/mi-var-child.exp: is weird editable
PASS -> FAIL: gdb.mi/mi-var-child.exp: is weird->int_ptr_ptr editable
PASS -> FAIL: gdb.mi/mi-var-child.exp: is weird.int_ptr_ptr.*int_ptr_ptr editable
PASS -> FAIL: gdb.mi/mi-var-child.exp: is weird.int_ptr_ptr.*int_ptr_ptr.**int_ptr_ptr editable
PASS -> FAIL: gdb.mi/mi-var-child.exp: is weird.s2 editable
PASS -> FAIL: gdb.mi/mi-var-child.exp: is weird.u1 editable
PASS -> FAIL: gdb.mi/mi-var-child.exp: listing of children, simple types: names, type and values, complex types: names and types
PASS -> FAIL: gdb.mi/mi-var-child.exp: listing of names and values of children
PASS -> FAIL: gdb.mi/mi-var-child.exp: run to 229
PASS -> FAIL: gdb.mi/mi-var-child.exp: run to mi-var-child.c:339
PASS -> FAIL: gdb.mi/mi-var-child.exp: step $line_dct_123 + 1
PASS -> FAIL: gdb.mi/mi-var-child.exp: step $line_dct_123 + 4
PASS -> FAIL: gdb.mi/mi-var-child.exp: step $line_dct_123 + 5
PASS -> FAIL: gdb.mi/mi-var-child.exp: step $line_dct_123 + 6
PASS -> FAIL: gdb.mi/mi-var-child.exp: step $line_dct_123 + 7
PASS -> FAIL: gdb.mi/mi-var-child.exp: step $line_dct_123 + 8
PASS -> FAIL: gdb.mi/mi-var-child.exp: step $line_dct_a0_0
PASS -> FAIL: gdb.mi/mi-var-child.exp: step $line_dct_nothing
PASS -> FAIL: gdb.mi/mi-var-child.exp: step $line_dct_nothing + 1
PASS -> FAIL: gdb.mi/mi-var-child.exp: step $line_dct_nothing + 2
PASS -> FAIL: gdb.mi/mi-var-child.exp: step $line_dct_nothing + 3
PASS -> FAIL: gdb.mi/mi-var-child.exp: step $line_dct_nothing + 4
PASS -> FAIL: gdb.mi/mi-var-child.exp: step $line_dct_snp0 + 1
PASS -> FAIL: gdb.mi/mi-var-child.exp: step $line_dct_snp0 + 2
PASS -> FAIL: gdb.mi/mi-var-child.exp: step $line_dct_snp0 + 3
PASS -> FAIL: gdb.mi/mi-var-child.exp: step $line_dct_snp0 + 4
PASS -> FAIL: gdb.mi/mi-var-child.exp: step $line_dct_snp0 + 5
PASS -> FAIL: gdb.mi/mi-var-child.exp: step $line_dct_snp0 + 6
PASS -> FAIL: gdb.mi/mi-var-child.exp: step $line_dct_snp0 + 7
PASS -> FAIL: gdb.mi/mi-var-child.exp: step to line $line_dct_123
PASS -> FAIL: gdb.mi/mi-var-child.exp: update all vars int_ptr_ptr and children changed
PASS -> FAIL: gdb.mi/mi-var-child.exp: update all vars psnp->char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: update all vars psnp->long_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: update all vars psnp->next->char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: update all vars psnp->next->next->char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: update all vars psnp->next->next->long_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: update all vars struct_declarations.char_ptr
PASS -> FAIL: gdb.mi/mi-var-child.exp: update all vars struct_declarations.func_ptr changed
PASS -> FAIL: gdb.mi/mi-var-child.exp: update all vars struct_declarations.func_ptr_ptr changed
PASS -> FAIL: gdb.mi/mi-var-child.exp: update all vars struct_declarations.func_ptr_struct changed
PASS -> FAIL: gdb.mi/mi-var-child.exp: update all vars struct_declarations.integer
PASS -> FAIL: gdb.mi/mi-var-child.exp: update all vars struct_declarations.long_array.0 changed
PASS -> FAIL: gdb.mi/mi-var-child.exp: update all vars struct_declarations.long_array.1 changed
PASS -> FAIL: gdb.mi/mi-var-child.exp: update all vars struct_declarations.long_array.10 changed, don't print values.
PASS -> FAIL: gdb.mi/mi-var-child.exp: update all vars struct_declarations.long_array.11 changed, print values.
PASS -> FAIL: gdb.mi/mi-var-child.exp: update all vars struct_declarations.long_array.2 changed
PASS -> FAIL: gdb.mi/mi-var-child.exp: update all vars struct_declarations.long_array.3-9 changed
new FAIL: gdb.mi/mi-var-child.exp: wait for stop
new UNRESOLVED: gdb.mi/mi-var-cmd.exp:
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: assign array to pointer
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: assign to func
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: assign to global_simple
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: assign to lcharacter
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: assign to ldouble
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: assign to lfloat
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: assign to linteger
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: assign to linteger again, same value
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: assign to llong
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: assign to lpfloat
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: assign to lpinteger
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: assign to lplong
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: assign to lsimple->integer
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: assign to lsimple.character
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: assign to lsimple.integer
new FAIL: gdb.mi/mi-var-cmd.exp: bitfield: go to line 526
new UNRESOLVED: gdb.mi/mi-var-cmd.exp: bitfield: step over 526
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: breakpoint at do_locals_tests
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: breakpoint at do_special_tests
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: breakpoint at incr_a
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: breakpoint at main
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: breakpoint at subroutine1
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: check F inside callee
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: continue to where i is initialized
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: create endvar
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: create global variable
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create global variable array_ptr
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create i
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create l
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create local variable func
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create local variable lcharacter
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create local variable ldouble
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create local variable lfloat
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create local variable linteger
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create local variable llong
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create local variable lpcharacter
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create local variable lpdouble
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create local variable lpfloat
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create local variable lpinteger
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create local variable lplong
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create local variable lpsimple
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create local variable lsimple
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create lsimple->integer
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create lsimple.character
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create lsimple.integer
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create non-existent variable
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: create null_ptr
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create out of scope variable
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: create selected_a
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete array_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete endvar
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete null_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete selected_a
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: delete var  lsimple->integer
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: delete var
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: delete var func
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: delete var i
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: delete var l
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: delete var lcharacter
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: delete var ldouble
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: delete var lfloat
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: delete var linteger
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: delete var llong
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: delete var lpcharacter
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: delete var lpdouble
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: delete var lpfloat
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: delete var lpinteger
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: delete var lplong
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: delete var lpsimple
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: delete var lsimple
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: delete var lsimple.character
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: delete var lsimple.integer
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: eval lcharacter
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: eval lfloat
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: eval linteger
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: eval llong
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: eval lpinteger
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: eval lplong
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: floating varobj invalidation
new FAIL: gdb.mi/mi-var-cmd.exp: floating: go to line 469
new UNRESOLVED: gdb.mi/mi-var-cmd.exp: floating: step over 469
new FAIL: gdb.mi/mi-var-cmd.exp: frozen: go to line 367
new UNRESOLVED: gdb.mi/mi-var-cmd.exp: frozen: step over 367
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: in-and-out-of-scope: check initial value
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: in-and-out-of-scope: create varobj
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: in-and-out-of-scope: in scope now
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: in-and-out-of-scope: in scope now, not changed
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: in-and-out-of-scope: out of scope now
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: in-and-out-of-scope: out of scope now, not changed
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: inside breakpoint inside callee
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: kill program before endvar
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: mi runto do_locals_tests
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: mi runto do_special_tests
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: mi runto incr_a
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: mi runto subroutine1
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: next out of subroutine1
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: return from incr_a to do_special_tests
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: run to 148
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: run to var-cmd.c:367
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: run to var-cmd.c:469
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: run to var-cmd.c:526
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: step a line in incr_a
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: step at do_locals_test
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: step at do_locals_tests
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: step at subroutine1
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: update F inside callee
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: update all vars: all now out of scope
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: update all vars: func and lpsimple changed
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: update all vars: i changed
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: update all vars: lcharacter changed
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: update all vars: linteger changed
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: update all vars: linteger changed after assign
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: update all vars: llong changed
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: update all vars: lpcharacter changed
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: update all vars: lpinteger changed
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: update all vars: lpinteger changed after assign
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: update all vars: lsimple and others changed
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: update all vars: many changed
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: update endvar
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: update null_ptr
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: update selected_a in do_special_tests
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: update selected_a in incr_a
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: update varobj before running inferior
new FAIL: gdb.mi/mi-var-cmd.exp: wait for stop
new UNRESOLVED: gdb.mi/mi-var-cp.exp:
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: VT: create root varobj for a
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: VT: list children of a1
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: VT: list children of a1.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.0_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.0_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.1_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.1_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous.public.1_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous.public.1_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous.public.1_anonymous.public.1_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous.public.1_anonymous.public.2_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous.public.1_anonymous.public.2_anonymous.public
new FAIL: gdb.mi/mi-var-cp.exp: base_in_reference: go to line 45
new UNRESOLVED: gdb.mi/mi-var-cp.exp: base_in_reference: step over 45
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: break in anonymous_structs_and_unions
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: continue to anonymous_structs breakpoint
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.0_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.0_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.0_anonymous.public.b
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.1_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.1_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.1_anonymous.public.c
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous.public.g
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous.public.h
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.f
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.2_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.2_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.2_anonymous.public.i
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.2_anonymous.public.j
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.e
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.d
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.0_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.0_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.0_anonymous.public.b
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.1_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.1_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.1_anonymous.public.c
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous.public.g
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous.public.h
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.f
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.2_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.2_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.2_anonymous.public.i
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.2_anonymous.public.j
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.e
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.d
new FAIL: gdb.mi/mi-var-cp.exp: path_expression: go to line 144
new UNRESOLVED: gdb.mi/mi-var-cp.exp: path_expression: step over 144
new FAIL: gdb.mi/mi-var-cp.exp: reference_to_pointer: go to line 81
new UNRESOLVED: gdb.mi/mi-var-cp.exp: reference_to_pointer: step over 81
new FAIL: gdb.mi/mi-var-cp.exp: reference_to_struct: go to line 104
new UNRESOLVED: gdb.mi/mi-var-cp.exp: reference_to_struct: step over 104
new FAIL: gdb.mi/mi-var-cp.exp: reference_update: go to line 19
new FAIL: gdb.mi/mi-var-cp.exp: reference_update: step over 19
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: run to mi-var-cp.cc:104
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: run to mi-var-cp.cc:144
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: run to mi-var-cp.cc:19
PASS -> FAIL: gdb.mi/mi-var-cp.exp: run to mi-var-cp.cc:45
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: run to mi-var-cp.cc:81
new FAIL: gdb.mi/mi-var-cp.exp: wait for stop
PASS -> FAIL: gdb.mi/mi-var-display.exp: assing to variable bar
PASS -> FAIL: gdb.mi/mi-var-display.exp: assing to variable foo
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: break-insert operation
PASS -> FAIL: gdb.mi/mi-var-display.exp: break-insert operation 2
PASS -> FAIL: gdb.mi/mi-var-display.exp: breakpoint at incr_a
PASS -> FAIL: gdb.mi/mi-var-display.exp: continue to do_special_tests
PASS -> FAIL: gdb.mi/mi-var-display.exp: create duplicate local variable anone
PASS -> FAIL: gdb.mi/mi-var-display.exp: create local variable a1
PASS -> FAIL: gdb.mi/mi-var-display.exp: create local variable anone
PASS -> FAIL: gdb.mi/mi-var-display.exp: create local variable anons
PASS -> FAIL: gdb.mi/mi-var-display.exp: create local variable anonu
PASS -> FAIL: gdb.mi/mi-var-display.exp: create local variable bar
PASS -> FAIL: gdb.mi/mi-var-display.exp: create local variable e
PASS -> FAIL: gdb.mi/mi-var-display.exp: create local variable foo
PASS -> FAIL: gdb.mi/mi-var-display.exp: create local variable s
PASS -> FAIL: gdb.mi/mi-var-display.exp: create local variable u
PASS -> FAIL: gdb.mi/mi-var-display.exp: create local variable weird
PASS -> FAIL: gdb.mi/mi-var-display.exp: delete var bar
PASS -> FAIL: gdb.mi/mi-var-display.exp: delete var foo
PASS -> FAIL: gdb.mi/mi-var-display.exp: delete var weird
PASS -> FAIL: gdb.mi/mi-var-display.exp: eval variable -f decimal foo
PASS -> FAIL: gdb.mi/mi-var-display.exp: eval variable -f nat foo
PASS -> FAIL: gdb.mi/mi-var-display.exp: eval variable -f octal foo
PASS -> FAIL: gdb.mi/mi-var-display.exp: eval variable anone
PASS -> FAIL: gdb.mi/mi-var-display.exp: eval variable anons
PASS -> FAIL: gdb.mi/mi-var-display.exp: eval variable anonu
PASS -> FAIL: gdb.mi/mi-var-display.exp: eval variable bar
PASS -> FAIL: gdb.mi/mi-var-display.exp: eval variable bar with new format
PASS -> FAIL: gdb.mi/mi-var-display.exp: eval variable bar with new value
PASS -> FAIL: gdb.mi/mi-var-display.exp: eval variable e
PASS -> FAIL: gdb.mi/mi-var-display.exp: eval variable foo in binary
PASS -> FAIL: gdb.mi/mi-var-display.exp: eval variable foo in decimal
PASS -> FAIL: gdb.mi/mi-var-display.exp: eval variable foo in hex
PASS -> FAIL: gdb.mi/mi-var-display.exp: eval variable foo in natural
PASS -> FAIL: gdb.mi/mi-var-display.exp: eval variable foo in octal
PASS -> FAIL: gdb.mi/mi-var-display.exp: eval variable s
PASS -> FAIL: gdb.mi/mi-var-display.exp: eval variable u
PASS -> FAIL: gdb.mi/mi-var-display.exp: get children local variable weird
PASS -> FAIL: gdb.mi/mi-var-display.exp: get children of anone
PASS -> FAIL: gdb.mi/mi-var-display.exp: get children of anons
PASS -> FAIL: gdb.mi/mi-var-display.exp: get children of anonu
PASS -> FAIL: gdb.mi/mi-var-display.exp: get children of e
PASS -> FAIL: gdb.mi/mi-var-display.exp: get children of s
PASS -> FAIL: gdb.mi/mi-var-display.exp: get children of u
PASS -> FAIL: gdb.mi/mi-var-display.exp: get number of children of anone
PASS -> FAIL: gdb.mi/mi-var-display.exp: get number of children of anons
PASS -> FAIL: gdb.mi/mi-var-display.exp: get number of children of anonu
PASS -> FAIL: gdb.mi/mi-var-display.exp: get number of children of e
PASS -> FAIL: gdb.mi/mi-var-display.exp: get number of children of s
PASS -> FAIL: gdb.mi/mi-var-display.exp: get number of children of u
PASS -> FAIL: gdb.mi/mi-var-display.exp: info type variable anone
PASS -> FAIL: gdb.mi/mi-var-display.exp: info type variable anons
PASS -> FAIL: gdb.mi/mi-var-display.exp: info type variable anonu
PASS -> FAIL: gdb.mi/mi-var-display.exp: info type variable bar
PASS -> FAIL: gdb.mi/mi-var-display.exp: info type variable e
PASS -> FAIL: gdb.mi/mi-var-display.exp: info type variable foo
PASS -> FAIL: gdb.mi/mi-var-display.exp: info type variable s
PASS -> FAIL: gdb.mi/mi-var-display.exp: info type variable u
PASS -> FAIL: gdb.mi/mi-var-display.exp: is anone editable
PASS -> FAIL: gdb.mi/mi-var-display.exp: is anons editable
PASS -> FAIL: gdb.mi/mi-var-display.exp: is anonu editable
PASS -> FAIL: gdb.mi/mi-var-display.exp: is e editable
PASS -> FAIL: gdb.mi/mi-var-display.exp: is s editable
PASS -> FAIL: gdb.mi/mi-var-display.exp: is u editable
PASS -> FAIL: gdb.mi/mi-var-display.exp: mi runto incr_a
PASS -> FAIL: gdb.mi/mi-var-display.exp: print FP register
PASS -> FAIL: gdb.mi/mi-var-display.exp: run to main
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable bar in decimal
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable bar in hex
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable bar in zero-padded hexadecimal
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable foo decimal
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable foo in octal
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable weird
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable weird.char_ptr
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable weird.character
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable weird.func_ptr in hex
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable weird.func_ptr in zero-padded hex
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable weird.func_ptr_ptr in hex
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable weird.func_ptr_ptr in natural
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable weird.func_ptr_ptr in zero-padded hex
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable weird.func_ptr_struct
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable weird.int_ptr_ptr
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable weird.integer
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable weird.long_array
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable weird.long_int
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable weird.s2
PASS -> FAIL: gdb.mi/mi-var-display.exp: set format variable weird.u1
PASS -> FAIL: gdb.mi/mi-var-display.exp: show format variable bar
PASS -> FAIL: gdb.mi/mi-var-display.exp: show format variable foo after eval in binary
PASS -> FAIL: gdb.mi/mi-var-display.exp: show format variable foo after eval in decimal
PASS -> FAIL: gdb.mi/mi-var-display.exp: show format variable foo after eval in hex
PASS -> FAIL: gdb.mi/mi-var-display.exp: show format variable foo after eval in natural
PASS -> FAIL: gdb.mi/mi-var-display.exp: show format variable foo after eval in octal
PASS -> FAIL: gdb.mi/mi-var-display.exp: show format variable foo in natural
PASS -> FAIL: gdb.mi/mi-var-display.exp: show format variable foo in octal
PASS -> FAIL: gdb.mi/mi-var-display.exp: show format variable weird.func_ptr
PASS -> FAIL: gdb.mi/mi-var-display.exp: show format variable weird.func_ptr_ptr
new UNRESOLVED: gdb.mi/mi-var-invalidate.exp:
PASS -> FAIL: gdb.mi/mi-var-invalidate.exp: breakpoint at do_locals_tests
PASS -> UNRESOLVED: gdb.mi/mi-var-invalidate.exp: breakpoint at main
PASS -> FAIL: gdb.mi/mi-var-invalidate.exp: create floating variable
PASS -> UNRESOLVED: gdb.mi/mi-var-invalidate.exp: create global variable
PASS -> FAIL: gdb.mi/mi-var-invalidate.exp: create local variable linteger
PASS -> UNRESOLVED: gdb.mi/mi-var-invalidate.exp: global_simple not anymore in scope due to binary changes
PASS -> UNRESOLVED: gdb.mi/mi-var-invalidate.exp: global_simple still alive
PASS -> UNRESOLVED: gdb.mi/mi-var-invalidate.exp: linteger not anymore in scope due to binary changes
PASS -> UNRESOLVED: gdb.mi/mi-var-invalidate.exp: linteger not valid anymore due to binary changes
PASS -> UNRESOLVED: gdb.mi/mi-var-invalidate.exp: no type for invalid variable global_simple
PASS -> UNRESOLVED: gdb.mi/mi-var-invalidate.exp: no type for invalid variable linteger
PASS -> UNRESOLVED: gdb.mi/mi-var-invalidate.exp: set format variable float_simple
PASS -> UNRESOLVED: gdb.mi/mi-var-invalidate.exp: type simpleton for valid variable global_simple
PASS -> FAIL: gdb.mi/mi-var-list-children-invalid-grandchild.exp: breakpoint at main
PASS -> FAIL: gdb.mi/mi-var-list-children-invalid-grandchild.exp: create variable object
PASS -> FAIL: gdb.mi/mi-var-list-children-invalid-grandchild.exp: list children #1
PASS -> FAIL: gdb.mi/mi-var-list-children-invalid-grandchild.exp: list children #2
PASS -> FAIL: gdb.mi/mi-var-list-children-invalid-grandchild.exp: run to 41
PASS -> FAIL: gdb.mi/mi-var-list-children-invalid-grandchild.exp: run to 43
PASS -> UNRESOLVED: gdb.mi/mi-var-list-children-invalid-grandchild.exp: set print object on
PASS -> FAIL: gdb.mi/mi-var-list-children-invalid-grandchild.exp: update variable object
new FAIL: gdb.mi/mi-var-list-children-invalid-grandchild.exp: wait for stop
new UNRESOLVED: gdb.mi/mi-var-rtti.exp:
PASS -> UNRESOLVED: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:148
PASS -> UNRESOLVED: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:201
PASS -> UNRESOLVED: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:250
PASS -> UNRESOLVED: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:306
PASS -> UNRESOLVED: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:36
PASS -> FAIL: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:63
PASS -> UNRESOLVED: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:93
new FAIL: gdb.mi/mi-var-rtti.exp: skip_type_update_when_not_use_rtti: go to line 306
new UNRESOLVED: gdb.mi/mi-var-rtti.exp: skip_type_update_when_not_use_rtti: step over 306
new FAIL: gdb.mi/mi-var-rtti.exp: type_update_when_use_rtti: go to line 250
new UNRESOLVED: gdb.mi/mi-var-rtti.exp: type_update_when_use_rtti: step over 250
new FAIL: gdb.mi/mi-var-rtti.exp: use_rtti_for_ptr: go to line 36
new FAIL: gdb.mi/mi-var-rtti.exp: use_rtti_for_ptr: step over 36
new FAIL: gdb.mi/mi-var-rtti.exp: use_rtti_for_ptr_child: go to line 93
new UNRESOLVED: gdb.mi/mi-var-rtti.exp: use_rtti_for_ptr_child: step over 93
new FAIL: gdb.mi/mi-var-rtti.exp: use_rtti_for_ref: go to line 63
new UNRESOLVED: gdb.mi/mi-var-rtti.exp: use_rtti_for_ref: step over 63
new FAIL: gdb.mi/mi-var-rtti.exp: use_rtti_for_ref_child: go to line 148
new UNRESOLVED: gdb.mi/mi-var-rtti.exp: use_rtti_for_ref_child: step over 148
new FAIL: gdb.mi/mi-var-rtti.exp: use_rtti_with_multiple_inheritence: go to line 201
new UNRESOLVED: gdb.mi/mi-var-rtti.exp: use_rtti_with_multiple_inheritence: step over 201
new UNRESOLVED: gdb.mi/mi-var-rtti.exp: wait for stop
PASS -> FAIL: gdb.mi/mi-vla-c99.exp: create local variable vla
PASS -> FAIL: gdb.mi/mi-vla-c99.exp: eval variable vla
PASS -> FAIL: gdb.mi/mi-vla-c99.exp: evaluate complete vla
PASS -> FAIL: gdb.mi/mi-vla-c99.exp: evaluate vla[0]
PASS -> FAIL: gdb.mi/mi-vla-c99.exp: evaluate vla[2]
PASS -> FAIL: gdb.mi/mi-vla-c99.exp: evaluate vla[4]
PASS -> FAIL: gdb.mi/mi-vla-c99.exp: get children of vla
PASS -> FAIL: gdb.mi/mi-vla-c99.exp: info type variable vla
PASS -> UNRESOLVED: gdb.mi/mi-vla-c99.exp: insert breakpoint at line 28 after vla is filled
PASS -> FAIL: gdb.mi/mi-vla-c99.exp: run to breakpoint at line 28
PASS -> FAIL: gdb.mi/mi-vla-c99.exp: show format variable vla
PASS -> FAIL: gdb.mi/mi-watch.exp: mi-mode=main: wp-type=hw: break-watch operation
PASS -> UNRESOLVED: gdb.mi/mi-watch.exp: mi-mode=main: wp-type=hw: breakpoint at callee4
PASS -> FAIL: gdb.mi/mi-watch.exp: mi-mode=main: wp-type=hw: list of watchpoints
PASS -> FAIL: gdb.mi/mi-watch.exp: mi-mode=main: wp-type=hw: watchpoint trigger
PASS -> FAIL: gdb.mi/mi-watch.exp: mi-mode=main: wp-type=sw: break-watch operation
PASS -> UNRESOLVED: gdb.mi/mi-watch.exp: mi-mode=main: wp-type=sw: breakpoint at callee4
PASS -> FAIL: gdb.mi/mi-watch.exp: mi-mode=main: wp-type=sw: list of watchpoints
PASS -> FAIL: gdb.mi/mi-watch.exp: mi-mode=main: wp-type=sw: watchpoint trigger
PASS -> FAIL: gdb.mi/mi-watch.exp: mi-mode=separate: wp-type=hw: break-watch operation
PASS -> UNRESOLVED: gdb.mi/mi-watch.exp: mi-mode=separate: wp-type=hw: breakpoint at callee4
PASS -> FAIL: gdb.mi/mi-watch.exp: mi-mode=separate: wp-type=hw: list of watchpoints
PASS -> FAIL: gdb.mi/mi-watch.exp: mi-mode=separate: wp-type=hw: watchpoint trigger
PASS -> FAIL: gdb.mi/mi-watch.exp: mi-mode=separate: wp-type=sw: break-watch operation
PASS -> UNRESOLVED: gdb.mi/mi-watch.exp: mi-mode=separate: wp-type=sw: breakpoint at callee4
PASS -> FAIL: gdb.mi/mi-watch.exp: mi-mode=separate: wp-type=sw: list of watchpoints
PASS -> FAIL: gdb.mi/mi-watch.exp: mi-mode=separate: wp-type=sw: watchpoint trigger
PASS -> UNRESOLVED: gdb.mi/mi2-cli-display.exp: breakpoint at do_tests
PASS -> FAIL: gdb.mi/mi2-cli-display.exp: check display and source line x=24
PASS -> FAIL: gdb.mi/mi2-cli-display.exp: check display and source line x=25
PASS -> FAIL: gdb.mi/mi2-cli-display.exp: display x
new FAIL: gdb.mi/mi2-cli-display.exp: exec-next
PASS -> FAIL: gdb.mi/mi2-cli-display.exp: next
PASS -> FAIL: gdb.mi/mi2-var-child.exp: Run till MI stops in do_nested_struct_union_tests
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: create root varobj for ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: create root varobj for ss_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: create root varobj for v
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: create root varobj for var
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: create root varobj for var2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ptr1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.2_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.h
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.h.*h
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.c
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.3_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.3_anonymous.a2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.3_anonymous.b2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.a1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.b1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.u1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.u1.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.u1.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.u2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.u2.a3
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.u2.b3
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of v1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of v1.1_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of v1.2_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var1.3_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var1.3_anonymous.a2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var1.3_anonymous.b2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var1.a1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var1.b1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var1.u1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var1.u1.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var1.u1.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var1.u2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var1.u2.a3
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var1.u2.b3
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var21
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var21.ab
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var21.ab.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var21.ab.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: break in do_anonymous_type_tests
PASS -> FAIL: gdb.mi/mi2-var-child.exp: break in do_nested_struct_union_tests
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: breakpoint at do_children_tests
PASS -> FAIL: gdb.mi/mi2-var-child.exp: continue to do_anonymous_type_tests breakpoint
new FAIL: gdb.mi/mi2-var-child.exp: continuing execution to enter do_nested_struct_union_tests
PASS -> FAIL: gdb.mi/mi2-var-child.exp: create local variable  psnp->char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: create local variable  psnp->long_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: create local variable  psnp->ptrs
PASS -> FAIL: gdb.mi/mi2-var-child.exp: create local variable struct_declarations
PASS -> FAIL: gdb.mi/mi2-var-child.exp: create local variable weird
PASS -> FAIL: gdb.mi/mi2-var-child.exp: create local variable weird->int_ptr_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: delete var struct_declarations
PASS -> FAIL: gdb.mi/mi2-var-child.exp: delete var weird
PASS -> FAIL: gdb.mi/mi2-var-child.exp: delete var weird->int_ptr_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.g
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.h
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.h.*h
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.h.*h.**h
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.0
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.3
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.4
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.5
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.6
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.7
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.8
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.9
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.char_ptr.*char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.character
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.integer
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.signed_character
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.unsigned_integer
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.d
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.e
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.f
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.c
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.c.*c
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.3_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.3_anonymous.a2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.3_anonymous.a2.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.3_anonymous.b2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.3_anonymous.b2.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.a1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.a1.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.b1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.b1.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u1.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u1.a.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u1.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u1.b.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u2.a3
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u2.a3.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u2.b3
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u2.b3.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for v1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for v1.1_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for v1.1_anonymous.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for v1.2_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for v1.2_anonymous.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for v1.x
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1.3_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1.3_anonymous.a2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1.3_anonymous.a2.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1.3_anonymous.b2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1.3_anonymous.b2.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1.a1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1.a1.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1.b1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1.b1.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1.u1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1.u1.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1.u1.a.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1.u1.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1.u1.b.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1.u2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1.u2.a3
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1.u2.a3.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1.u2.b3
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var1.u2.b3.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var21
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var21.ab
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var21.ab.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var21.ab.a.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var21.ab.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: expression for var21.ab.b.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->char_ptr.*psnp->char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr.***psnp->char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr.***psnp->char_ptr.****psnp->char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->long_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->long_ptr.*psnp->long_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr.***psnp->long_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr.***psnp->long_ptr.****psnp->long_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->ptrs
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->ptrs.0
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->ptrs.0.next
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->ptrs.0.next.char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->ptrs.0.next.char_ptr.*char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->ptrs.0.next.char_ptr.*char_ptr.**char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->ptrs.0.next.char_ptr.*char_ptr.**char_ptr.***char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->ptrs.0.next.next
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->ptrs.0.next.next.ptrs
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.character
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.func_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.func_ptr_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.func_ptr_struct
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.int_ptr_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.int_ptr_ptr.*int_ptr_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.integer
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array.1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array.2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array.3
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array.4
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array.5
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array.6
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array.7
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array.8
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array.9
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_int
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.g
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.h
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.i
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2.f
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2.u1s1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2.u1s1.d
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2.u1s1.e
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2.u1s1.foo
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2.u1s1.func
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2.u1s2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2.u1s2.array_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2.u1s2.func
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.u1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.u1.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.u1.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.u1.c
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.u1.d
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of weird
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of weird->int_ptr_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of weird->int_ptr_ptr.*weird->int_ptr_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of weird->int_ptr_ptr.*weird->int_ptr_ptr.**weird->int_ptr_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of weird.int_ptr_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of weird.int_ptr_ptr.*int_ptr_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get children of weird.long_array
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->char_ptr.*psnp->char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr.***psnp->char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr.***psnp->char_ptr.****psnp->char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->long_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->long_ptr.*psnp->long_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr.***psnp->long_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr.***psnp->long_ptr.****psnp->long_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->ptrs
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->ptrs.0
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->ptrs.0.next
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->ptrs.0.next.char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->ptrs.0.next.char_ptr.*char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->ptrs.0.next.char_ptr.*char_ptr.**char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->ptrs.0.next.char_ptr.*char_ptr.**char_ptr.***char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.character
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.func_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.func_ptr_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.func_ptr_struct
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.int_ptr_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.int_ptr_ptr.*int_ptr_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.integer
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array.1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array.2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array.3
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array.4
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array.5
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array.6
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array.7
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array.8
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array.9
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_int
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.g
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.h
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.i
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2.f
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1.d
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1.e
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1.foo
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1.func
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2.u1s2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2.u1s2.array_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2.u1s2.func
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.u1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.u1.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.u1.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.u1.c
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.u1.d
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of weird
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of weird->int_ptr_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of weird->int_ptr_ptr.*weird->int_ptr_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of weird->int_ptr_ptr.*weird->int_ptr_ptr.**weird->int_ptr_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of weird.int_ptr_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of weird.int_ptr_ptr.*int_ptr_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: get number of children of weird.long_array
PASS -> FAIL: gdb.mi/mi2-var-child.exp: is struct_declarations editable
PASS -> FAIL: gdb.mi/mi2-var-child.exp: is struct_declarations.long_array editable
PASS -> FAIL: gdb.mi/mi2-var-child.exp: is struct_declarations.long_array.0 editable
PASS -> FAIL: gdb.mi/mi2-var-child.exp: is struct_declarations.u1.a editable
PASS -> FAIL: gdb.mi/mi2-var-child.exp: is struct_declarations.u1.b editable
PASS -> FAIL: gdb.mi/mi2-var-child.exp: is struct_declarations.u1.c editable
PASS -> FAIL: gdb.mi/mi2-var-child.exp: is weird editable
PASS -> FAIL: gdb.mi/mi2-var-child.exp: is weird->int_ptr_ptr editable
PASS -> FAIL: gdb.mi/mi2-var-child.exp: is weird.int_ptr_ptr.*int_ptr_ptr editable
PASS -> FAIL: gdb.mi/mi2-var-child.exp: is weird.int_ptr_ptr.*int_ptr_ptr.**int_ptr_ptr editable
PASS -> FAIL: gdb.mi/mi2-var-child.exp: is weird.s2 editable
PASS -> FAIL: gdb.mi/mi2-var-child.exp: is weird.u1 editable
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.g
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.h
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.h.*h
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.h.*h.**h
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.0
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.3
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.4
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.5
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.6
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.7
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.8
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.9
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.char_ptr.*char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.character
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.integer
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.signed_character
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.unsigned_integer
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.d
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.e
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.f
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.c
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.c.*c
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.3_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.3_anonymous.a2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.3_anonymous.a2.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.3_anonymous.b2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.3_anonymous.b2.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.a1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.a1.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.b1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.b1.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u1.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u1.a.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u1.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u1.b.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u2.a3
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u2.a3.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u2.b3
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u2.b3.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for v1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for v1.1_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for v1.1_anonymous.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for v1.2_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for v1.2_anonymous.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for v1.x
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.3_anonymous
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.3_anonymous.a2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.3_anonymous.a2.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.3_anonymous.b2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.3_anonymous.b2.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.a1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.a1.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.b1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.b1.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.u1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.u1.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.u1.a.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.u1.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.u1.b.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.u2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.u2.a3
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.u2.a3.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.u2.b3
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.u2.b3.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var21
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var21.ab
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var21.ab.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var21.ab.a.a
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var21.ab.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: path expression for var21.ab.b.b
PASS -> FAIL: gdb.mi/mi2-var-child.exp: run to 251
PASS -> FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_123 + 1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_123 + 4
PASS -> FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_123 + 5
PASS -> FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_123 + 6
PASS -> FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_123 + 7
PASS -> FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_123 + 8
PASS -> FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_nothing
PASS -> FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_nothing + 1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_snp0 + 1
PASS -> FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_snp0 + 2
PASS -> FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_snp0 + 3
PASS -> FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_snp0 + 4
PASS -> FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_snp0 + 5
PASS -> FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_snp0 + 6
PASS -> FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_snp0 + 7
PASS -> FAIL: gdb.mi/mi2-var-child.exp: step to line $line_dct_123
PASS -> FAIL: gdb.mi/mi2-var-child.exp: update all vars int_ptr_ptr and children changed
PASS -> FAIL: gdb.mi/mi2-var-child.exp: update all vars psnp->char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: update all vars psnp->long_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: update all vars psnp->next->char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: update all vars psnp->next->next->char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: update all vars psnp->next->next->long_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: update all vars struct_declarations.char_ptr
PASS -> FAIL: gdb.mi/mi2-var-child.exp: update all vars struct_declarations.func_ptr changed
PASS -> FAIL: gdb.mi/mi2-var-child.exp: update all vars struct_declarations.integer
PASS -> FAIL: gdb.mi/mi2-var-child.exp: update all vars struct_declarations.long_array.0 changed
PASS -> FAIL: gdb.mi/mi2-var-child.exp: update all vars struct_declarations.long_array.1 changed
PASS -> FAIL: gdb.mi/mi2-var-child.exp: update all vars struct_declarations.long_array.2 changed
PASS -> FAIL: gdb.mi/mi2-var-child.exp: update all vars struct_declarations.long_array.3-9 changed
new FAIL: gdb.mi/mi2-var-child.exp: wait for stop
PASS -> UNRESOLVED: gdb.mi/new-ui-mi-sync.exp: sync-command=continue: breakpoint at main
PASS -> UNRESOLVED: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint at main
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit 2
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": set breakpoint
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": set x
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2
PASS -> UNRESOLVED: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint at main
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit 2
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": set breakpoint
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": set x
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2
new FAIL: gdb.modula2/max-depth.exp:
new FAIL: gdb.modula2/max-depth.exp: can't run to main
new FAIL: gdb.modula2/unbounded-array.exp:
PASS -> FAIL: gdb.multi/base.exp: 'info functions commonfun' in inferior 1
PASS -> FAIL: gdb.multi/base.exp: 'info functions commonfun' in inferior 3
new FAIL: gdb.multi/base.exp:
PASS -> FAIL: gdb.multi/base.exp: add inferior 3 with -exec goodbye
PASS -> FAIL: gdb.multi/base.exp: list commonfun in goodbye
PASS -> FAIL: gdb.multi/base.exp: list commonfun in hello
PASS -> FAIL: gdb.multi/base.exp: load hangout file in inferior 2
PASS -> FAIL: gdb.multi/base.exp: print gglob
PASS -> FAIL: gdb.multi/base.exp: print glob
PASS -> FAIL: gdb.multi/base.exp: print hglob
new FAIL: gdb.multi/info-threads.exp:
new FAIL: gdb.multi/remove-inferiors.exp:
new FAIL: gdb.multi/remove-inferiors.exp: couldn't run to main.
PASS -> FAIL: gdb.multi/remove-inferiors.exp: load binary
new FAIL: gdb.multi/watchpoint-multi-exit.exp: dispose=detach:
new FAIL: gdb.multi/watchpoint-multi-exit.exp: dispose=detach: can't run to child_function
new FAIL: gdb.multi/watchpoint-multi-exit.exp: dispose=exit:
new FAIL: gdb.multi/watchpoint-multi-exit.exp: dispose=exit: can't run to child_function
new FAIL: gdb.multi/watchpoint-multi-exit.exp: dispose=kill:
new FAIL: gdb.multi/watchpoint-multi-exit.exp: dispose=kill: can't run to child_function
new FAIL: gdb.opt/clobbered-registers-O2.exp:
new FAIL: gdb.opt/clobbered-registers-O2.exp: run to start_sequence
new FAIL: gdb.opt/inline-break.exp:
PASS -> FAIL: gdb.opt/inline-break.exp: break func1
PASS -> FAIL: gdb.opt/inline-break.exp: break func2
PASS -> FAIL: gdb.opt/inline-break.exp: break func3b
PASS -> FAIL: gdb.opt/inline-break.exp: break func4b
PASS -> FAIL: gdb.opt/inline-break.exp: break func5b
PASS -> FAIL: gdb.opt/inline-break.exp: break func6b
PASS -> FAIL: gdb.opt/inline-break.exp: break func7b
PASS -> FAIL: gdb.opt/inline-break.exp: break func8b
PASS -> FAIL: gdb.opt/inline-break.exp: info break 1
PASS -> FAIL: gdb.opt/inline-break.exp: info break 2
PASS -> FAIL: gdb.opt/inline-break.exp: info break 3
PASS -> FAIL: gdb.opt/inline-break.exp: info break 4
PASS -> FAIL: gdb.opt/inline-break.exp: info break 5
PASS -> FAIL: gdb.opt/inline-break.exp: info break 6
PASS -> FAIL: gdb.opt/inline-break.exp: info break 7
PASS -> FAIL: gdb.opt/inline-break.exp: info break 8
PASS -> FAIL: gdb.opt/inline-break.exp: print func1
PASS -> FAIL: gdb.opt/inline-break.exp: print func2
new FAIL: gdb.opt/inline-bt.exp:
new UNRESOLVED: gdb.opt/inline-bt.exp: skipping inline frame tests
new FAIL: gdb.opt/inline-cmds.exp:
new UNRESOLVED: gdb.opt/inline-cmds.exp: skipping inline frame tests
new FAIL: gdb.opt/inline-locals.exp:
new UNRESOLVED: gdb.opt/inline-locals.exp: inline-bt.exp
new FAIL: gdb.opt/solib-intra-step.exp:
new FAIL: gdb.python/lib-types.exp:
new FAIL: gdb.python/lib-types.exp: can't run to main
new FAIL: gdb.python/py-arch.exp:
new FAIL: gdb.python/py-as-string.exp:
new FAIL: gdb.python/py-as-string.exp: couldn't run to main.
new FAIL: gdb.python/py-bad-printers.exp:
new FAIL: gdb.python/py-bad-printers.exp: can't run to main
new FAIL: gdb.python/py-block.exp:
new FAIL: gdb.python/py-block.exp: can't run to main
new FAIL: gdb.python/py-breakpoint-create-fail.exp:
new FAIL: gdb.python/py-breakpoint.exp:
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_address: eval address of main
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_address: long value of main
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_address: python gdb.Breakpoint
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_basic:
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_basic: cannot run to main.
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_cond_and_cmds:
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_cond_and_cmds: cannot run to main.
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_deletion:
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_deletion: cannot run to main.
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs:
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: cannot run to main.
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_events:
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_events: check for breakpoint_created event
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_events: check for breakpoint_deleted event
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_events: check for breakpoint_modified event
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_events: delete 1
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_events: disable 1
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_events: setting breakpoint at 52
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_explicit_loc:
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_explicit_loc: cannot run to main.
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal:
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: cannot run to main.
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_invisible:
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_invisible: cannot run to main.
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_qualified:
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_qualified: cannot run to main.
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_temporary:
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_temporary: cannot run to main.
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints:
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: cannot run to main.
new FAIL: gdb.python/py-caller-is.exp:
new FAIL: gdb.python/py-cmd.exp:
new FAIL: gdb.python/py-cmd.exp: cannot run to main.
new FAIL: gdb.python/py-evthreads.exp:
PASS -> FAIL: gdb.python/py-evthreads.exp: continue thread 1
PASS -> FAIL: gdb.python/py-evthreads.exp: reached breakpoint 2
PASS -> FAIL: gdb.python/py-evthreads.exp: reached breakpoint 3
PASS -> FAIL: gdb.python/py-evthreads.exp: run to breakpoint 1
new FAIL: gdb.python/py-evthreads.exp: setting breakpoint at main
new FAIL: gdb.python/py-evthreads.exp: setting breakpoint at thread2
new FAIL: gdb.python/py-evthreads.exp: setting breakpoint at thread3
PASS -> FAIL: gdb.python/py-evthreads.exp: thread 2
PASS -> FAIL: gdb.python/py-evthreads.exp: thread 3
PASS -> FAIL: gdb.python/py-evthreads.exp: thread 3 was signaled
new FAIL: gdb.python/py-explore-cc.exp:
new FAIL: gdb.python/py-explore.exp:
new FAIL: gdb.python/py-finish-breakpoint.exp:
new FAIL: gdb.python/py-finish-breakpoint.exp: cannot run to main.
new FAIL: gdb.python/py-finish-breakpoint2.exp:
new FAIL: gdb.python/py-finish-breakpoint2.exp: cannot run to main.
new FAIL: gdb.python/py-format-string.exp: format_string: lang_c:
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option 12
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option format='xd'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option invalid=True
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option raw='hello'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option raw=True, format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option unions: unions=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_string: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option pretty_structs=True, unions=False
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option symbols=False, format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option array_indexes=True, pretty_arrays=True
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_enum: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: another_point: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: disable pretty-printer '' test_lookup_function: a_point_t with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: disable pretty-printer '' test_lookup_function: a_point_t with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: disable pretty-printer '' test_lookup_function: a_point_t with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: disable pretty-printer '' test_lookup_function: a_point_t with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: disable pretty-printer '' test_lookup_function: a_point_t: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: disable pretty-printer '' test_lookup_function: a_point_t: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='d': a_big_string with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='d': a_binary_string with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='d': a_binary_string_array with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='d': a_point_t with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='d': a_point_t_pointer with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='d': a_string with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='d': a_struct_with_union with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='d': a_symbol_pointer with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='d': an_array with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='d': an_array_with_repetition with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='d': an_enum with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='d': another_point with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='x': a_big_string with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='x': a_binary_string with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='x': a_binary_string_array with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='x': a_point_t with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='x': a_point_t_pointer with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='x': a_string with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='x': a_struct_with_union with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='x': a_symbol_pointer with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='x': an_array with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='x': an_array_with_repetition with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='x': an_enum with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: format='x': another_point with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_depth=-1: a_struct_with_union with option max_depth=-1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_depth=0: a_struct_with_union with option max_depth=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_depth=1: a_struct_with_union with option max_depth=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_depth=2: a_struct_with_union with option max_depth=2
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=0: a_big_string with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=0: a_binary_string with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=0: a_binary_string_array with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=0: a_point_t with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=0: a_point_t_pointer with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=0: a_string with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=0: a_struct_with_union with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=0: a_symbol_pointer with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=0: an_array with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=0: an_array_with_repetition with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=0: an_enum with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=0: another_point with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=1000: a_big_string with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=1000: a_binary_string with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=1000: a_binary_string_array with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=1000: a_point_t with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=1000: a_point_t_pointer with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=1000: a_string with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=1000: a_struct_with_union with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=1000: a_symbol_pointer with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=1000: an_array with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=1000: an_array_with_repetition with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=1000: an_enum with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=1000: another_point with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=200: a_big_string with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=200: a_binary_string with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=200: a_binary_string_array with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=200: a_point_t with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=200: a_point_t_pointer with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=200: a_string with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=200: a_struct_with_union with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=200: a_symbol_pointer with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=200: an_array with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=200: an_array_with_repetition with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=200: an_enum with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=200: another_point with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=3: a_big_string with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=3: a_binary_string with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=3: a_binary_string_array with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=3: a_point_t with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=3: a_point_t_pointer with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=3: a_string with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=3: a_struct_with_union with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=3: a_symbol_pointer with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=3: an_array with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=3: an_array_with_repetition with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=3: an_enum with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=3: another_point with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=0: a_big_string with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=0: a_binary_string with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=0: a_binary_string_array with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=0: a_point_t with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=0: a_point_t_pointer with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=0: a_string with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=0: a_struct_with_union with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=0: a_symbol_pointer with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=0: an_array with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=0: an_array_with_repetition with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=0: an_enum with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=0: another_point with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=100: a_big_string with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=100: a_binary_string with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=100: a_binary_string_array with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=100: a_point_t with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=100: a_point_t_pointer with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=100: a_string with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=100: a_struct_with_union with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=100: a_symbol_pointer with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=100: an_array with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=100: an_array_with_repetition with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=100: an_enum with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=100: another_point with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=10: a_big_string with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=10: a_binary_string with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=10: a_binary_string_array with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=10: a_point_t with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=10: a_point_t_pointer with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=10: a_string with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=10: a_struct_with_union with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=10: a_symbol_pointer with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=10: an_array with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=10: an_array_with_repetition with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=10: an_enum with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=10: another_point with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=1: a_big_string with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=1: a_binary_string with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=1: a_binary_string_array with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=1: a_point_t with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=1: a_point_t_pointer with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=1: a_string with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=1: a_struct_with_union with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=1: a_symbol_pointer with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=1: an_array with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=1: an_array_with_repetition with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=1: an_enum with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=1: another_point with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=3: a_big_string with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=3: a_binary_string with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=3: a_binary_string_array with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=3: a_point_t with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=3: a_point_t_pointer with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=3: a_string with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=3: a_struct_with_union with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=3: a_symbol_pointer with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=3: an_array with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=3: an_array_with_repetition with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=3: an_enum with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=3: another_point with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array on: an_array with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array on: an_array with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array on: an_array: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array on: an_array: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array on: an_array_with_repetition with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array on: an_array_with_repetition with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array on: an_array_with_repetition: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array on: an_array_with_repetition: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array-indexes on: an_array with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array-indexes on: an_array with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array-indexes on: an_array: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array-indexes on: an_array: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array-indexes on: an_array_with_repetition with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array-indexes on: an_array_with_repetition with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array-indexes on: an_array_with_repetition: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array-indexes on: an_array_with_repetition: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print elements 4: a_binary_string with option
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print elements 4: a_binary_string_array with option
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print elements 4: a_string with option
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print elements 4: an_array_with_repetition with option
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print repeats 1: an_array_with_repetition with option
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print structs on: a_struct_with_union with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print structs on: a_struct_with_union with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print structs on: a_struct_with_union: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print structs on: a_struct_with_union: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print symbol off: a_symbol_pointer with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print symbol off: a_symbol_pointer with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print symbol off: a_symbol_pointer: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print symbol off: a_symbol_pointer: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print union off: a_struct_with_union with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print union off: a_struct_with_union with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print union off: a_struct_with_union: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print union off: a_struct_with_union: str
new FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp:
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option deref_refs=True, static_members=False
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option 12
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option format='xd'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option invalid=True
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option raw='hello'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option raw=True, format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option unions: unions=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option deref_refs=True, actual_objects=True, raw=True
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option pretty_structs=True, unions=False
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option symbols=False, format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option array_indexes=True, pretty_arrays=True
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option deref_refs: deref_refs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option deref_refs: deref_refs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: disable pretty-printer '' test_lookup_function: a_point_t with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: disable pretty-printer '' test_lookup_function: a_point_t with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: disable pretty-printer '' test_lookup_function: a_point_t with option raw: raw=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: disable pretty-printer '' test_lookup_function: a_point_t with option raw: raw=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: disable pretty-printer '' test_lookup_function: a_point_t: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: disable pretty-printer '' test_lookup_function: a_point_t: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': a_base_ref with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': a_big_string with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': a_binary_string with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': a_binary_string_array with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': a_point_t with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': a_point_t_pointer with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': a_point_t_ref with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': a_string with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': a_struct_with_union with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': a_symbol_pointer with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': an_array with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': an_array_with_repetition with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': an_enum with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': another_point with option format='d'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': a_base_ref with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': a_big_string with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': a_binary_string with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': a_binary_string_array with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': a_point_t with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': a_point_t_pointer with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': a_point_t_ref with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': a_string with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': a_struct_with_union with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': a_symbol_pointer with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': an_array with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': an_array_with_repetition with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': an_enum with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': another_point with option format='x'
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_depth=-1: a_struct_with_union with option max_depth=-1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_depth=0: a_struct_with_union with option max_depth=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_depth=1: a_struct_with_union with option max_depth=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_depth=2: a_struct_with_union with option max_depth=2
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: a_base_ref with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: a_big_string with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: a_binary_string with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: a_binary_string_array with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: a_point_t with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: a_point_t_pointer with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: a_point_t_ref with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: a_string with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: a_struct_with_union with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: a_symbol_pointer with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: an_array with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: an_array_with_repetition with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: an_enum with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: another_point with option max_elements=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: a_base_ref with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: a_big_string with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: a_binary_string with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: a_binary_string_array with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: a_point_t with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: a_point_t_pointer with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: a_point_t_ref with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: a_string with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: a_struct_with_union with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: a_symbol_pointer with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: an_array with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: an_array_with_repetition with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: an_enum with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: another_point with option max_elements=1000
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: a_base_ref with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: a_big_string with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: a_binary_string with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: a_binary_string_array with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: a_point_t with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: a_point_t_pointer with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: a_point_t_ref with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: a_string with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: a_struct_with_union with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: a_symbol_pointer with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: an_array with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: an_array_with_repetition with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: an_enum with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: another_point with option max_elements=200
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: a_base_ref with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: a_big_string with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: a_binary_string with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: a_binary_string_array with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: a_point_t with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: a_point_t_pointer with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: a_point_t_ref with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: a_string with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: a_struct_with_union with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: a_symbol_pointer with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: an_array with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: an_array_with_repetition with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: an_enum with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: another_point with option max_elements=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: a_base_ref with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: a_big_string with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: a_binary_string with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: a_binary_string_array with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: a_point_t with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: a_point_t_pointer with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: a_point_t_ref with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: a_string with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: a_struct_with_union with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: a_symbol_pointer with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: an_array with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: an_array_with_repetition with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: an_enum with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: another_point with option repeat_threshold=0
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: a_base_ref with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: a_big_string with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: a_binary_string with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: a_binary_string_array with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: a_point_t with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: a_point_t_pointer with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: a_point_t_ref with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: a_string with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: a_struct_with_union with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: a_symbol_pointer with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: an_array with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: an_array_with_repetition with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: an_enum with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: another_point with option repeat_threshold=100
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: a_base_ref with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: a_big_string with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: a_binary_string with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: a_binary_string_array with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: a_point_t with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: a_point_t_pointer with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: a_point_t_ref with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: a_string with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: a_struct_with_union with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: a_symbol_pointer with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: an_array with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: an_array_with_repetition with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: an_enum with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: another_point with option repeat_threshold=10
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: a_base_ref with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: a_big_string with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: a_binary_string with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: a_binary_string_array with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: a_point_t with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: a_point_t_pointer with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: a_point_t_ref with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: a_string with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: a_struct_with_union with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: a_symbol_pointer with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: an_array with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: an_array_with_repetition with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: an_enum with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: another_point with option repeat_threshold=1
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: a_base_ref with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: a_big_string with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: a_binary_string with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: a_binary_string_array with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: a_point_t with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: a_point_t_pointer with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: a_point_t_ref with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: a_string with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: a_struct_with_union with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: a_symbol_pointer with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: an_array with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: an_array_with_repetition with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: an_enum with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: another_point with option repeat_threshold=3
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array on: an_array with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array on: an_array with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array on: an_array: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array on: an_array: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array on: an_array_with_repetition with option pretty_arrays: pretty_arrays=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array on: an_array_with_repetition with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array on: an_array_with_repetition: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array on: an_array_with_repetition: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array-indexes on: an_array with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array-indexes on: an_array with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array-indexes on: an_array: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array-indexes on: an_array: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array-indexes on: an_array_with_repetition with option array_indexes: array_indexes=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array-indexes on: an_array_with_repetition with option array_indexes: array_indexes=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array-indexes on: an_array_with_repetition: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array-indexes on: an_array_with_repetition: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print elements 4: a_binary_string with option
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print elements 4: a_binary_string_array with option
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print elements 4: a_string with option
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print elements 4: an_array_with_repetition with option
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print object on: a_base_ref with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print object on: a_base_ref with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print object on: a_base_ref: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print object on: a_base_ref: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print object on: a_point_t_ref with option actual_objects: actual_objects=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print object on: a_point_t_ref with option actual_objects: actual_objects=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print object on: a_point_t_ref: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print object on: a_point_t_ref: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print repeats 1: an_array_with_repetition with option
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print static-members off: a_base_ref with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print static-members off: a_base_ref with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print static-members off: a_base_ref: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print static-members off: a_base_ref: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print static-members off: a_point_t_ref with option static_members: static_members=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print static-members off: a_point_t_ref with option static_members: static_members=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print static-members off: a_point_t_ref: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print static-members off: a_point_t_ref: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print structs on: a_struct_with_union with option pretty_structs: pretty_structs=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print structs on: a_struct_with_union with option pretty_structs: pretty_structs=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print structs on: a_struct_with_union: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print structs on: a_struct_with_union: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print symbol off: a_symbol_pointer with option symbols: symbols=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print symbol off: a_symbol_pointer with option symbols: symbols=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print symbol off: a_symbol_pointer: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print symbol off: a_symbol_pointer: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print union off: a_struct_with_union with option unions: unions=false
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print union off: a_struct_with_union with option unions: unions=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print union off: a_struct_with_union: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print union off: a_struct_with_union: str
new FAIL: gdb.python/py-frame-args.exp:
new FAIL: gdb.python/py-frame-inline.exp:
new FAIL: gdb.python/py-frame-inline.exp: can't run to function f
new FAIL: gdb.python/py-frame.exp:
new FAIL: gdb.python/py-frame.exp: can't run to main
new UNRESOLVED: gdb.python/py-framefilter-mi.exp: python support is disabled
new FAIL: gdb.python/py-framefilter.exp:
PASS -> FAIL: gdb.python/py-framefilter.exp: Test auto-load had loaded python scripts
new FAIL: gdb.python/py-inferior.exp:
new FAIL: gdb.python/py-inferior.exp: can't run to main
new FAIL: gdb.python/py-infthread.exp:
new FAIL: gdb.python/py-infthread.exp: can't run to main
new FAIL: gdb.python/py-lazy-string.exp:
PASS -> FAIL: gdb.python/py-mi-events.exp: file-exec-and-symbols operation
PASS -> FAIL: gdb.python/py-mi-objfile.exp: file-exec-and-symbols operation
PASS -> FAIL: gdb.python/py-mi-var-info-path-expression.exp: -var-create c1 * &c1
PASS -> FAIL: gdb.python/py-mi-var-info-path-expression.exp: -var-info-path-expression c1
PASS -> FAIL: gdb.python/py-mi-var-info-path-expression.exp: -var-list-children c1
PASS -> FAIL: gdb.python/py-mi-var-info-path-expression.exp: -var-list-children c1.car
PASS -> FAIL: gdb.python/py-mi-var-info-path-expression.exp: -var-list-children c1.car.atom
PASS -> FAIL: gdb.python/py-mi-var-info-path-expression.exp: -var-list-children c1.cdr
PASS -> UNRESOLVED: gdb.python/py-mi-var-info-path-expression.exp: breakpoint at main
PASS -> FAIL: gdb.python/py-mi-var-info-path-expression.exp: run to 61
new FAIL: gdb.python/py-mi-var-info-path-expression.exp: wait for stop
new UNRESOLVED: gdb.python/py-mi.exp: python support is disabled
new FAIL: gdb.python/py-nested-maps.exp:
new FAIL: gdb.python/py-objfile-script.exp:
PASS -> FAIL: gdb.python/py-objfile-script.exp: info auto-load python-scripts
new FAIL: gdb.python/py-objfile.exp:
new FAIL: gdb.python/py-objfile.exp: can't run to main
new FAIL: gdb.python/py-pp-integral.exp:
new FAIL: gdb.python/py-pp-maint.exp:
new FAIL: gdb.python/py-pp-maint.exp: can't run to main
new FAIL: gdb.python/py-pp-re-notag.exp:
new FAIL: gdb.python/py-pp-registration.exp:
new FAIL: gdb.python/py-pp-registration.exp: can't run to main
new UNRESOLVED: gdb.python/py-prettyprint.exp:
new UNRESOLVED: gdb.python/py-prettyprint.exp: c++:
new FAIL: gdb.python/py-prettyprint.exp: c:
new FAIL: gdb.python/py-progspace.exp:
new FAIL: gdb.python/py-progspace.exp: can't run to main
PASS -> FAIL: gdb.python/py-progspace.exp: current progspace filename
new FAIL: gdb.python/py-rbreak.exp:
new FAIL: gdb.python/py-rbreak.exp: can't run to main
new FAIL: gdb.python/py-record-full.exp:
new FAIL: gdb.python/py-record-full.exp: can't run to main
new FAIL: gdb.python/py-recurse-unwind.exp:
new FAIL: gdb.python/py-recurse-unwind.exp: can't run to main
new FAIL: gdb.python/py-rvalue-ref-value-cc.exp:
new FAIL: gdb.python/py-section-script.exp:
PASS -> FAIL: gdb.python/py-section-script.exp: info auto-load python-scripts py-section-script
PASS -> FAIL: gdb.python/py-section-script.exp: verify scripts loaded
PASS -> FAIL: gdb.python/py-section-script.exp: verify scripts not loaded
new FAIL: gdb.python/py-shared.exp:
new FAIL: gdb.python/py-shared.exp: can't run to main
new FAIL: gdb.python/py-strfns.exp:
new FAIL: gdb.python/py-symbol.exp:
new FAIL: gdb.python/py-symbol.exp: can't run to main
PASS -> FAIL: gdb.python/py-symbol.exp: print
PASS -> FAIL: gdb.python/py-symbol.exp: print line number of qq
PASS -> FAIL: gdb.python/py-symbol.exp: print line number of rr
PASS -> FAIL: gdb.python/py-symbol.exp: print value of main
PASS -> FAIL: gdb.python/py-symbol.exp: print value of qq
PASS -> FAIL: gdb.python/py-symbol.exp: print value of rr
PASS -> FAIL: gdb.python/py-symbol.exp: print whether qq needs a frame
PASS -> FAIL: gdb.python/py-symbol.exp: print whether rr needs a frame
PASS -> FAIL: gdb.python/py-symbol.exp: test main_func.is_function
new FAIL: gdb.python/py-symtab.exp:
new FAIL: gdb.python/py-symtab.exp: can't run to main
new UNRESOLVED: gdb.python/py-template.exp:
new FAIL: gdb.python/py-thrhandle.exp:
new FAIL: gdb.python/py-thrhandle.exp: Get pthread_t type
PASS -> FAIL: gdb.python/py-thrhandle.exp: Pass overly large object to thread_from_handle
PASS -> FAIL: gdb.python/py-thrhandle.exp: Pass too small of an object to thread_from_handle
PASS -> FAIL: gdb.python/py-thrhandle.exp: TypeError when passing a symbol object to thread_from_handle
PASS -> FAIL: gdb.python/py-thrhandle.exp: breakpoint on after_mc_barrier
PASS -> FAIL: gdb.python/py-thrhandle.exp: breakpoint on do_something
PASS -> FAIL: gdb.python/py-thrhandle.exp: delete after_mc_barrier breakpoint
PASS -> FAIL: gdb.python/py-thrhandle.exp: info threads
PASS -> FAIL: gdb.python/py-thrhandle.exp: print thread for bogus handle thrs[3]
PASS -> FAIL: gdb.python/py-thrhandle.exp: print thread for bogus handle thrs[4]
PASS -> FAIL: gdb.python/py-thrhandle.exp: print thread id for thrs[0]
PASS -> FAIL: gdb.python/py-thrhandle.exp: print thread id for thrs[1]
PASS -> FAIL: gdb.python/py-thrhandle.exp: print thread id for thrs[2]
PASS -> FAIL: gdb.python/py-thrhandle.exp: run to after_mc_barrier
PASS -> FAIL: gdb.python/py-thrhandle.exp: run to do_something
PASS -> FAIL: gdb.python/py-thrhandle.exp: thread 0: fetch thread handle from inferior
PASS -> FAIL: gdb.python/py-thrhandle.exp: thread 0: fetch thread handle from thread
PASS -> FAIL: gdb.python/py-thrhandle.exp: thread 0: verify that handles are the same
PASS -> FAIL: gdb.python/py-thrhandle.exp: thread 1: fetch thread handle from inferior
PASS -> FAIL: gdb.python/py-thrhandle.exp: thread 1: fetch thread handle from thread
PASS -> FAIL: gdb.python/py-thrhandle.exp: thread 1: verify that handles are the same
PASS -> FAIL: gdb.python/py-thrhandle.exp: thread 2: fetch thread handle from inferior
PASS -> FAIL: gdb.python/py-thrhandle.exp: thread 2: fetch thread handle from thread
PASS -> FAIL: gdb.python/py-thrhandle.exp: thread 2: verify that handles are the same
new FAIL: gdb.python/py-type.exp:
PASS -> FAIL: gdb.python/py-type.exp: lang_c: continue to breakpoint: break to inspect struct and array.
new FAIL: gdb.python/py-type.exp: lang_c: setting breakpoint at 117
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_enum: Check enum fields items list
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_enum: Check num fields iteration over values
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_enum: check enum field lookup by name
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_enum: check enum field[0] name
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_enum: check enum field[1]name
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_enum: check the number of enum fields
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_enum: check the number of type fields
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_enum: extract type fields from e
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: Check fields items list
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: Check fields iteration over values
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: Check ss_fields[0].name
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: Check ss_fields[1].name
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: Check that dir includes name
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: c typedef field list
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: cast to array with one argument
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: cast to array with two arguments
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: cast to vector with one argument
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: cast to vector with two arguments
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: check array field type
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: check field name exists test
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: check field name nonexists test
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: check fields lookup by name
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: check length of ss_fields
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: check number of fields
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: check structure field a name
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: check structure field b name
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: check the number of fields
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: check type.objfile
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: get fields from ss.type
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: get fields from st.type
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: init ss
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: python print
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: set vec1
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: set vec2
PASS -> FAIL: gdb.python/py-type.exp: lang_c: test_fields: set vec3
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: continue to breakpoint: break to inspect struct and array.
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: get type of temvar
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: python print
new UNRESOLVED: gdb.python/py-type.exp: lang_cpp: setting breakpoint at 117
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_base_class: check base class
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_base_class: check the number of fields
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_base_class: extract type fields from d
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_base_class: get value
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_enum: Check enum fields items list
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_enum: Check num fields iteration over values
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_enum: check enum field lookup by name
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_enum: check enum field[0] name
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_enum: check enum field[1]name
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_enum: check the number of enum fields
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_enum: check the number of type fields
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_enum: extract type fields from e
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_enum: get value
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: Check fields items list
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: Check fields iteration over values
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: Check ss_fields[0].name
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: Check ss_fields[1].name
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: Check that dir includes name
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: c++ typedef field list
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: cast to array with one argument
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: cast to array with two arguments
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: cast to vector with one argument
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: cast to vector with two arguments
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: check array field type
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: check class field c name
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: check class field d name
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: check conversion to bool
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: check field name exists test
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: check field name nonexists test
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: check fields lookup by name
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: check length of ss_fields
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: check number of fields
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: check structure field a name
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: check structure field b name
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: check the number of fields
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: check type.objfile
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: get fields from c.type
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: get fields from ss.type
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: get fields from st.type
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: get value
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: init ss
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: python print
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: set vec1
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: set vec2
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: set vec3
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_range: on ranged type: check range high bound
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_range: on ranged type: check range low bound
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_range: on ranged type: get fields
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_range: on ranged type: get value
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_range: on ranged value: check correct tuple length
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_range: on ranged value: check range high bound
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_range: on ranged value: check range low bound
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_range: on ranged value: get value
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_range: on unranged value: check range for non ranged type.
PASS -> FAIL: gdb.python/py-type.exp: lang_cpp: test_range: on unranged value: get value
PASS -> FAIL: gdb.python/py-type.exp: python print
new FAIL: gdb.python/py-typeprint.exp:
new FAIL: gdb.python/py-typeprint.exp: basic test // parse failed
new FAIL: gdb.python/py-typeprint.exp: raw test // parse failed
PASS -> FAIL: gdb.python/py-typeprint.exp: whatis s
PASS -> FAIL: gdb.python/py-typeprint.exp: whatis with disabled printer
PASS -> FAIL: gdb.python/py-typeprint.exp: whatis with enabled printer
new FAIL: gdb.python/py-unwind-maint.exp:
new FAIL: gdb.python/py-unwind-maint.exp: can't run to main
new FAIL: gdb.python/py-unwind.exp:
new FAIL: gdb.python/py-value-cc.exp:
new FAIL: gdb.python/py-value.exp:
new FAIL: gdb.python/py-value.exp: can't run to main
PASS -> FAIL: gdb.python/py-value.exp: print evalue
PASS -> FAIL: gdb.python/py-value.exp: py-value in file.filename
PASS -> FAIL: gdb.python/py-value.exp: python evalue = gdb.history
PASS -> FAIL: gdb.python/py-value.exp: python gdb.objfiles
new FAIL: gdb.python/py-xmethods.exp:
new FAIL: gdb.python/python.exp:
new FAIL: gdb.python/python.exp: can't run to main
new FAIL: gdb.reverse/break-precsave.exp:
PASS -> FAIL: gdb.reverse/break-precsave.exp: BP at end of main
PASS -> FAIL: gdb.reverse/break-precsave.exp: continue to breakpoint: bar backward
PASS -> FAIL: gdb.reverse/break-precsave.exp: continue to breakpoint: bar forward after restore
PASS -> FAIL: gdb.reverse/break-precsave.exp: continue to breakpoint: bar forward again
PASS -> FAIL: gdb.reverse/break-precsave.exp: continue to breakpoint: foo backward
PASS -> FAIL: gdb.reverse/break-precsave.exp: continue to breakpoint: foo forward after restore
PASS -> FAIL: gdb.reverse/break-precsave.exp: continue to breakpoint: foo forward again
PASS -> FAIL: gdb.reverse/break-precsave.exp: end of record log
PASS -> FAIL: gdb.reverse/break-precsave.exp: go to end of main forward
PASS -> FAIL: gdb.reverse/break-precsave.exp: main backward
PASS -> FAIL: gdb.reverse/break-precsave.exp: reload precord save file
PASS -> FAIL: gdb.reverse/break-precsave.exp: run to end of main
PASS -> FAIL: gdb.reverse/break-precsave.exp: save process recfile
PASS -> FAIL: gdb.reverse/break-precsave.exp: set breakpoint on bar
PASS -> FAIL: gdb.reverse/break-precsave.exp: set breakpoint on foo
PASS -> FAIL: gdb.reverse/break-precsave.exp: set forward
PASS -> FAIL: gdb.reverse/break-precsave.exp: set reverse
PASS -> FAIL: gdb.reverse/break-precsave.exp: turn on process record
new FAIL: gdb.reverse/break-reverse.exp:
PASS -> FAIL: gdb.reverse/break-reverse.exp: continue to breakpoint: bar backward
PASS -> FAIL: gdb.reverse/break-reverse.exp: continue to breakpoint: bar forward again
PASS -> FAIL: gdb.reverse/break-reverse.exp: continue to breakpoint: bar forward, the first time
PASS -> FAIL: gdb.reverse/break-reverse.exp: continue to breakpoint: end forward, the first time
PASS -> FAIL: gdb.reverse/break-reverse.exp: continue to breakpoint: foo backward
PASS -> FAIL: gdb.reverse/break-reverse.exp: continue to breakpoint: foo forward again
PASS -> FAIL: gdb.reverse/break-reverse.exp: continue to breakpoint: foo forward, the first time
PASS -> FAIL: gdb.reverse/break-reverse.exp: end of record log
PASS -> FAIL: gdb.reverse/break-reverse.exp: main backward
PASS -> FAIL: gdb.reverse/break-reverse.exp: set breakpoint at end of main
PASS -> FAIL: gdb.reverse/break-reverse.exp: set breakpoint on bar
PASS -> FAIL: gdb.reverse/break-reverse.exp: set breakpoint on foo
PASS -> FAIL: gdb.reverse/break-reverse.exp: set forward
PASS -> FAIL: gdb.reverse/break-reverse.exp: set reverse
PASS -> FAIL: gdb.reverse/break-reverse.exp: turn on process record
new FAIL: gdb.reverse/consecutive-precsave.exp:
PASS -> FAIL: gdb.reverse/consecutive-precsave.exp: breakpoint at end of main
PASS -> FAIL: gdb.reverse/consecutive-precsave.exp: continue to breakpoint in foo
PASS -> FAIL: gdb.reverse/consecutive-precsave.exp: get breakpoint address for foo
PASS -> FAIL: gdb.reverse/consecutive-precsave.exp: reload precord save file
PASS -> FAIL: gdb.reverse/consecutive-precsave.exp: run to end of main
PASS -> FAIL: gdb.reverse/consecutive-precsave.exp: save process recfile
PASS -> FAIL: gdb.reverse/consecutive-precsave.exp: set bp, 2nd instr
PASS -> FAIL: gdb.reverse/consecutive-precsave.exp: set reverse execution
new FAIL: gdb.reverse/consecutive-precsave.exp: setting breakpoint at foo
PASS -> FAIL: gdb.reverse/consecutive-precsave.exp: stopped at bp in reverse, 1st instr
PASS -> FAIL: gdb.reverse/consecutive-precsave.exp: stopped at bp, 2nd instr
PASS -> FAIL: gdb.reverse/consecutive-precsave.exp: turn on process record
new FAIL: gdb.reverse/consecutive-reverse.exp:
PASS -> FAIL: gdb.reverse/consecutive-reverse.exp: continue to breakpoint in foo
PASS -> FAIL: gdb.reverse/consecutive-reverse.exp: get breakpoint address for foo
PASS -> FAIL: gdb.reverse/consecutive-reverse.exp: set bp, 2nd instr
PASS -> FAIL: gdb.reverse/consecutive-reverse.exp: set reverse execution
new FAIL: gdb.reverse/consecutive-reverse.exp: setting breakpoint at foo
PASS -> FAIL: gdb.reverse/consecutive-reverse.exp: stopped at bp in reverse, 1st instr
PASS -> FAIL: gdb.reverse/consecutive-reverse.exp: stopped at bp, 2nd instr
PASS -> FAIL: gdb.reverse/consecutive-reverse.exp: turn on process record
new FAIL: gdb.reverse/finish-precsave.exp:
PASS -> FAIL: gdb.reverse/finish-precsave.exp: breakpoint at end of main
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func backward
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func backward
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func backward
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_long_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_long_func backward
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func backward
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func backward
PASS -> FAIL: gdb.reverse/finish-precsave.exp: finish from char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: finish from int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: finish from long_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: finish from long_long_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: finish from short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: finish from void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: reload precord save file
PASS -> FAIL: gdb.reverse/finish-precsave.exp: reverse finish from char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: reverse finish from int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: reverse finish from long_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: reverse finish from long_long_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: reverse finish from short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: reverse finish from void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: run to end of main
PASS -> FAIL: gdb.reverse/finish-precsave.exp: save process recfile
PASS -> FAIL: gdb.reverse/finish-precsave.exp: set breakpoint on char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: set breakpoint on int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: set breakpoint on long_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: set breakpoint on long_long_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: set breakpoint on short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: set breakpoint on void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: set reverse execution
PASS -> FAIL: gdb.reverse/finish-precsave.exp: turn on process record
new FAIL: gdb.reverse/finish-reverse-bkpt.exp:
new FAIL: gdb.reverse/finish-reverse-bkpt.exp: can't run to main
new FAIL: gdb.reverse/finish-reverse.exp:
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func backward
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func backward
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func backward
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_long_func backward
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func backward
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func backward
PASS -> FAIL: gdb.reverse/finish-reverse.exp: finish from char_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: finish from int_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: finish from long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: finish from long_long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: finish from short_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: finish from void_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: reverse finish from char_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: reverse finish from int_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: reverse finish from long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: reverse finish from long_long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: reverse finish from short_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: reverse finish from void_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: set breakpoint on char_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: set breakpoint on int_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: set breakpoint on long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: set breakpoint on long_long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: set breakpoint on short_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: set breakpoint on void_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: set reverse execution
PASS -> FAIL: gdb.reverse/finish-reverse.exp: turn on process record
new FAIL: gdb.reverse/fstatat-reverse.exp:
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: continue to breakpoint: marker2
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: reverse to marker1
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: set breakpoint at marker1
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: set breakpoint at marker2
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: turn on process record
new FAIL: gdb.reverse/getresuid-reverse.exp:
PASS -> FAIL: gdb.reverse/getresuid-reverse.exp: check egid record
PASS -> FAIL: gdb.reverse/getresuid-reverse.exp: check euid record
PASS -> FAIL: gdb.reverse/getresuid-reverse.exp: check rgid record
PASS -> FAIL: gdb.reverse/getresuid-reverse.exp: check ruid record
PASS -> FAIL: gdb.reverse/getresuid-reverse.exp: check sgid record
PASS -> FAIL: gdb.reverse/getresuid-reverse.exp: check suid record
PASS -> FAIL: gdb.reverse/getresuid-reverse.exp: continue to breakpoint: marker2
PASS -> FAIL: gdb.reverse/getresuid-reverse.exp: reverse to marker1
PASS -> FAIL: gdb.reverse/getresuid-reverse.exp: set breakpoint at marker1
PASS -> FAIL: gdb.reverse/getresuid-reverse.exp: set breakpoint at marker2
PASS -> FAIL: gdb.reverse/getresuid-reverse.exp: turn on process record
new FAIL: gdb.reverse/insn-reverse.exp:
new FAIL: gdb.reverse/insn-reverse.exp: run to main
new FAIL: gdb.reverse/machinestate-precsave.exp:
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: auto var forward
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: auto var forward step-to
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: auto var forward-breakpoint
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: auto var reverse-breakpoint
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: auto var reverse-step
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: auto var step post-change
new FAIL: gdb.reverse/machinestate-precsave.exp: break 100
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: breakpoint at end of main
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: forward to 33
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: forward to 45
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: forward to 57
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: forward to 71
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: forward to 85
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: function static forward
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: function static forward step-to
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: function static forward-breakpoint
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: function static reverse-breakpoint
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: function static reverse-step
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: function static step post-change
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: go to end of main forward
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: module global forward past bp
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: module global forward step-to
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: module global forward-breakpoint
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: module global reverse-breakpoint
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: module global reverse-step to bp
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: module global step post-change
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: module static forward
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: module static forward step-to
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: module static forward-breakpoint
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: module static reverse-breakpoint
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: module static reverse-step
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: module static step post-change
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: register var forward step-to
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: register var forward-breakpoint
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: register var reverse step-to
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: register var reverse-breakpoint
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: register var step post-change, first time
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: register var step post-change, second time
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: reload prec save file
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: reverse to 33
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: reverse to 45
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: reverse to 57
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: reverse to 71
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: reverse to 85
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: reverse to main
new FAIL: gdb.reverse/machinestate-precsave.exp: reverse-step
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: run to end of main
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: save process recfile
new FAIL: gdb.reverse/machinestate-precsave.exp: step
new FAIL: gdb.reverse/machinestate-precsave.exp: tbreak 33
new FAIL: gdb.reverse/machinestate-precsave.exp: tbreak 45
new FAIL: gdb.reverse/machinestate-precsave.exp: tbreak 57
new FAIL: gdb.reverse/machinestate-precsave.exp: tbreak 71
new FAIL: gdb.reverse/machinestate-precsave.exp: tbreak 85
new FAIL: gdb.reverse/machinestate-precsave.exp: tbreak 94
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: turn on process record
new FAIL: gdb.reverse/machinestate.exp:
PASS -> FAIL: gdb.reverse/machinestate.exp: auto var forward
PASS -> FAIL: gdb.reverse/machinestate.exp: auto var forward step-to
PASS -> FAIL: gdb.reverse/machinestate.exp: auto var forward-breakpoint
PASS -> FAIL: gdb.reverse/machinestate.exp: auto var reverse-breakpoint
PASS -> FAIL: gdb.reverse/machinestate.exp: auto var reverse-step
PASS -> FAIL: gdb.reverse/machinestate.exp: auto var step post-change
new FAIL: gdb.reverse/machinestate.exp: break 100
PASS -> FAIL: gdb.reverse/machinestate.exp: continue to breakpoint: end of main
PASS -> FAIL: gdb.reverse/machinestate.exp: forward to 33
PASS -> FAIL: gdb.reverse/machinestate.exp: forward to 45
PASS -> FAIL: gdb.reverse/machinestate.exp: forward to 57
PASS -> FAIL: gdb.reverse/machinestate.exp: forward to 71
PASS -> FAIL: gdb.reverse/machinestate.exp: forward to 85
PASS -> FAIL: gdb.reverse/machinestate.exp: function static forward
PASS -> FAIL: gdb.reverse/machinestate.exp: function static forward step-to
PASS -> FAIL: gdb.reverse/machinestate.exp: function static forward-breakpoint
PASS -> FAIL: gdb.reverse/machinestate.exp: function static reverse-breakpoint
PASS -> FAIL: gdb.reverse/machinestate.exp: function static reverse-step
PASS -> FAIL: gdb.reverse/machinestate.exp: function static step post-change
PASS -> FAIL: gdb.reverse/machinestate.exp: module global forward past bp
PASS -> FAIL: gdb.reverse/machinestate.exp: module global forward step-to
PASS -> FAIL: gdb.reverse/machinestate.exp: module global forward-breakpoint
PASS -> FAIL: gdb.reverse/machinestate.exp: module global reverse-breakpoint
PASS -> FAIL: gdb.reverse/machinestate.exp: module global reverse-step to bp
PASS -> FAIL: gdb.reverse/machinestate.exp: module global step post-change
PASS -> FAIL: gdb.reverse/machinestate.exp: module static forward
PASS -> FAIL: gdb.reverse/machinestate.exp: module static forward step-to
PASS -> FAIL: gdb.reverse/machinestate.exp: module static forward-breakpoint
PASS -> FAIL: gdb.reverse/machinestate.exp: module static reverse-breakpoint
PASS -> FAIL: gdb.reverse/machinestate.exp: module static reverse-step
PASS -> FAIL: gdb.reverse/machinestate.exp: module static step post-change
PASS -> FAIL: gdb.reverse/machinestate.exp: register var forward step-to
PASS -> FAIL: gdb.reverse/machinestate.exp: register var forward-breakpoint
PASS -> FAIL: gdb.reverse/machinestate.exp: register var reverse step-to, first time
PASS -> FAIL: gdb.reverse/machinestate.exp: register var reverse-breakpoint
PASS -> FAIL: gdb.reverse/machinestate.exp: register var step post-change
PASS -> FAIL: gdb.reverse/machinestate.exp: register var step post-change, second time
PASS -> FAIL: gdb.reverse/machinestate.exp: reverse to 33
PASS -> FAIL: gdb.reverse/machinestate.exp: reverse to 45
PASS -> FAIL: gdb.reverse/machinestate.exp: reverse to 57
PASS -> FAIL: gdb.reverse/machinestate.exp: reverse to 71
PASS -> FAIL: gdb.reverse/machinestate.exp: reverse to 85
PASS -> FAIL: gdb.reverse/machinestate.exp: reverse to main
new FAIL: gdb.reverse/machinestate.exp: reverse-step
new FAIL: gdb.reverse/machinestate.exp: step
new FAIL: gdb.reverse/machinestate.exp: tbreak 33
new FAIL: gdb.reverse/machinestate.exp: tbreak 45
new FAIL: gdb.reverse/machinestate.exp: tbreak 57
new FAIL: gdb.reverse/machinestate.exp: tbreak 71
new FAIL: gdb.reverse/machinestate.exp: tbreak 85
new FAIL: gdb.reverse/machinestate.exp: tbreak 94
PASS -> FAIL: gdb.reverse/machinestate.exp: turn on process record
new FAIL: gdb.reverse/next-reverse-bkpt-over-sr.exp:
new FAIL: gdb.reverse/next-reverse-bkpt-over-sr.exp: can't run to main
new FAIL: gdb.reverse/pipe-reverse.exp:
PASS -> FAIL: gdb.reverse/pipe-reverse.exp: check pipe record
PASS -> FAIL: gdb.reverse/pipe-reverse.exp: continue to breakpoint: marker2
PASS -> FAIL: gdb.reverse/pipe-reverse.exp: reverse to marker1
PASS -> FAIL: gdb.reverse/pipe-reverse.exp: set breakpoint at marker1
PASS -> FAIL: gdb.reverse/pipe-reverse.exp: set breakpoint at marker2
PASS -> FAIL: gdb.reverse/pipe-reverse.exp: turn on process record
new FAIL: gdb.reverse/readv-reverse.exp:
PASS -> FAIL: gdb.reverse/readv-reverse.exp: check readv record for buf[0]
PASS -> FAIL: gdb.reverse/readv-reverse.exp: check readv record for buf[1]
PASS -> FAIL: gdb.reverse/readv-reverse.exp: check readv record for buf[2]
PASS -> FAIL: gdb.reverse/readv-reverse.exp: check readv record for buf[3]
PASS -> FAIL: gdb.reverse/readv-reverse.exp: continue to breakpoint: marker2
PASS -> FAIL: gdb.reverse/readv-reverse.exp: reverse to marker1
PASS -> FAIL: gdb.reverse/readv-reverse.exp: set breakpoint at marker1
PASS -> FAIL: gdb.reverse/readv-reverse.exp: set breakpoint at marker2
PASS -> FAIL: gdb.reverse/readv-reverse.exp: turn on process record
new FAIL: gdb.reverse/recvmsg-reverse.exp:
PASS -> FAIL: gdb.reverse/recvmsg-reverse.exp: check recvmsg record - cmsg
PASS -> FAIL: gdb.reverse/recvmsg-reverse.exp: check recvmsg record - rdata
PASS -> FAIL: gdb.reverse/recvmsg-reverse.exp: check recvmsg record - rmsg.msg_controllen
PASS -> FAIL: gdb.reverse/recvmsg-reverse.exp: check recvmsg record - rmsg.msg_flags
PASS -> FAIL: gdb.reverse/recvmsg-reverse.exp: continue to breakpoint: marker2
PASS -> FAIL: gdb.reverse/recvmsg-reverse.exp: reverse to marker1
PASS -> FAIL: gdb.reverse/recvmsg-reverse.exp: set breakpoint at marker1
PASS -> FAIL: gdb.reverse/recvmsg-reverse.exp: set breakpoint at marker2
PASS -> FAIL: gdb.reverse/recvmsg-reverse.exp: turn on process record
new FAIL: gdb.reverse/rerun-prec.exp:
PASS -> FAIL: gdb.reverse/rerun-prec.exp: restarting inferior
PASS -> FAIL: gdb.reverse/rerun-prec.exp: turn on process record
new FAIL: gdb.reverse/sigall-precsave.exp:
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: b handle_TERM
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_33
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_34
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_35
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_36
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_37
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_38
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_39
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_40
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_41
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_42
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_43
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_44
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_45
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_46
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_47
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_48
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_49
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_50
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_51
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_52
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_53
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_54
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_55
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_56
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_57
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_58
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_59
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_60
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_61
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_62
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_63
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_ABRT
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_ALRM
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_BUS
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_CHLD
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_CONT
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_DANGER
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_EMT
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_FPE
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_GRANT
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_HUP
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_ILL
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_IO
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_LOST
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_LWP
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_MSG
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_PHONE
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_PIPE
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_POLL
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_PRIO
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_PROF
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_PWR
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_QUIT
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_RETRACT
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_SAK
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_SEGV
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_SOUND
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_SYS
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_TERM
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_TSTP
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_TTIN
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_TTOU
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_URG
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_USR1
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_USR2
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_VTALRM
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_WAITING
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_WINCH
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_WIND
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_XCPU
new FAIL: gdb.reverse/sigall-precsave.exp: break *handle_XFSZ
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: breakpoint at end of main
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: continue to sigall exit
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: get signal TERM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reload precord save file
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_33
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_34
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_35
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_36
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_37
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_38
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_39
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_40
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_41
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_42
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_43
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_44
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_45
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_46
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_47
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_48
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_49
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_50
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_51
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_52
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_53
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_54
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_55
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_56
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_57
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_58
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_59
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_60
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_61
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_62
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_63
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_ABRT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_ALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_BUS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_CHLD
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_CONT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_DANGER
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_EMT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_FPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_GRANT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_HUP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_ILL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_IO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_LOST
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_LWP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_MSG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_PHONE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_PIPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_POLL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_PRIO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_PROF
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_PWR
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_QUIT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_RETRACT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_SAK
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_SEGV
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_SOUND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_SYS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_TERM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_TSTP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_TTIN
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_TTOU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_URG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_USR1
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_USR2
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_VTALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_WAITING
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_WINCH
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_WIND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_XCPU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_XFSZ
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 33
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 34
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 35
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 36
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 37
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 38
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 39
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 40
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 41
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 42
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 43
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 44
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 45
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 46
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 47
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 48
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 49
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 50
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 51
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 52
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 53
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 54
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 55
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 56
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 57
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 58
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 59
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 60
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 61
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 62
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 63
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of ABRT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of ALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of BUS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of CHLD
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of CONT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of DANGER
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of EMT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of FPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of GRANT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of HUP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of ILL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of IO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of LOST
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of LWP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of MSG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of PHONE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of PIPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of POLL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of PRIO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of PROF
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of PWR
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of QUIT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of RETRACT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of SAK
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of SEGV
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of SOUND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of SYS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of TERM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of TSTP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of TTIN
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of TTOU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of URG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of USR1
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of USR2
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of VTALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of WAITING
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of WINCH
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of WIND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of XCPU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of XFSZ
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: run to end of main
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: save process recfile
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal TERM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 33
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 34
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 35
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 36
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 37
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 38
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 39
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 40
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 41
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 42
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 43
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 44
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 45
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 46
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 47
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 48
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 49
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 50
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 51
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 52
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 53
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 54
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 55
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 56
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 57
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 58
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 59
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 60
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 61
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 62
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 63
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to ALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to BUS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to CHLD
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to CONT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to DANGER
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to EMT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to FPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to GRANT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to HUP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to ILL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to IO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to LOST
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to LWP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to MSG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to PHONE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to PIPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to POLL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to PRIO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to PROF
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to PWR
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to QUIT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to RETRACT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to SAK
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to SEGV
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to SOUND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to SYS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to TERM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to TSTP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to TTIN
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to TTOU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to URG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to USR1
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to USR2
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to VTALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to WAITING
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to WINCH
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to WIND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to XCPU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to XFSZ
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_33
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_34
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_35
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_36
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_37
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_38
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_39
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_40
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_41
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_42
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_43
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_44
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_45
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_46
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_47
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_48
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_49
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_50
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_51
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_52
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_53
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_54
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_55
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_56
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_57
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_58
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_59
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_60
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_61
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_62
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_63
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_ALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_BUS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_CHLD
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_CONT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_DANGER
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_EMT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_FPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_GRANT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_HUP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_ILL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_IO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_LOST
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_LWP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_MSG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_PHONE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_PIPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_POLL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_PRIO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_PROF
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_PWR
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_QUIT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_RETRACT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_SAK
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_SEGV
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_SOUND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_SYS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_TERM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_TSTP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_TTIN
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_TTOU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_URG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_USR1
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_USR2
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_VTALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_WAITING
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_WINCH
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_WIND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_XCPU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_XFSZ
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_33
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_34
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_35
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_36
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_37
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_38
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_39
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_40
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_41
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_42
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_43
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_44
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_45
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_46
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_47
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_48
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_49
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_50
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_51
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_52
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_53
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_54
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_55
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_56
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_57
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_58
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_59
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_60
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_61
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_62
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_63
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_ABRT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_ALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_BUS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_CHLD
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_CONT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_DANGER
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_EMT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_FPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_GRANT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_HUP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_ILL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_IO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_LOST
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_LWP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_MSG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_PHONE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_PIPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_POLL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_PRIO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_PROF
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_PWR
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_QUIT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_RETRACT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_SAK
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_SEGV
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_SOUND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_SYS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_TSTP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_TTIN
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_TTOU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_URG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_USR1
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_USR2
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_VTALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_WAITING
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_WINCH
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_WIND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_XCPU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_XFSZ
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 33
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 34
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 35
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 36
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 37
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 38
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 39
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 40
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 41
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 42
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 43
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 44
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 45
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 46
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 47
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 48
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 49
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 50
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 51
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 52
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 53
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 54
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 55
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 56
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 57
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 58
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 59
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 60
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 61
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 62
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 63
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal ABRT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal ALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal BUS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal CHLD
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal CONT
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal DANGER
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal EMT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal FPE
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal GRANT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal HUP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal ILL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal IO
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal LOST
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal LWP
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal MSG
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal PHONE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal PIPE
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal POLL
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal PRIO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal PROF
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal PWR
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal QUIT
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal RETRACT
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal SAK
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal SEGV
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal SOUND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal SYS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal TSTP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal TTIN
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal TTOU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal URG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal USR1
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal USR2
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal VTALRM
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal WAITING
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal WINCH
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal WIND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal XCPU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal XFSZ
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 33
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 34
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 35
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 36
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 37
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 38
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 39
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 40
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 41
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 42
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 43
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 44
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 45
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 46
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 47
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 48
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 49
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 50
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 51
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 52
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 53
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 54
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 55
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 56
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 57
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 58
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 59
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 60
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 61
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 62
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 63
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal ABRT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal ALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal BUS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal CHLD
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal CONT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal DANGER
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal EMT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal FPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal GRANT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal HUP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal ILL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal IO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal LOST
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal LWP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal MSG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal PHONE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal PIPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal POLL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal PRIO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal PROF
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal PWR
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal QUIT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal RETRACT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal SAK
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal SEGV
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal SOUND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal SYS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal TSTP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal TTIN
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal TTOU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal URG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal USR1
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal USR2
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal VTALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal WAITING
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal WINCH
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal WIND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal XCPU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal XFSZ
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 33
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 34
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 35
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 36
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 37
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 38
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 39
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 40
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 41
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 42
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 43
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 44
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 45
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 46
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 47
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 48
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 49
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 50
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 51
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 52
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 53
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 54
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 55
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 56
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 57
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 58
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 59
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 60
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 61
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 62
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 63
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to ALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to BUS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to CHLD
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to CONT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to DANGER
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to EMT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to FPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to GRANT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to HUP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to ILL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to IO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to LOST
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to LWP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to MSG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to PHONE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to PIPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to POLL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to PRIO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to PROF
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to PWR
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to QUIT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to RETRACT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to SAK
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to SEGV
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to SOUND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to SYS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to TERM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to TSTP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to TTIN
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to TTOU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to URG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to USR1
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to USR2
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to VTALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to WAITING
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to WINCH
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to WIND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to XCPU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to XFSZ
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_33
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_34
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_35
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_36
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_37
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_38
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_39
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_40
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_41
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_42
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_43
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_44
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_45
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_46
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_47
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_48
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_49
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_50
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_51
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_52
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_53
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_54
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_55
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_56
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_57
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_58
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_59
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_60
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_61
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_62
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_63
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_ALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_BUS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_CHLD
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_CONT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_DANGER
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_EMT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_FPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_GRANT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_HUP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_ILL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_IO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_LOST
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_LWP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_MSG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_PHONE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_PIPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_POLL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_PRIO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_PROF
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_PWR
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_QUIT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_RETRACT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_SAK
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_SEGV
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_SOUND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_SYS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_TERM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_TSTP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_TTIN
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_TTOU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_URG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_USR1
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_USR2
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_VTALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_WAITING
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_WINCH
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_WIND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_XCPU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_XFSZ
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_33
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_34
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_35
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_36
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_37
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_38
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_39
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_40
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_41
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_42
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_43
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_44
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_45
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_46
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_47
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_48
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_49
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_50
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_51
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_52
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_53
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_54
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_55
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_56
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_57
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_58
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_59
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_60
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_61
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_62
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_63
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_ABRT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_ALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_BUS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_CHLD
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_CONT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_DANGER
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_EMT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_FPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_GRANT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_HUP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_ILL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_IO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_LOST
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_LWP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_MSG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_PHONE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_PIPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_POLL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_PRIO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_PROF
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_PWR
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_QUIT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_RETRACT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_SAK
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_SEGV
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_SOUND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_SYS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_TSTP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_TTIN
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_TTOU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_URG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_USR1
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_USR2
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_VTALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_WAITING
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_WINCH
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_WIND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_XCPU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_XFSZ
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 33
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 34
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 35
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 36
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 37
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 38
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 39
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 40
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 41
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 42
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 43
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 44
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 45
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 46
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 47
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 48
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 49
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 50
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 51
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 52
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 53
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 54
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 55
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 56
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 57
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 58
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 59
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 60
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 61
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 62
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 63
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal ABRT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal ALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal BUS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal CHLD
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal CONT
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal DANGER
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal EMT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal FPE
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal GRANT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal HUP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal ILL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal IO
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal LOST
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal LWP
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal MSG
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal PHONE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal PIPE
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal POLL
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal PRIO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal PROF
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal PWR
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal QUIT
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal RETRACT
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal SAK
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal SEGV
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal SOUND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal SYS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal TSTP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal TTIN
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal TTOU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal URG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal USR1
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal USR2
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal VTALRM
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal WAITING
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal WINCH
new FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal WIND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal XCPU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal XFSZ
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 33
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 34
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 35
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 36
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 37
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 38
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 39
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 40
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 41
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 42
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 43
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 44
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 45
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 46
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 47
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 48
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 49
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 50
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 51
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 52
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 53
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 54
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 55
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 56
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 57
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 58
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 59
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 60
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 61
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 62
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 63
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal ABRT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal ALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal BUS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal CHLD
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal CONT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal DANGER
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal EMT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal FPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal GRANT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal HUP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal ILL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal IO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal LOST
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal LWP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal MSG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal PHONE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal PIPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal POLL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal PRIO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal PROF
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal PWR
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal QUIT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal RETRACT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal SAK
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal SEGV
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal SOUND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal SYS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal TSTP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal TTIN
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal TTOU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal URG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal USR1
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal USR2
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal VTALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal WAITING
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal WINCH
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal WIND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal XCPU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal XFSZ
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: turn on process record
new FAIL: gdb.reverse/sigall-reverse.exp:
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: b handle_TERM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: get signal TERM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_33
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_34
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_35
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_36
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_37
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_38
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_39
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_40
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_41
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_42
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_43
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_44
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_45
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_46
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_47
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_48
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_49
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_50
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_51
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_52
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_53
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_54
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_55
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_56
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_57
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_58
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_59
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_60
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_61
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_62
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_63
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_ABRT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_ALRM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_BUS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_CHLD
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_CONT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_DANGER
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_EMT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_FPE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_GRANT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_HUP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_ILL
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_IO
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_LOST
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_LWP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_MSG
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_PHONE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_PIPE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_POLL
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_PRIO
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_PROF
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_PWR
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_QUIT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_RETRACT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_SAK
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_SEGV
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_SOUND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_SYS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_TERM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_TSTP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_TTIN
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_TTOU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_URG
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_USR1
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_USR2
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_VTALRM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_WAITING
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_WINCH
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_WIND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_XCPU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_XFSZ
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 33
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 34
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 35
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 36
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 37
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 38
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 39
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 40
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 41
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 42
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 43
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 44
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 45
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 46
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 47
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 48
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 49
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 50
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 51
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 52
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 53
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 54
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 55
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 56
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 57
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 58
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 59
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 60
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 61
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 62
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 63
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of ABRT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of ALRM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of BUS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of CHLD
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of CONT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of DANGER
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of EMT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of FPE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of GRANT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of HUP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of ILL
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of IO
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of LOST
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of LWP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of MSG
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of PHONE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of PIPE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of POLL
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of PRIO
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of PROF
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of PWR
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of QUIT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of RETRACT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of SAK
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of SEGV
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of SOUND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of SYS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of TERM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of TSTP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of TTIN
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of TTOU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of URG
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of USR1
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of USR2
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of VTALRM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of WAITING
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of WINCH
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of WIND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of XCPU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of XFSZ
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: send signal TERM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 33
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 34
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 35
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 36
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 37
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 38
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 39
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 40
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 41
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 42
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 43
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 44
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 45
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 46
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 47
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 48
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 49
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 50
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 51
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 52
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 53
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 54
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 55
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 56
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 57
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 58
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 59
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 60
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 61
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 62
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 63
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to ALRM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to BUS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to CHLD
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to CONT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to DANGER
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to EMT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to FPE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to GRANT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to HUP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to ILL
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to IO
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to LOST
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to LWP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to MSG
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to PHONE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to PIPE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to POLL
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to PRIO
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to PROF
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to PWR
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to QUIT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to RETRACT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to SAK
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to SEGV
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to SOUND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to SYS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to TERM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to TSTP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to TTIN
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to TTOU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to URG
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to USR1
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to USR2
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to VTALRM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to WAITING
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to WINCH
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to WIND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to XCPU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to XFSZ
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_33
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_34
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_35
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_36
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_37
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_38
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_39
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_40
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_41
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_42
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_43
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_44
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_45
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_46
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_47
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_48
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_49
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_50
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_51
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_52
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_53
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_54
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_55
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_56
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_57
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_58
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_59
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_60
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_61
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_62
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_63
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_ALRM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_BUS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_CHLD
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_CONT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_DANGER
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_EMT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_FPE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_GRANT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_HUP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_ILL
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_IO
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_LOST
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_LWP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_MSG
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_PHONE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_PIPE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_POLL
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_PRIO
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_PROF
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_PWR
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_QUIT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_RETRACT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_SAK
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_SEGV
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_SOUND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_SYS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_TERM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_TSTP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_TTIN
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_TTOU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_URG
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_USR1
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_USR2
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_VTALRM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_WAITING
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_WINCH
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_WIND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_XCPU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_XFSZ
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_33
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_34
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_35
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_36
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_37
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_38
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_39
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_40
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_41
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_42
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_43
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_44
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_45
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_46
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_47
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_48
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_49
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_50
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_51
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_52
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_53
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_54
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_55
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_56
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_57
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_58
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_59
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_60
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_61
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_62
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_63
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_ABRT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_ALRM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_BUS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_CHLD
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_CONT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_DANGER
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_EMT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_FPE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_GRANT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_HUP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_ILL
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_IO
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_LOST
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_LWP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_MSG
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_PHONE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_PIPE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_POLL
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_PRIO
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_PROF
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_PWR
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_QUIT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_RETRACT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_SAK
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_SEGV
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_SOUND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_SYS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_TSTP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_TTIN
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_TTOU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_URG
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_USR1
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_USR2
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_VTALRM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_WAITING
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_WINCH
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_WIND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_XCPU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_XFSZ
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 33
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 34
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 35
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 36
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 37
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 38
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 39
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 40
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 41
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 42
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 43
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 44
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 45
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 46
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 47
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 48
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 49
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 50
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 51
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 52
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 53
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 54
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 55
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 56
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 57
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 58
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 59
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 60
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 61
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 62
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 63
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal ABRT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal ALRM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal BUS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal CHLD
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal CONT
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal DANGER
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal EMT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal FPE
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal GRANT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal HUP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal ILL
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal IO
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal LOST
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal LWP
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal MSG
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal PHONE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal PIPE
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal POLL
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal PRIO
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal PROF
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal PWR
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal QUIT
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal RETRACT
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal SAK
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal SEGV
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal SOUND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal SYS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal TSTP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal TTIN
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal TTOU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal URG
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal USR1
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal USR2
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal VTALRM
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal WAITING
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal WINCH
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal WIND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal XCPU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal XFSZ
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 33
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 34
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 35
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 36
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 37
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 38
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 39
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 40
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 41
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 42
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 43
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 44
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 45
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 46
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 47
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 48
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 49
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 50
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 51
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 52
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 53
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 54
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 55
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 56
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 57
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 58
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 59
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 60
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 61
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 62
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 63
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal ABRT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal ALRM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal BUS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal CHLD
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal CONT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal DANGER
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal EMT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal FPE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal GRANT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal HUP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal ILL
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal IO
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal LOST
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal LWP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal MSG
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal PHONE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal PIPE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal POLL
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal PRIO
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal PROF
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal PWR
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal QUIT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal RETRACT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal SAK
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal SEGV
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal SOUND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal SYS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal TSTP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal TTIN
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal TTOU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal URG
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal USR1
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal USR2
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal VTALRM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal WAITING
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal WINCH
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal WIND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal XCPU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal XFSZ
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 33
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 34
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 35
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 36
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 37
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 38
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 39
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 40
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 41
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 42
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 43
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 44
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 45
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 46
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 47
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 48
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 49
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 50
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 51
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 52
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 53
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 54
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 55
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 56
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 57
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 58
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 59
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 60
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 61
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 62
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 63
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to ALRM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to BUS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to CHLD
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to CONT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to DANGER
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to EMT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to FPE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to GRANT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to HUP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to ILL
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to IO
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to LOST
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to LWP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to MSG
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to PHONE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to PIPE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to POLL
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to PRIO
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to PROF
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to PWR
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to QUIT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to RETRACT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to SAK
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to SEGV
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to SOUND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to SYS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to TERM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to TSTP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to TTIN
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to TTOU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to URG
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to USR1
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to USR2
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to VTALRM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to WAITING
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to WINCH
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to WIND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to XCPU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to XFSZ
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_33
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_34
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_35
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_36
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_37
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_38
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_39
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_40
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_41
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_42
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_43
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_44
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_45
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_46
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_47
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_48
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_49
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_50
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_51
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_52
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_53
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_54
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_55
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_56
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_57
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_58
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_59
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_60
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_61
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_62
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_63
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_ALRM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_BUS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_CHLD
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_CONT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_DANGER
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_EMT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_FPE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_GRANT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_HUP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_ILL
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_IO
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_LOST
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_LWP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_MSG
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_PHONE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_PIPE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_POLL
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_PRIO
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_PROF
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_PWR
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_QUIT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_RETRACT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_SAK
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_SEGV
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_SOUND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_SYS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_TERM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_TSTP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_TTIN
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_TTOU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_URG
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_USR1
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_USR2
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_VTALRM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_WAITING
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_WINCH
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_WIND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_XCPU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_XFSZ
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_33
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_34
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_35
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_36
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_37
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_38
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_39
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_40
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_41
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_42
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_43
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_44
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_45
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_46
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_47
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_48
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_49
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_50
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_51
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_52
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_53
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_54
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_55
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_56
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_57
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_58
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_59
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_60
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_61
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_62
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_63
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_ABRT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_ALRM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_BUS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_CHLD
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_CONT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_DANGER
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_EMT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_FPE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_GRANT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_HUP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_ILL
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_IO
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_LOST
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_LWP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_MSG
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_PHONE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_PIPE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_POLL
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_PRIO
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_PROF
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_PWR
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_QUIT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_RETRACT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_SAK
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_SEGV
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_SOUND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_SYS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_TSTP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_TTIN
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_TTOU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_URG
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_USR1
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_USR2
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_VTALRM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_WAITING
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_WINCH
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_WIND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_XCPU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_XFSZ
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 33
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 34
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 35
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 36
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 37
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 38
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 39
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 40
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 41
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 42
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 43
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 44
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 45
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 46
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 47
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 48
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 49
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 50
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 51
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 52
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 53
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 54
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 55
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 56
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 57
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 58
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 59
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 60
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 61
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 62
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 63
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal ABRT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal ALRM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal BUS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal CHLD
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal CONT
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal DANGER
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal EMT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal FPE
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal GRANT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal HUP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal ILL
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal IO
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal LOST
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal LWP
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal MSG
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal PHONE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal PIPE
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal POLL
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal PRIO
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal PROF
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal PWR
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal QUIT
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal RETRACT
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal SAK
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal SEGV
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal SOUND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal SYS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal TSTP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal TTIN
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal TTOU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal URG
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal USR1
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal USR2
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal VTALRM
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal WAITING
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal WINCH
new FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal WIND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal XCPU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal XFSZ
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 33
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 34
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 35
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 36
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 37
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 38
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 39
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 40
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 41
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 42
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 43
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 44
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 45
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 46
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 47
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 48
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 49
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 50
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 51
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 52
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 53
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 54
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 55
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 56
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 57
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 58
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 59
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 60
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 61
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 62
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 63
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal ABRT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal ALRM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal BUS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal CHLD
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal CONT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal DANGER
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal EMT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal FPE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal GRANT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal HUP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal ILL
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal IO
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal LOST
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal LWP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal MSG
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal PHONE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal PIPE
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal POLL
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal PRIO
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal PROF
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal PWR
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal QUIT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal RETRACT
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal SAK
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal SEGV
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal SOUND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal SYS
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal TSTP
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal TTIN
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal TTOU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal URG
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal USR1
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal USR2
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal VTALRM
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal WAITING
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal WINCH
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal WIND
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal XCPU
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal XFSZ
PASS -> FAIL: gdb.reverse/sigall-reverse.exp: turn on process record
new FAIL: gdb.reverse/solib-precsave.exp:
PASS -> FAIL: gdb.reverse/solib-precsave.exp: breakpoint at end of main
PASS -> FAIL: gdb.reverse/solib-precsave.exp: forward to end part one
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reload core file
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-next first shr1
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-next generic
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-next over solib function one
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-next over solib function two
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-next second shr1
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-next third shr1
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step back to main one
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step back to main two
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step first shr1
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step generic
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step into solib function one
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step into solib function two
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step second shr1
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step third shr1
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step within solib function one
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step within solib function two
PASS -> FAIL: gdb.reverse/solib-precsave.exp: run to end of main
PASS -> FAIL: gdb.reverse/solib-precsave.exp: run until end part one
PASS -> FAIL: gdb.reverse/solib-precsave.exp: run until end part two
PASS -> FAIL: gdb.reverse/solib-precsave.exp: save process recfile
PASS -> FAIL: gdb.reverse/solib-precsave.exp: turn on process record
new FAIL: gdb.reverse/solib-reverse.exp:
PASS -> FAIL: gdb.reverse/solib-reverse.exp: forward to end part one
PASS -> FAIL: gdb.reverse/solib-reverse.exp: reverse-next first shr1
PASS -> FAIL: gdb.reverse/solib-reverse.exp: reverse-next generic
PASS -> FAIL: gdb.reverse/solib-reverse.exp: reverse-next over solib function one
PASS -> FAIL: gdb.reverse/solib-reverse.exp: reverse-next over solib function two
PASS -> FAIL: gdb.reverse/solib-reverse.exp: reverse-next second shr1
PASS -> FAIL: gdb.reverse/solib-reverse.exp: reverse-next third shr1
PASS -> FAIL: gdb.reverse/solib-reverse.exp: reverse-step back to main one
PASS -> FAIL: gdb.reverse/solib-reverse.exp: reverse-step back to main two
PASS -> FAIL: gdb.reverse/solib-reverse.exp: reverse-step first shr1
PASS -> FAIL: gdb.reverse/solib-reverse.exp: reverse-step generic
PASS -> FAIL: gdb.reverse/solib-reverse.exp: reverse-step into solib function one
PASS -> FAIL: gdb.reverse/solib-reverse.exp: reverse-step into solib function two
PASS -> FAIL: gdb.reverse/solib-reverse.exp: reverse-step second shr1
PASS -> FAIL: gdb.reverse/solib-reverse.exp: reverse-step third shr1
PASS -> FAIL: gdb.reverse/solib-reverse.exp: reverse-step within solib function one
PASS -> FAIL: gdb.reverse/solib-reverse.exp: reverse-step within solib function two
PASS -> FAIL: gdb.reverse/solib-reverse.exp: run until end part one
PASS -> FAIL: gdb.reverse/solib-reverse.exp: run until end part two
PASS -> FAIL: gdb.reverse/solib-reverse.exp: turn on process record
new FAIL: gdb.reverse/step-precsave.exp:
PASS -> FAIL: gdb.reverse/step-precsave.exp: breakpoint at end of main
PASS -> FAIL: gdb.reverse/step-precsave.exp: finish out of fn call
PASS -> FAIL: gdb.reverse/step-precsave.exp: next over call
PASS -> FAIL: gdb.reverse/step-precsave.exp: next test 1
PASS -> FAIL: gdb.reverse/step-precsave.exp: next test 2
PASS -> FAIL: gdb.reverse/step-precsave.exp: reload core file
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse next over call
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse next test 1
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse next test 2
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse step into fn call
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse step out of called fn
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse step test 1
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse step test 2
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse stepi from a function call
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse stepi thru function return
PASS -> FAIL: gdb.reverse/step-precsave.exp: run to end of main
PASS -> FAIL: gdb.reverse/step-precsave.exp: save process recfile
PASS -> FAIL: gdb.reverse/step-precsave.exp: set reverse execution
PASS -> FAIL: gdb.reverse/step-precsave.exp: simple reverse stepi
PASS -> FAIL: gdb.reverse/step-precsave.exp: simple stepi
PASS -> FAIL: gdb.reverse/step-precsave.exp: step into call
PASS -> FAIL: gdb.reverse/step-precsave.exp: step test 1
PASS -> FAIL: gdb.reverse/step-precsave.exp: step test 2
PASS -> FAIL: gdb.reverse/step-precsave.exp: step up to call
PASS -> FAIL: gdb.reverse/step-precsave.exp: stepi back from function call
PASS -> FAIL: gdb.reverse/step-precsave.exp: stepi into function call
PASS -> FAIL: gdb.reverse/step-precsave.exp: turn on process record
new FAIL: gdb.reverse/step-reverse.exp:
PASS -> FAIL: gdb.reverse/step-reverse.exp: finish out of fn call
PASS -> FAIL: gdb.reverse/step-reverse.exp: next over call
PASS -> FAIL: gdb.reverse/step-reverse.exp: next test 1
PASS -> FAIL: gdb.reverse/step-reverse.exp: next test 2
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse next over call
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse next test 1
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse next test 2
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse step into fn call
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse step out of called fn
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse step test 1
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse step test 2
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse stepi from a function call
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse stepi thru function return
PASS -> FAIL: gdb.reverse/step-reverse.exp: set reverse execution
PASS -> FAIL: gdb.reverse/step-reverse.exp: simple reverse stepi
PASS -> FAIL: gdb.reverse/step-reverse.exp: simple stepi
PASS -> FAIL: gdb.reverse/step-reverse.exp: step into call
PASS -> FAIL: gdb.reverse/step-reverse.exp: step test 1
PASS -> FAIL: gdb.reverse/step-reverse.exp: step test 2
PASS -> FAIL: gdb.reverse/step-reverse.exp: step up to call
PASS -> FAIL: gdb.reverse/step-reverse.exp: stepi back from function call
PASS -> FAIL: gdb.reverse/step-reverse.exp: stepi into function call
PASS -> FAIL: gdb.reverse/step-reverse.exp: turn on process record
new FAIL: gdb.reverse/until-precsave.exp:
PASS -> FAIL: gdb.reverse/until-precsave.exp: advance to factorial
PASS -> FAIL: gdb.reverse/until-precsave.exp: advance to marker2
PASS -> FAIL: gdb.reverse/until-precsave.exp: breakpoint at end of main
PASS -> FAIL: gdb.reverse/until-precsave.exp: finish to main
PASS -> FAIL: gdb.reverse/until-precsave.exp: reload core file
PASS -> FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial
PASS -> FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2
PASS -> FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2
PASS -> FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial
PASS -> FAIL: gdb.reverse/until-precsave.exp: run to end of main
PASS -> FAIL: gdb.reverse/until-precsave.exp: save process recfile
PASS -> FAIL: gdb.reverse/until-precsave.exp: set reverse execution
PASS -> FAIL: gdb.reverse/until-precsave.exp: turn on process record
PASS -> FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function
PASS -> FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame
PASS -> FAIL: gdb.reverse/until-precsave.exp: until line number
new FAIL: gdb.reverse/until-reverse.exp:
PASS -> FAIL: gdb.reverse/until-reverse.exp: advance factorial
PASS -> FAIL: gdb.reverse/until-reverse.exp: advance to marker2
PASS -> FAIL: gdb.reverse/until-reverse.exp: finish to main
PASS -> FAIL: gdb.reverse/until-reverse.exp: reverse-advance to final return of factorial
PASS -> FAIL: gdb.reverse/until-reverse.exp: reverse-advance to marker2
PASS -> FAIL: gdb.reverse/until-reverse.exp: reverse-finish from marker2
PASS -> FAIL: gdb.reverse/until-reverse.exp: reverse-until to entry of factorial
PASS -> FAIL: gdb.reverse/until-reverse.exp: set reverse execution
PASS -> FAIL: gdb.reverse/until-reverse.exp: turn on process record
PASS -> FAIL: gdb.reverse/until-reverse.exp: until factorial, recursive function
PASS -> FAIL: gdb.reverse/until-reverse.exp: until func, not called by current frame
PASS -> FAIL: gdb.reverse/until-reverse.exp: until line number
new FAIL: gdb.reverse/waitpid-reverse.exp:
PASS -> FAIL: gdb.reverse/waitpid-reverse.exp: check waitpid record
PASS -> FAIL: gdb.reverse/waitpid-reverse.exp: continue to breakpoint: marker2
PASS -> FAIL: gdb.reverse/waitpid-reverse.exp: reverse to marker1
PASS -> FAIL: gdb.reverse/waitpid-reverse.exp: set breakpoint at marker1
PASS -> FAIL: gdb.reverse/waitpid-reverse.exp: set breakpoint at marker2
PASS -> FAIL: gdb.reverse/waitpid-reverse.exp: turn on process record
new FAIL: gdb.reverse/watch-precsave.exp:
PASS -> FAIL: gdb.reverse/watch-precsave.exp: breakpoint at end of main
PASS -> FAIL: gdb.reverse/watch-precsave.exp: continue to breakpoint: marker1
PASS -> FAIL: gdb.reverse/watch-precsave.exp: continue to breakpoint: marker2
PASS -> FAIL: gdb.reverse/watch-precsave.exp: reload core file
PASS -> FAIL: gdb.reverse/watch-precsave.exp: replay forward to marker2
PASS -> FAIL: gdb.reverse/watch-precsave.exp: run to end of main
PASS -> FAIL: gdb.reverse/watch-precsave.exp: save process recfile
PASS -> FAIL: gdb.reverse/watch-precsave.exp: set breakpoint at marker1
PASS -> FAIL: gdb.reverse/watch-precsave.exp: set breakpoint at marker2
PASS -> FAIL: gdb.reverse/watch-precsave.exp: set forward
PASS -> FAIL: gdb.reverse/watch-precsave.exp: set reverse, first time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: set reverse, second time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: set watchpoint on ival3
PASS -> FAIL: gdb.reverse/watch-precsave.exp: turn on process record
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, HW, fifth time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, HW, first time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, HW, fourth time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, HW, second time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, HW, third time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, fifth time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, first time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, fourth time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, second time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, third time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, first time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, forward replay, fifth time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, forward replay, first time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, forward replay, fourth time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, forward replay, second time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, forward replay, third time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, second time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, third time
new FAIL: gdb.reverse/watch-reverse.exp:
PASS -> FAIL: gdb.reverse/watch-reverse.exp: continue to breakpoint: marker1
PASS -> FAIL: gdb.reverse/watch-reverse.exp: continue to breakpoint: marker2
PASS -> FAIL: gdb.reverse/watch-reverse.exp: replay forward to marker2
PASS -> FAIL: gdb.reverse/watch-reverse.exp: set breakpoint at marker1
PASS -> FAIL: gdb.reverse/watch-reverse.exp: set breakpoint at marker2
PASS -> FAIL: gdb.reverse/watch-reverse.exp: set forward
PASS -> FAIL: gdb.reverse/watch-reverse.exp: set reverse, first time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: set reverse, second time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: set watchpoint on ival3
PASS -> FAIL: gdb.reverse/watch-reverse.exp: turn on process record
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, HW, fifth time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, HW, first time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, HW, fourth time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, HW, second time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, HW, third time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, fifth time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, first time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, fourth time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, second time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, third time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, first time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, forward replay, fifth time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, forward replay, first time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, forward replay, fourth time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, forward replay, second time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, forward replay, third time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, second time
PASS -> FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, third time
new FAIL: gdb.server/abspath.exp:
PASS -> FAIL: gdb.server/abspath.exp: continue to main
new FAIL: gdb.server/abspath.exp: setting breakpoint at main
new FAIL: gdb.server/connect-stopped-target.exp:
new FAIL: gdb.server/connect-stopped-target.exp: non-stop=off:
PASS -> FAIL: gdb.server/connect-stopped-target.exp: non-stop=off: connect and print pc
PASS -> UNRESOLVED: gdb.server/connect-stopped-target.exp: non-stop=off: print pc again
new FAIL: gdb.server/connect-stopped-target.exp: non-stop=on:
PASS -> FAIL: gdb.server/connect-stopped-target.exp: non-stop=on: connect and print pc
PASS -> UNRESOLVED: gdb.server/connect-stopped-target.exp: non-stop=on: print pc again
new FAIL: gdb.server/connect-with-no-symbol-file.exp:
new FAIL: gdb.server/connect-without-multi-process.exp: multiprocess=auto:
PASS -> FAIL: gdb.server/connect-without-multi-process.exp: multiprocess=auto: break main
PASS -> FAIL: gdb.server/connect-without-multi-process.exp: multiprocess=auto: continue to main
PASS -> FAIL: gdb.server/connect-without-multi-process.exp: multiprocess=auto: target remote
new FAIL: gdb.server/connect-without-multi-process.exp: multiprocess=off:
PASS -> FAIL: gdb.server/connect-without-multi-process.exp: multiprocess=off: break main
PASS -> FAIL: gdb.server/connect-without-multi-process.exp: multiprocess=off: continue to main
PASS -> FAIL: gdb.server/connect-without-multi-process.exp: multiprocess=off: target remote
new FAIL: gdb.server/ext-restart.exp:
PASS -> FAIL: gdb.server/ext-restart.exp: restart: run to main
PASS -> FAIL: gdb.server/ext-restart.exp: run to main
new FAIL: gdb.server/ext-restart.exp: setting breakpoint at main
new FAIL: gdb.server/ext-run.exp:
PASS -> FAIL: gdb.server/ext-run.exp: continue to main
new FAIL: gdb.server/ext-run.exp: setting breakpoint at main
new FAIL: gdb.server/ext-wrapper.exp:
PASS -> FAIL: gdb.server/ext-wrapper.exp: print d
PASS -> FAIL: gdb.server/ext-wrapper.exp: restart: print d
PASS -> FAIL: gdb.server/ext-wrapper.exp: restart: run to marker
PASS -> FAIL: gdb.server/ext-wrapper.exp: run to marker
new FAIL: gdb.server/ext-wrapper.exp: setting breakpoint at marker
new FAIL: gdb.server/file-transfer.exp:
PASS -> FAIL: gdb.server/file-transfer.exp: compare binary file
PASS -> FAIL: gdb.server/file-transfer.exp: compare intermediate binary file
PASS -> FAIL: gdb.server/file-transfer.exp: compare intermediate text file
PASS -> FAIL: gdb.server/file-transfer.exp: compare text file
PASS -> FAIL: gdb.server/file-transfer.exp: deleted binary file
PASS -> FAIL: gdb.server/file-transfer.exp: deleted text file
PASS -> FAIL: gdb.server/file-transfer.exp: get binary file
PASS -> FAIL: gdb.server/file-transfer.exp: get text file
PASS -> FAIL: gdb.server/file-transfer.exp: put binary file
PASS -> FAIL: gdb.server/file-transfer.exp: put text file
new FAIL: gdb.server/no-thread-db.exp:
PASS -> FAIL: gdb.server/no-thread-db.exp: continue to breakpoint: after tls assignment
PASS -> FAIL: gdb.server/no-thread-db.exp: libthread-db is now unresolvable
PASS -> FAIL: gdb.server/no-thread-db.exp: print foo
new FAIL: gdb.server/no-thread-db.exp: setting breakpoint at no-thread-db.c:26
new FAIL: gdb.server/reconnect-ctrl-c.exp:
PASS -> FAIL: gdb.server/reconnect-ctrl-c.exp: first: connect
PASS -> UNRESOLVED: gdb.server/reconnect-ctrl-c.exp: second: connect
PASS -> FAIL: gdb.server/reconnect-ctrl-c.exp: second: disconnect
new FAIL: gdb.server/run-without-local-binary.exp:
PASS -> FAIL: gdb.server/run-without-local-binary.exp: run test program until the end
new FAIL: gdb.server/server-connect.exp:
PASS -> FAIL: gdb.server/server-connect.exp: tcp4: connect to gdbserver using tcp4:127.0.0.1
PASS -> UNRESOLVED: gdb.server/server-connect.exp: tcp6-with-brackets: connect to gdbserver using tcp6:[::1]
PASS -> UNRESOLVED: gdb.server/server-connect.exp: tcp6: connect to gdbserver using tcp6:::1
PASS -> UNRESOLVED: gdb.server/server-connect.exp: tcp: connect to gdbserver using tcp:localhost
PASS -> UNRESOLVED: gdb.server/server-connect.exp: udp4: connect to gdbserver using udp4:127.0.0.1
PASS -> UNRESOLVED: gdb.server/server-connect.exp: udp6-with-brackets: connect to gdbserver using udp6:[::1]
PASS -> UNRESOLVED: gdb.server/server-connect.exp: udp6: connect to gdbserver using udp6:::1
new FAIL: gdb.server/server-exec-info.exp:
PASS -> FAIL: gdb.server/server-exec-info.exp: set sysroot remote:
new FAIL: gdb.server/server-kill.exp:
PASS -> FAIL: gdb.server/server-kill.exp: continue to breakpoint: after server_pid assignment
PASS -> FAIL: gdb.server/server-kill.exp: p server_pid
new FAIL: gdb.server/server-kill.exp: setting breakpoint at server-kill.c:29
new FAIL: gdb.server/server-mon.exp:
PASS -> FAIL: gdb.server/server-mon.exp: monitor
PASS -> FAIL: gdb.server/server-mon.exp: monitor help
PASS -> FAIL: gdb.server/server-mon.exp: monitor set debug 0
PASS -> FAIL: gdb.server/server-mon.exp: monitor set debug 1
PASS -> FAIL: gdb.server/server-mon.exp: monitor set debug-format all
PASS -> FAIL: gdb.server/server-mon.exp: monitor set debug-format none
PASS -> FAIL: gdb.server/server-mon.exp: monitor set remote-debug 0
PASS -> FAIL: gdb.server/server-mon.exp: monitor set remote-debug 1
new FAIL: gdb.server/server-run.exp:
PASS -> FAIL: gdb.server/server-run.exp: continue to main
PASS -> UNRESOLVED: gdb.server/server-run.exp: loaded dynamic linker
new FAIL: gdb.server/server-run.exp: setting breakpoint at main
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: continue
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: file binfile
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: sharedlibrary
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: target remote
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: continue
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: file binfile
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: sharedlibrary
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: target remote
new FAIL: gdb.server/stop-reply-no-thread.exp:
PASS -> FAIL: gdb.server/stop-reply-no-thread.exp: connect
PASS -> FAIL: gdb.server/sysroot.exp: sysroot=local: connect to remote and read binary
PASS -> FAIL: gdb.server/sysroot.exp: sysroot=local: continue to main
PASS -> FAIL: gdb.server/sysroot.exp: sysroot=local: continue to printf
new FAIL: gdb.server/sysroot.exp: sysroot=local: setting breakpoint at main
new FAIL: gdb.server/sysroot.exp: sysroot=local: setting breakpoint at printf
PASS -> FAIL: gdb.server/sysroot.exp: sysroot=remote: connect to remote and read binary
PASS -> FAIL: gdb.server/sysroot.exp: sysroot=remote: continue to main
PASS -> FAIL: gdb.server/sysroot.exp: sysroot=remote: continue to printf
new FAIL: gdb.server/sysroot.exp: sysroot=remote: setting breakpoint at main
new FAIL: gdb.server/sysroot.exp: sysroot=remote: setting breakpoint at printf
new FAIL: gdb.server/wrapper.exp:
PASS -> FAIL: gdb.server/wrapper.exp: continue to marker
PASS -> FAIL: gdb.server/wrapper.exp: print d
new FAIL: gdb.server/wrapper.exp: setting breakpoint at marker
new FAIL: gdb.stabs/exclfwd.exp:
new FAIL: gdb.stabs/gdb11479.exp:
new FAIL: gdb.stabs/gdb11479.exp: can't run to main natural_debug_format
new FAIL: gdb.threads/bp_in_thread.exp:
PASS -> FAIL: gdb.threads/bp_in_thread.exp: breakpoint on noreturn
PASS -> FAIL: gdb.threads/bp_in_thread.exp: run to noreturn
new FAIL: gdb.threads/break-while-running.exp:
new FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted off: all-stop:
new FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted off: non-stop:
new FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted on: all-stop:
new FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted on: non-stop:
new FAIL: gdb.threads/break-while-running.exp: wo/ithr: always-inserted off: all-stop:
new FAIL: gdb.threads/break-while-running.exp: wo/ithr: always-inserted off: non-stop:
new FAIL: gdb.threads/break-while-running.exp: wo/ithr: always-inserted on: all-stop:
new FAIL: gdb.threads/break-while-running.exp: wo/ithr: always-inserted on: non-stop:
new FAIL: gdb.threads/clone-new-thread-event.exp:
new FAIL: gdb.threads/clone-thread_db.exp:
new FAIL: gdb.threads/continue-pending-after-query.exp:
new FAIL: gdb.threads/continue-pending-status.exp:
new FAIL: gdb.threads/corethreads.exp:
PASS -> FAIL: gdb.threads/corethreads.exp: load core
PASS -> FAIL: gdb.threads/corethreads.exp: print pthread_t of thread0
PASS -> FAIL: gdb.threads/corethreads.exp: print pthread_t of thread1
new FAIL: gdb.threads/create-fail.exp: iteration 1:
new FAIL: gdb.threads/current-lwp-dead.exp:
new FAIL: gdb.threads/dlopen-libpthread.exp:
new FAIL: gdb.threads/execl.exp:
PASS -> FAIL: gdb.threads/execl.exp: continue across exec
PASS -> FAIL: gdb.threads/execl.exp: continue to exec
PASS -> FAIL: gdb.threads/execl.exp: continue until exit
PASS -> FAIL: gdb.threads/execl.exp: info threads before exec
PASS -> FAIL: gdb.threads/execl.exp: set breakpoint at execl
new FAIL: gdb.threads/fork-child-threads.exp:
new FAIL: gdb.threads/fork-child-threads.exp: can't run to main
new FAIL: gdb.threads/fork-thread-pending.exp:
new FAIL: gdb.threads/fork-thread-pending.exp: can't run to main
new FAIL: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=0: detach_on_fork=on: displaced=off:
new FAIL: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=0: detach_on_fork=on: displaced=off: can't run to main
new FAIL: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=0: detach_on_fork=on: displaced=on:
new FAIL: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=0: detach_on_fork=on: displaced=on: can't run to main
new FAIL: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=1: detach_on_fork=on: displaced=off:
new FAIL: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=1: detach_on_fork=on: displaced=off: can't run to main
new FAIL: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=1: detach_on_fork=on: displaced=on:
new FAIL: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=1: detach_on_fork=on: displaced=on: can't run to main
new FAIL: gdb.threads/forking-threads-plus-breakpoint.exp: probe displaced-stepping support:
new FAIL: gdb.threads/forking-threads-plus-breakpoint.exp: probe displaced-stepping support: can't run to main
new FAIL: gdb.threads/gcore-stale-thread.exp:
new FAIL: gdb.threads/gcore-thread.exp:
new FAIL: gdb.threads/hand-call-in-threads.exp:
new FAIL: gdb.threads/hand-call-in-threads.exp: can't run to main
new FAIL: gdb.threads/hand-call-new-thread.exp:
new FAIL: gdb.threads/ia64-sigill.exp:
new FAIL: gdb.threads/info-threads-cur-sal.exp:
new FAIL: gdb.threads/interrupt-while-step-over.exp:
new FAIL: gdb.threads/interrupt-while-step-over.exp: can't run to main
new FAIL: gdb.threads/interrupted-hand-call.exp:
new FAIL: gdb.threads/interrupted-hand-call.exp: can't run to main
new FAIL: gdb.threads/kill.exp: non-threaded:
new FAIL: gdb.threads/kill.exp: non-threaded: run to main
new FAIL: gdb.threads/kill.exp: threaded:
new FAIL: gdb.threads/kill.exp: threaded: run to main
new FAIL: gdb.threads/killed.exp:
PASS -> FAIL: gdb.threads/killed.exp: run program to completion
new FAIL: gdb.threads/leader-exit.exp:
new FAIL: gdb.threads/linux-dp.exp:
PASS -> FAIL: gdb.threads/linux-dp.exp: continue to breakpoint: about to create philosopher: 0
PASS -> FAIL: gdb.threads/linux-dp.exp: continue to breakpoint: about to create philosopher: 1
PASS -> FAIL: gdb.threads/linux-dp.exp: continue to breakpoint: about to create philosopher: 2
PASS -> FAIL: gdb.threads/linux-dp.exp: continue to breakpoint: about to create philosopher: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: continue to breakpoint: about to create philosopher: 4
PASS -> FAIL: gdb.threads/linux-dp.exp: continue to breakpoint: main thread's sleep
PASS -> FAIL: gdb.threads/linux-dp.exp: continue to breakpoint: thread 5's print
PASS -> FAIL: gdb.threads/linux-dp.exp: continue to breakpoint: thread 5's print, pass: 0
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 0
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 1
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 2
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 4
PASS -> FAIL: gdb.threads/linux-dp.exp: first thread-specific breakpoint hit
PASS -> FAIL: gdb.threads/linux-dp.exp: found an interesting thread
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads 2
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 0
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 1
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 2
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 4
PASS -> FAIL: gdb.threads/linux-dp.exp: manager thread found
new FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 1
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 5
PASS -> FAIL: gdb.threads/linux-dp.exp: selected thread: 1
PASS -> FAIL: gdb.threads/linux-dp.exp: selected thread: 2
PASS -> FAIL: gdb.threads/linux-dp.exp: selected thread: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: selected thread: 4
PASS -> FAIL: gdb.threads/linux-dp.exp: selected thread: 5
PASS -> FAIL: gdb.threads/linux-dp.exp: selected thread: 6
new FAIL: gdb.threads/linux-dp.exp: setting breakpoint at 192
new FAIL: gdb.threads/linux-dp.exp: setting breakpoint at 199
new FAIL: gdb.threads/linux-dp.exp: setting breakpoint at print_philosopher thread 5
PASS -> FAIL: gdb.threads/linux-dp.exp: thread-specific breakpoint is thread-specific
new FAIL: gdb.threads/local-watch-wrong-thread.exp:
new FAIL: gdb.threads/local-watch-wrong-thread.exp: can't run to main
new FAIL: gdb.threads/manythreads.exp:
PASS -> FAIL: gdb.threads/manythreads.exp: check thread name
PASS -> FAIL: gdb.threads/manythreads.exp: first continue
PASS -> FAIL: gdb.threads/manythreads.exp: give a name to the thread
PASS -> FAIL: gdb.threads/manythreads.exp: info threads
PASS -> FAIL: gdb.threads/manythreads.exp: second continue
PASS -> FAIL: gdb.threads/manythreads.exp: stop threads 1
PASS -> FAIL: gdb.threads/manythreads.exp: stop threads 2
new FAIL: gdb.threads/multi-create-ns-info-thr.exp:
new FAIL: gdb.threads/multi-create.exp:
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 0
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 1
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 10
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 11
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 12
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 13
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 14
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 15
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 16
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 17
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 18
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 19
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 2
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 20
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 21
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 22
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 23
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 24
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 25
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 26
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 27
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 28
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 29
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 3
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 30
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 31
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 4
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 5
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 6
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 7
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 8
PASS -> FAIL: gdb.threads/multi-create.exp: continue to breakpoint 9
new FAIL: gdb.threads/multi-create.exp: setting breakpoint at multi-create.c:45
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: continue: continue
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: continue: setting breakpoint at 111
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: continue: setup:
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: continue: thread 1
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: next: next
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: next: setup:
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: next: thread 1
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr1: continue to sigusr1_handler
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr1: queue-signal SIGUSR1
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr1: setting breakpoint at sigusr1_handler
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr1: setup:
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr1: switch back to thread 1
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr1: thread 1
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr2: continue to sigusr1_handler
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr2: queue-signal SIGUSR1
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr2: setting breakpoint at sigusr1_handler
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr2: setup:
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr2: switch back to thread 1
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr2: thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr3: continue to sigusr1_handler
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr3: queue-signal SIGUSR1
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr3: setting breakpoint at sigusr1_handler
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr3: setup:
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr3: switch back to thread 1
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr3: thread 3
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: step: setup:
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: step: step
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: step: thread 1
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: continue: continue
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: continue: setting breakpoint at 111
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: continue: setup:
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: continue: thread 1
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: next
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: setup:
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: thread 1
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: continue to sigusr1_handler
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: queue-signal SIGUSR1
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setting breakpoint at sigusr1_handler
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup:
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: switch back to thread 1
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: thread 1
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: continue to sigusr1_handler
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: queue-signal SIGUSR1
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: setting breakpoint at sigusr1_handler
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: setup:
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: switch back to thread 1
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: continue to sigusr1_handler
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: queue-signal SIGUSR1
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: setting breakpoint at sigusr1_handler
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: setup:
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: switch back to thread 1
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: thread 3
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: step: setup:
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: step: step
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: step: thread 1
new FAIL: gdb.threads/multiple-successive-infcall.exp:
new FAIL: gdb.threads/multiple-successive-infcall.exp: can't run to main
new FAIL: gdb.threads/names.exp:
new FAIL: gdb.threads/next-bp-other-thread.exp:
new FAIL: gdb.threads/next-bp-other-thread.exp: schedlock=off:
new FAIL: gdb.threads/next-bp-other-thread.exp: schedlock=on:
new FAIL: gdb.threads/next-bp-other-thread.exp: schedlock=step:
new FAIL: gdb.threads/next-while-other-thread-longjmps.exp:
new FAIL: gdb.threads/next-while-other-thread-longjmps.exp: can't run to main
new FAIL: gdb.threads/no-unwaited-for-left.exp:
new FAIL: gdb.threads/non-ldr-exc-1.exp: lock-sched=off,non-stop=off:
new FAIL: gdb.threads/non-ldr-exc-1.exp: lock-sched=off,non-stop=on:
new FAIL: gdb.threads/non-ldr-exc-1.exp: lock-sched=on,non-stop=off:
new FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched=off,non-stop=off:
new FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched=off,non-stop=on:
new FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched=on,non-stop=off:
new FAIL: gdb.threads/non-ldr-exc-3.exp: lock-sched=off,non-stop=off:
new FAIL: gdb.threads/non-ldr-exc-3.exp: lock-sched=off,non-stop=on:
new FAIL: gdb.threads/non-ldr-exc-3.exp: lock-sched=on,non-stop=off:
new FAIL: gdb.threads/non-ldr-exc-4.exp: lock-sched=off,non-stop=off:
new FAIL: gdb.threads/non-ldr-exc-4.exp: lock-sched=off,non-stop=on:
new FAIL: gdb.threads/non-ldr-exc-4.exp: lock-sched=on,non-stop=off:
new FAIL: gdb.threads/non-ldr-exit.exp:
new FAIL: gdb.threads/non-ldr-exit.exp: can't run to main
new FAIL: gdb.threads/non-stop-fair-events.exp:
new FAIL: gdb.threads/omp-par-scope.exp:
new FAIL: gdb.threads/pending-step.exp:
new FAIL: gdb.threads/pending-step.exp: can't run to main
new FAIL: gdb.threads/print-threads.exp:
PASS -> FAIL: gdb.threads/print-threads.exp: all threads ran once
PASS -> FAIL: gdb.threads/print-threads.exp: break thread_function
PASS -> FAIL: gdb.threads/print-threads.exp: set var slow = 0
PASS -> FAIL: gdb.threads/print-threads.exp: set var slow = 1
new FAIL: gdb.threads/print-threads.exp: setting breakpoint at kill
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: detach:
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: detach: can't run to main
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: killed outside:
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: killed outside: can't run to main
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint:
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: can't run to main
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: detach:
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: detach: can't run to main
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: killed outside:
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: killed outside: can't run to main
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint:
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: can't run to main
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: detach:
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: detach: can't run to main
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: killed outside:
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: killed outside: can't run to main
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint:
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: can't run to main
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: detach: detach:
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: detach: detach: can't run to main
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: detach: killed outside:
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: detach: killed outside: can't run to main
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: detach: watchpoint:
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: detach: watchpoint: can't run to main
new FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0:
new FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: can't run to main
new FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1:
new FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: can't run to main
new FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0:
new FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: can't run to main
new FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1:
new FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: can't run to main
new FAIL: gdb.threads/pthread_cond_wait.exp:
PASS -> FAIL: gdb.threads/pthread_cond_wait.exp: backtrace in blocked thread
PASS -> FAIL: gdb.threads/pthread_cond_wait.exp: breakpoint on break_me
PASS -> FAIL: gdb.threads/pthread_cond_wait.exp: run to break_me
new FAIL: gdb.threads/pthreads.exp:
new FAIL: gdb.threads/queue-signal.exp:
new FAIL: gdb.threads/queue-signal.exp: can't run to main
new FAIL: gdb.threads/reconnect-signal.exp:
new FAIL: gdb.threads/reconnect-signal.exp: can't run to main
new FAIL: gdb.threads/schedlock.exp:
new FAIL: gdb.threads/siginfo-threads.exp:
new FAIL: gdb.threads/signal-command-handle-nopass.exp: step-over no:
new FAIL: gdb.threads/signal-command-handle-nopass.exp: step-over no: can't run to main
new FAIL: gdb.threads/signal-command-handle-nopass.exp: step-over yes:
new FAIL: gdb.threads/signal-command-handle-nopass.exp: step-over yes: can't run to main
new FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock off:
new FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock off: can't run to main
new FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock on:
new FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock on: can't run to main
new FAIL: gdb.threads/signal-delivered-right-thread.exp: continue:
new FAIL: gdb.threads/signal-delivered-right-thread.exp: continue: can't run to main
new FAIL: gdb.threads/signal-delivered-right-thread.exp: signal 0:
new FAIL: gdb.threads/signal-delivered-right-thread.exp: signal 0: can't run to main
new FAIL: gdb.threads/signal-sigtrap.exp:
new FAIL: gdb.threads/signal-sigtrap.exp: sigtrap thread 1:
new FAIL: gdb.threads/signal-sigtrap.exp: sigtrap thread 1: can't run to thread_function
new FAIL: gdb.threads/signal-sigtrap.exp: sigtrap thread 2:
new FAIL: gdb.threads/signal-sigtrap.exp: sigtrap thread 2: can't run to thread_function
new FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp:
new FAIL: gdb.threads/sigstep-threads.exp:
new FAIL: gdb.threads/sigthread.exp:
new FAIL: gdb.threads/sigthread.exp: can't run to main
new FAIL: gdb.threads/staticthreads.exp:
PASS -> FAIL: gdb.threads/staticthreads.exp: break sem_post
PASS -> FAIL: gdb.threads/staticthreads.exp: continue to main's call of sem_post
PASS -> FAIL: gdb.threads/staticthreads.exp: handle SIG32 helps
PASS -> KFAIL: gdb.threads/staticthreads.exp: info threads
PASS -> FAIL: gdb.threads/staticthreads.exp: rerun to main
new FAIL: gdb.threads/step-bg-decr-pc-switch-thread.exp:
new FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: step:
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue:
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next:
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step:
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue:
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next:
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step:
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=on: no thread-specific bp: continue:
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=on: no thread-specific bp: next:
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=on: no thread-specific bp: step:
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=on: with thread-specific bp: continue:
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=on: with thread-specific bp: next:
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=on: with thread-specific bp: step:
new FAIL: gdb.threads/stepi-random-signal.exp:
new FAIL: gdb.threads/stop-with-handle.exp:
new FAIL: gdb.threads/stop-with-handle.exp: can't run to main
new FAIL: gdb.threads/switch-threads.exp:
PASS -> FAIL: gdb.threads/switch-threads.exp: continue to breakpoint: continue to thread_func
PASS -> FAIL: gdb.threads/switch-threads.exp: next
new FAIL: gdb.threads/switch-threads.exp: setting breakpoint at thread_func
new FAIL: gdb.threads/thread-execl.exp: non-stop:
new FAIL: gdb.threads/thread-execl.exp: schedlock off:
new FAIL: gdb.threads/thread-execl.exp: schedlock on:
new FAIL: gdb.threads/thread-execl.exp: schedlock step:
new FAIL: gdb.threads/thread-find.exp:
PASS -> FAIL: gdb.threads/thread-find.exp: continue to breakpoint: main thread's sleep
PASS -> FAIL: gdb.threads/thread-find.exp: find thread name 1
PASS -> FAIL: gdb.threads/thread-find.exp: find thread name 2
PASS -> FAIL: gdb.threads/thread-find.exp: find thread name 3
PASS -> FAIL: gdb.threads/thread-find.exp: find thread name 4
PASS -> FAIL: gdb.threads/thread-find.exp: find thread name 5
PASS -> FAIL: gdb.threads/thread-find.exp: find thread name 6
PASS -> FAIL: gdb.threads/thread-find.exp: info thread foo
PASS -> FAIL: gdb.threads/thread-find.exp: info thread foo -1
PASS -> FAIL: gdb.threads/thread-find.exp: info threads 2 4 6
PASS -> FAIL: gdb.threads/thread-find.exp: info threads 3-3
PASS -> FAIL: gdb.threads/thread-find.exp: info threads 3-5
PASS -> FAIL: gdb.threads/thread-find.exp: name thread 1
PASS -> FAIL: gdb.threads/thread-find.exp: name thread 2
PASS -> FAIL: gdb.threads/thread-find.exp: name thread 3
PASS -> FAIL: gdb.threads/thread-find.exp: name thread 4
PASS -> FAIL: gdb.threads/thread-find.exp: name thread 5
PASS -> FAIL: gdb.threads/thread-find.exp: name thread 6
new FAIL: gdb.threads/thread-find.exp: setting breakpoint at 199
PASS -> FAIL: gdb.threads/thread-find.exp: test inverted range
PASS -> FAIL: gdb.threads/thread-find.exp: test regular exp
new FAIL: gdb.threads/thread-specific-bp.exp:
new FAIL: gdb.threads/thread-specific.exp:
PASS -> FAIL: gdb.threads/thread-specific.exp: continue to breakpoint: all threads started
PASS -> FAIL: gdb.threads/thread-specific.exp: get threads list
new FAIL: gdb.threads/thread-specific.exp: setting breakpoint at 39
new FAIL: gdb.threads/thread-unwindonsignal.exp:
new FAIL: gdb.threads/thread-unwindonsignal.exp: can't run to main
new FAIL: gdb.threads/thread_check.exp:
new FAIL: gdb.threads/thread_check.exp: can't run to main
new FAIL: gdb.threads/threadapply.exp:
new FAIL: gdb.threads/threadapply.exp: can't run to main
new FAIL: gdb.threads/threxit-hop-specific.exp:
PASS -> FAIL: gdb.threads/threxit-hop-specific.exp: continue to thread start
PASS -> FAIL: gdb.threads/threxit-hop-specific.exp: get past the thread specific breakpoint
PASS -> FAIL: gdb.threads/threxit-hop-specific.exp: set thread specific breakpoint
new FAIL: gdb.threads/threxit-hop-specific.exp: setting breakpoint at 47
new FAIL: gdb.threads/threxit-hop-specific.exp: setting breakpoint at thread_function
new FAIL: gdb.threads/tid-reuse.exp:
new FAIL: gdb.threads/tid-reuse.exp: can't run to main
new FAIL: gdb.threads/tls-core.exp:
PASS -> FAIL: gdb.threads/tls-core.exp: gcore
new FAIL: gdb.threads/tls-core.exp: gcore:
new FAIL: gdb.threads/tls-core.exp: native:
PASS -> FAIL: gdb.threads/tls-core.exp: native: load core file
new FAIL: gdb.threads/tls-core.exp: native: unsupported output from 'core' command
new FAIL: gdb.threads/tls-nodebug-pie.exp:
new FAIL: gdb.threads/tls-nodebug.exp:
new FAIL: gdb.threads/tls-nodebug.exp: can't run to main
new FAIL: gdb.threads/tls-shared.exp:
new FAIL: gdb.threads/tls-shared.exp: can't run to main
new FAIL: gdb.threads/tls-so_extern.exp:
new FAIL: gdb.threads/tls-so_extern.exp: can't run to main
new FAIL: gdb.threads/tls-var.exp:
new FAIL: gdb.threads/tls.exp:
new FAIL: gdb.threads/tls.exp: can't run to main
new FAIL: gdb.threads/vfork-follow-child-exec.exp: detach-on-fork=off:
new FAIL: gdb.threads/vfork-follow-child-exec.exp: detach-on-fork=off: can't run to main
new FAIL: gdb.threads/vfork-follow-child-exec.exp: detach-on-fork=on:
new FAIL: gdb.threads/vfork-follow-child-exec.exp: detach-on-fork=on: can't run to main
new FAIL: gdb.threads/vfork-follow-child-exit.exp: detach-on-fork=off:
new FAIL: gdb.threads/vfork-follow-child-exit.exp: detach-on-fork=off: can't run to main
new FAIL: gdb.threads/vfork-follow-child-exit.exp: detach-on-fork=on:
new FAIL: gdb.threads/vfork-follow-child-exit.exp: detach-on-fork=on: can't run to main
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded:
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded:
new FAIL: gdb.threads/watchthreads-reorder.exp: reorder0:
new FAIL: gdb.threads/watchthreads.exp:
new FAIL: gdb.threads/watchthreads.exp: can't run to main
new FAIL: gdb.threads/watchthreads2.exp:
new FAIL: gdb.threads/watchthreads2.exp: can't run to main
new FAIL: gdb.threads/wp-replication.exp:
new FAIL: gdb.threads/wp-replication.exp: failed to run to main
new FAIL: gdb.trace/actions-changed.exp:
new FAIL: gdb.trace/actions-changed.exp: can't run to main to check for trace support
new FAIL: gdb.trace/actions.exp:
new FAIL: gdb.trace/actions.exp: could not find gdb_recursion_test function
new FAIL: gdb.trace/ax.exp:
PASS -> FAIL: gdb.trace/ax.exp: maint agent
PASS -> FAIL: gdb.trace/ax.exp: maint agent 12
PASS -> FAIL: gdb.trace/ax.exp: maint agent-eval &gdb_long_test == &gdb_short_test
PASS -> FAIL: gdb.trace/ax.exp: maint agent-eval 12
new FAIL: gdb.trace/backtrace.exp:
new FAIL: gdb.trace/backtrace.exp: can't run to main to check for trace support
new FAIL: gdb.trace/change-loc.exp:
new FAIL: gdb.trace/change-loc.exp: can't run to main to check for trace support
new FAIL: gdb.trace/circ.exp:
new FAIL: gdb.trace/circ.exp: can't run to main to check for trace support
new FAIL: gdb.trace/collection.exp:
new FAIL: gdb.trace/deltrace.exp:
new FAIL: gdb.trace/deltrace.exp: could not find gdb_recursion_test function
new FAIL: gdb.trace/disconnected-tracing.exp:
new FAIL: gdb.trace/disconnected-tracing.exp: can't run to main to check for trace support
new FAIL: gdb.trace/entry-values.exp:
new FAIL: gdb.trace/entry-values.exp: disassemble bar
new FAIL: gdb.trace/entry-values.exp: find the call or branch instruction offset in bar
new FAIL: gdb.trace/ftrace-lock.exp:
new FAIL: gdb.trace/ftrace-lock.exp: can't run to main to check for trace support
new FAIL: gdb.trace/ftrace.exp:
new FAIL: gdb.trace/ftrace.exp: can't run to main to check for trace support
new FAIL: gdb.trace/infotrace.exp:
new FAIL: gdb.trace/infotrace.exp: setting tracepoints
new FAIL: gdb.trace/infotrace.exp: trace gdb_asm_test
new FAIL: gdb.trace/infotrace.exp: trace gdb_c_test
new FAIL: gdb.trace/mi-trace-frame-collected.exp:
new FAIL: gdb.trace/mi-trace-frame-collected.exp: can't run to main to check for trace support
new FAIL: gdb.trace/mi-trace-unavailable.exp:
new FAIL: gdb.trace/mi-trace-unavailable.exp: can't run to main to check for trace support
new FAIL: gdb.trace/mi-traceframe-changed.exp:
new FAIL: gdb.trace/mi-traceframe-changed.exp: can't run to main to check for trace support
PASS -> FAIL: gdb.trace/mi-traceframe-changed.exp: tfile: -trace-find frame-number 0
PASS -> UNRESOLVED: gdb.trace/mi-traceframe-changed.exp: tfile: select trace file
PASS -> FAIL: gdb.trace/mi-traceframe-changed.exp: tfile: tfind 0
PASS -> FAIL: gdb.trace/mi-traceframe-changed.exp: tfile: tfind 0 again
PASS -> FAIL: gdb.trace/mi-traceframe-changed.exp: tfile: tfind end
new FAIL: gdb.trace/mi-tracepoint-changed.exp:
new FAIL: gdb.trace/mi-tracepoint-changed.exp: can't run to main to check for trace support
new FAIL: gdb.trace/mi-tsv-changed.exp:
new FAIL: gdb.trace/mi-tsv-changed.exp: can't run to main to check for trace support
new FAIL: gdb.trace/mi-tsv-changed.exp: create delete modify:
new FAIL: gdb.trace/mi-tsv-changed.exp: create delete modify: can't run to main to check for trace support
PASS -> FAIL: gdb.trace/mi-tsv-changed.exp: create delete modify: delete all tvariables
PASS -> FAIL: gdb.trace/mi-tsv-changed.exp: create delete modify: delete tvariable $tvar2
PASS -> UNRESOLVED: gdb.trace/mi-tsv-changed.exp: create delete modify: tvariable $tvar1
PASS -> FAIL: gdb.trace/mi-tsv-changed.exp: create delete modify: tvariable $tvar1 modified
PASS -> FAIL: gdb.trace/mi-tsv-changed.exp: create delete modify: tvariable $tvar1 modified without notification
PASS -> FAIL: gdb.trace/mi-tsv-changed.exp: create delete modify: tvariable $tvar2
new FAIL: gdb.trace/no-attach-trace.exp:
new FAIL: gdb.trace/packetlen.exp:
new FAIL: gdb.trace/passc-dyn.exp:
new FAIL: gdb.trace/passcount.exp:
new FAIL: gdb.trace/passcount.exp: could not find gdb_recursion_test function
new FAIL: gdb.trace/pending.exp:
new FAIL: gdb.trace/pending.exp: can't run to main to check for trace support
new FAIL: gdb.trace/pr16508.exp:
new FAIL: gdb.trace/pr16508.exp: can't run to main to check for trace support
new FAIL: gdb.trace/qtro.exp:
new FAIL: gdb.trace/qtro.exp: can't run to main to check for trace support
new FAIL: gdb.trace/range-stepping.exp:
new FAIL: gdb.trace/range-stepping.exp: can't run to main to check for trace support
new FAIL: gdb.trace/read-memory.exp:
new FAIL: gdb.trace/read-memory.exp: can't run to main to check for trace support
new FAIL: gdb.trace/report.exp:
new FAIL: gdb.trace/save-trace.exp:
new FAIL: gdb.trace/save-trace.exp: could not find gdb_recursion_test function
new FAIL: gdb.trace/signal.exp:
new FAIL: gdb.trace/signal.exp: can't run to main to check for trace support
new FAIL: gdb.trace/status-stop.exp:
new FAIL: gdb.trace/status-stop.exp: can't run to main to check for trace support
new FAIL: gdb.trace/tfile.exp:
PASS -> FAIL: gdb.trace/tfile.exp: disassemble main
PASS -> FAIL: gdb.trace/tfile.exp: info tracepoints on trace file
PASS -> FAIL: gdb.trace/tfile.exp: print constglob on trace file
PASS -> FAIL: gdb.trace/tfile.exp: print nonconstglob on trace file
PASS -> FAIL: gdb.trace/tfile.exp: print testglob on trace file
PASS -> FAIL: gdb.trace/tfile.exp: print testglob2 on trace file
PASS -> FAIL: gdb.trace/tfile.exp: tfind 0 on trace file
new FAIL: gdb.trace/tfind.exp:
new FAIL: gdb.trace/trace-break.exp:
new FAIL: gdb.trace/trace-break.exp: can't run to main to check for trace support
new FAIL: gdb.trace/trace-buffer-size.exp:
new FAIL: gdb.trace/trace-buffer-size.exp: can't run to main to check for trace support
new FAIL: gdb.trace/trace-condition.exp:
new FAIL: gdb.trace/trace-condition.exp: can't run to main to check for trace support
new FAIL: gdb.trace/trace-enable-disable.exp:
new FAIL: gdb.trace/trace-enable-disable.exp: can't run to main to check for trace support
new FAIL: gdb.trace/trace-mt.exp:
new FAIL: gdb.trace/trace-mt.exp: can't run to main to check for trace support
new FAIL: gdb.trace/tracecmd.exp:
new FAIL: gdb.trace/tracecmd.exp: could not find gdb_recursion_test function
new FAIL: gdb.trace/tspeed.exp:
new FAIL: gdb.trace/tspeed.exp: can't run to main to check for trace support
new FAIL: gdb.trace/tstatus.exp:
new FAIL: gdb.trace/tstatus.exp: can't run to main to check for trace support
new FAIL: gdb.trace/tsv.exp:
new FAIL: gdb.trace/unavailable-dwarf-piece.exp:
new FAIL: gdb.trace/unavailable.exp:
new FAIL: gdb.trace/while-dyn.exp:
new FAIL: gdb.trace/while-stepping.exp:
new FAIL: gdb.trace/while-stepping.exp: could not find gdb_c_test function
new FAIL: gdb.trace/while-stepping.exp: trace gdb_c_test
new FAIL: gdb.tui/basic.exp:
PASS -> FAIL: gdb.tui/basic.exp: asm window shows main
PASS -> FAIL: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: split layout contents
new FAIL: gdb.tui/corefile-run.exp:
new FAIL: gdb.tui/list.exp:
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> FAIL: gdb.tui/list.exp: list main
PASS -> FAIL: gdb.tui/main.exp: show main after file
new FAIL: gdb.tui/regs.exp:
new FAIL: gdb.tui/resize.exp:
new FAIL: gdb.tui/tui-disasm-long-lines.exp:
new FAIL: gdb.tui/tui-layout.exp:
new FAIL: gdb.tui/tui-layout.exp: execution=0: layout=asm:
new FAIL: gdb.tui/tui-layout.exp: execution=0: layout=reg:
new FAIL: gdb.tui/tui-layout.exp: execution=0: layout=split:
new FAIL: gdb.tui/tui-layout.exp: execution=0: layout=src:
new FAIL: gdb.tui/tui-layout.exp: execution=1: layout=asm:
new FAIL: gdb.tui/tui-layout.exp: execution=1: layout=asm: can't run to main
new FAIL: gdb.tui/tui-layout.exp: execution=1: layout=reg:
new FAIL: gdb.tui/tui-layout.exp: execution=1: layout=reg: can't run to main
new FAIL: gdb.tui/tui-layout.exp: execution=1: layout=split:
new FAIL: gdb.tui/tui-layout.exp: execution=1: layout=split: can't run to main
new FAIL: gdb.tui/tui-layout.exp: execution=1: layout=src:
new FAIL: gdb.tui/tui-layout.exp: execution=1: layout=src: can't run to main
new FAIL: gdb.tui/winheight.exp:
==============================================

*** 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/7c/7cac64af7bc6a7f7a86f90a1465f7c3d2b6f07e8//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/7c/7cac64af7bc6a7f7a86f90a1465f7c3d2b6f07e8//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-12 11:44 [binutils-gdb] Remove duplicate cast gdb-buildbot
@ 2019-12-12 12:09 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-12 12:09 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/1418

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        199d46bebbe66a3f60717d3aa3d7b7559680d40b

Subject of commit:
        Remove duplicate cast

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/19/199d46bebbe66a3f60717d3aa3d7b7559680d40b/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/19/199d46bebbe66a3f60717d3aa3d7b7559680d40b//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/19/199d46bebbe66a3f60717d3aa3d7b7559680d40b//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-12  4:32 [binutils-gdb] First use of tui_layout gdb-buildbot
@ 2019-12-12  5:01 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-12  5:01 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/1414

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        2192a9d3b31a595eb7add928221d49334f32c06d

Subject of commit:
        First use of tui_layout

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/21/2192a9d3b31a595eb7add928221d49334f32c06d/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/21/2192a9d3b31a595eb7add928221d49334f32c06d//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/21/2192a9d3b31a595eb7add928221d49334f32c06d//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-11 22:13 [binutils-gdb] Bump version to 10.0.50.DATE-git gdb-buildbot
@ 2019-12-11 22:56 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-11 22:56 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/1407

Author:
        Joel Brobecker <brobecker@adacore.com>

Commit tested:
        d746744ebbb319b8a75e522a36bbd9a4d9cf5747

Subject of commit:
        Bump version to 10.0.50.DATE-git.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/d7/d746744ebbb319b8a75e522a36bbd9a4d9cf5747/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/default.exp: show convenience
==============================================

*** 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/d7/d746744ebbb319b8a75e522a36bbd9a4d9cf5747//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/d7/d746744ebbb319b8a75e522a36bbd9a4d9cf5747//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-11 21:52 [binutils-gdb] Fix build on macOS gdb-buildbot
@ 2019-12-11 22:01 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-11 22:01 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/1406

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        2e744276988acd52b967d2505c42ef170147b5f9

Subject of commit:
        Fix build on macOS

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/2e/2e744276988acd52b967d2505c42ef170147b5f9/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/2e/2e744276988acd52b967d2505c42ef170147b5f9//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/2e/2e744276988acd52b967d2505c42ef170147b5f9//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-11 19:24 [binutils-gdb] Implement 'print -raw-values' and 'set print raw-values on|off' gdb-buildbot
@ 2019-12-11 19:56 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-11 19:56 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/1401

Author:
        Philippe Waroquiers <philippe.waroquiers@skynet.be>

Commit tested:
        d8edc8b768f0f611088161161392e1075134d635

Subject of commit:
        Implement 'print -raw-values' and 'set print raw-values on|off'

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/d8/d8edc8b768f0f611088161161392e1075134d635/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/d8/d8edc8b768f0f611088161161392e1075134d635//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/d8/d8edc8b768f0f611088161161392e1075134d635//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-11 17:56 [binutils-gdb] ubsan: vax: left shift cannot be represented in type 'int' gdb-buildbot
@ 2019-12-11 18:28 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-11 18:28 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/1399

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        5c05618a0a1f94565001a19da28595ce1dc537f8

Subject of commit:
        ubsan: vax: left shift cannot be represented in type 'int'

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/5c/5c05618a0a1f94565001a19da28595ce1dc537f8/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/5c/5c05618a0a1f94565001a19da28595ce1dc537f8//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/5c/5c05618a0a1f94565001a19da28595ce1dc537f8//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-11 17:05 [binutils-gdb] ubsan: v850: left shift cannot be represented in type 'long' gdb-buildbot
@ 2019-12-11 17:50 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-11 17:50 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/1398

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        2a81ccbbbf81ab9c66ba366a0c1da7abb6460423

Subject of commit:
        ubsan: v850: left shift cannot be represented in type 'long'

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/2a/2a81ccbbbf81ab9c66ba366a0c1da7abb6460423/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/2a/2a81ccbbbf81ab9c66ba366a0c1da7abb6460423//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/2a/2a81ccbbbf81ab9c66ba366a0c1da7abb6460423//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-11 15:31 [binutils-gdb] ubsan: tic4x: segv and signed shifts gdb-buildbot
@ 2019-12-11 16:09 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-11 16:09 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/1396

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        66152f16685fe63a5b2eb941c2d7057bbff5cfe5

Subject of commit:
        ubsan: tic4x: segv and signed shifts

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/66/66152f16685fe63a5b2eb941c2d7057bbff5cfe5/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/66/66152f16685fe63a5b2eb941c2d7057bbff5cfe5//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/66/66152f16685fe63a5b2eb941c2d7057bbff5cfe5//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-11 14:22 [binutils-gdb] ubsan: s12z: left shift cannot be represented in type 'int' gdb-buildbot
@ 2019-12-11 15:05 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-11 15:05 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/1395

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        205c426a9bb387204a21165e2275e31c32248035

Subject of commit:
        ubsan: s12z: left shift cannot be represented in type 'int'

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/20/205c426a9bb387204a21165e2275e31c32248035/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/20/205c426a9bb387204a21165e2275e31c32248035//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/20/205c426a9bb387204a21165e2275e31c32248035//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-11 11:44 [binutils-gdb] ubsan: m68k: left shift cannot be represented in type 'int' gdb-buildbot
@ 2019-12-11 11:50 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-11 11:50 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/1391

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        334175b693a1cbab8850f5faa6937e7c6ca3db7d

Subject of commit:
        ubsan: m68k: left shift cannot be represented in type 'int'

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/33/334175b693a1cbab8850f5faa6937e7c6ca3db7d/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/33/334175b693a1cbab8850f5faa6937e7c6ca3db7d//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/33/334175b693a1cbab8850f5faa6937e7c6ca3db7d//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-11  9:31 [binutils-gdb] ussan: d30v: index out of bounds gdb-buildbot
@ 2019-12-11 10:42 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-11 10:42 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/1389

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        159653d8c0bcc45b479e4329c2e5f304fa942280

Subject of commit:
        ussan: d30v: index out of bounds

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/15/159653d8c0bcc45b479e4329c2e5f304fa942280/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/15/159653d8c0bcc45b479e4329c2e5f304fa942280//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/15/159653d8c0bcc45b479e4329c2e5f304fa942280//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-11  7:38 [binutils-gdb] ubsan: cr16: left shift cannot be represented in type 'int' gdb-buildbot
@ 2019-12-11  7:52 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-11  7:52 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/1386

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        0ef562a4b5da6bc1f16b2ea801b228acafd033d8

Subject of commit:
        ubsan: cr16: left shift cannot be represented in type 'int'

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/0e/0ef562a4b5da6bc1f16b2ea801b228acafd033d8/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/0e/0ef562a4b5da6bc1f16b2ea801b228acafd033d8//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/0e/0ef562a4b5da6bc1f16b2ea801b228acafd033d8//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-11  6:54 [binutils-gdb] ubsan: bfin: shift exponent is too large gdb-buildbot
@ 2019-12-11  6:55 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-11  6:55 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/1385

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        2fd2b153a3819d3ab6b9c4cf06943d498187714c

Subject of commit:
        ubsan: bfin: shift exponent is too large

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/2f/2fd2b153a3819d3ab6b9c4cf06943d498187714c/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/break-unload-file.exp: cmdline: always-inserted on: hbreak: continue
PASS -> FAIL: gdb.base/watchpoint-reuse-slot.exp: hw-watch: always-inserted off: watch x watch: : width 1, iter 0: base + 0: delete $bpnum
PASS -> FAIL: gdb.base/watchpoint-reuse-slot.exp: hw-watch: always-inserted off: watch x watch: : width 1, iter 0: base + 0: stepi advanced
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
PASS -> FAIL: gdb.base/watchpoint-solib.exp: rerun to main
==============================================

*** 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/2f/2fd2b153a3819d3ab6b9c4cf06943d498187714c//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/2f/2fd2b153a3819d3ab6b9c4cf06943d498187714c//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-11  3:32 [binutils-gdb] ubsan: xtensa: left shift cannot be represented in type 'int' gdb-buildbot
@ 2019-12-11  3:46 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-11  3:46 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/1381

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        567607c11fbf710513d0924192f3ed528c02d76f

Subject of commit:
        ubsan: xtensa: left shift cannot be represented in type 'int'

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/56/567607c11fbf710513d0924192f3ed528c02d76f/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/56/567607c11fbf710513d0924192f3ed528c02d76f//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/56/567607c11fbf710513d0924192f3ed528c02d76f//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-11  1:34 [binutils-gdb] ubsan: ia64: left shift of negative value gdb-buildbot
@ 2019-12-11  2:06 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-11  2:06 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/1379

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        8ff23dba80b80a9f47d75dd43812e041f6674763

Subject of commit:
        ubsan: ia64: left shift of negative value

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/8f/8ff23dba80b80a9f47d75dd43812e041f6674763/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/8f/8ff23dba80b80a9f47d75dd43812e041f6674763//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/8f/8ff23dba80b80a9f47d75dd43812e041f6674763//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-10 23:15 [binutils-gdb] Add gdb_compile_openmp to lib/gdb.exp gdb-buildbot
@ 2019-12-10 23:43 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-10 23:43 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/1376

Author:
        Kevin Buettner <kevinb@redhat.com>

Commit tested:
        26b911fb6411c930cf408a82604dc4355c086e03

Subject of commit:
        Add gdb_compile_openmp to lib/gdb.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/26/26b911fb6411c930cf408a82604dc4355c086e03/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/26/26b911fb6411c930cf408a82604dc4355c086e03//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/26/26b911fb6411c930cf408a82604dc4355c086e03//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-10 20:07 [binutils-gdb] Suppress the "unused function" warning for select_strerror_r gdb-buildbot
@ 2019-12-10 20:45 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-10 20:45 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/1375

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        cb51113052d534b628c635ac7b86b95fe436d60d

Subject of commit:
        Suppress the "unused function" warning for select_strerror_r

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/cb/cb51113052d534b628c635ac7b86b95fe436d60d/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/cb/cb51113052d534b628c635ac7b86b95fe436d60d//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/cb/cb51113052d534b628c635ac7b86b95fe436d60d//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-10 16:39 [binutils-gdb] Normalize Ada ptype to use a single "?" gdb-buildbot
@ 2019-12-10 17:30 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-10 17:30 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/1373

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        6c71eb7d70c3678f595cd8e66d78c9da5bd3ef4e

Subject of commit:
        Normalize Ada ptype to use a single "?"

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/6c/6c71eb7d70c3678f595cd8e66d78c9da5bd3ef4e/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/6c/6c71eb7d70c3678f595cd8e66d78c9da5bd3ef4e//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/6c/6c71eb7d70c3678f595cd8e66d78c9da5bd3ef4e//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-10  1:43 [binutils-gdb] Use disassemble_info.private_data in place of insn_sets gdb-buildbot
@ 2019-12-10  1:36 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-10  1:36 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/1371

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        103ebbc35cc1975442e1e6233207d8d7b2016556

Subject of commit:
        Use disassemble_info.private_data in place of insn_sets

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/10/103ebbc35cc1975442e1e6233207d8d7b2016556/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
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/Ubuntu-Aarch64-native-gdbserver-m64/10/103ebbc35cc1975442e1e6233207d8d7b2016556//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/10/103ebbc35cc1975442e1e6233207d8d7b2016556//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-10  0:50 [binutils-gdb] Remove backup ppc struct dis_private gdb-buildbot
@ 2019-12-10  0:56 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-10  0:56 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/1370

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        6f0e0752309e3e3016a48db1672e3092c677020c

Subject of commit:
        Remove backup ppc struct dis_private.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/6f/6f0e0752309e3e3016a48db1672e3092c677020c/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/6f/6f0e0752309e3e3016a48db1672e3092c677020c//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/6f/6f0e0752309e3e3016a48db1672e3092c677020c//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-09 18:21 [binutils-gdb] gdb: rank an lvalue argument incompatible for an rvalue parameter gdb-buildbot
@ 2019-12-09 18:20 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-09 18:20 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/1367

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        330f1d3825daa0d9e8d6c54f4fcf6fa5800e5664

Subject of commit:
        gdb: rank an lvalue argument incompatible for an rvalue parameter

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/33/330f1d3825daa0d9e8d6c54f4fcf6fa5800e5664/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/33/330f1d3825daa0d9e8d6c54f4fcf6fa5800e5664//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/33/330f1d3825daa0d9e8d6c54f4fcf6fa5800e5664//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-09 14:21 [binutils-gdb] gdb/testsuite/fortran: Fix info-modules/info-types for gfortran 8+ gdb-buildbot
@ 2019-12-09 14:46 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-09 14:46 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/1364

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        d57cbee932f86df06251498daa93154046dc77c0

Subject of commit:
        gdb/testsuite/fortran: Fix info-modules/info-types for gfortran 8+

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/d5/d57cbee932f86df06251498daa93154046dc77c0/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/d5/d57cbee932f86df06251498daa93154046dc77c0//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/d5/d57cbee932f86df06251498daa93154046dc77c0//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-06 18:27 [binutils-gdb] [gdb/symtab] Prefer var def over decl gdb-buildbot
@ 2019-12-06 19:00 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-06 19:00 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/1355

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        93e55f0a031b0e677d22aaba00857de902ebe685

Subject of commit:
        [gdb/symtab] Prefer var def over decl

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/93/93e55f0a031b0e677d22aaba00857de902ebe685/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/93/93e55f0a031b0e677d22aaba00857de902ebe685//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/93/93e55f0a031b0e677d22aaba00857de902ebe685//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-06  8:34 [binutils-gdb] gdb/testsuite: do minor clean-up in gdb.cp/rvalue-ref-overload.exp gdb-buildbot
@ 2019-12-06  9:08 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-06  9:08 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/1354

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        c7d12402bd6cdedc5f09c2a46285fbcb0f7f0557

Subject of commit:
        gdb/testsuite: do minor clean-up in gdb.cp/rvalue-ref-overload.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/c7/c7d12402bd6cdedc5f09c2a46285fbcb0f7f0557/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/c7/c7d12402bd6cdedc5f09c2a46285fbcb0f7f0557//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/c7/c7d12402bd6cdedc5f09c2a46285fbcb0f7f0557//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-06  7:54 [binutils-gdb] gdb: fix overload resolution for see-through references gdb-buildbot
@ 2019-12-06  9:05 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-06  9:05 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/1353

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        06acc08f0aa81d0053e9a60bc3bdc1ea3321962e

Subject of commit:
        gdb: fix overload resolution for see-through references

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/06/06acc08f0aa81d0053e9a60bc3bdc1ea3321962e/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/06/06acc08f0aa81d0053e9a60bc3bdc1ea3321962e//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/06/06acc08f0aa81d0053e9a60bc3bdc1ea3321962e//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-06  5:39 [binutils-gdb] Fix crash when command arg is missing in faas/taas/tfaas commands gdb-buildbot
@ 2019-12-06  6:13 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-06  6:13 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/1352

Author:
        Philippe Waroquiers <philippe.waroquiers@skynet.be>

Commit tested:
        e0fad1eadfcb68d543cdd96f44dca86364778fa2

Subject of commit:
        Fix crash when command arg is missing in faas/taas/tfaas commands.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/e0/e0fad1eadfcb68d543cdd96f44dca86364778fa2/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/e0/e0fad1eadfcb68d543cdd96f44dca86364778fa2//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/e0/e0fad1eadfcb68d543cdd96f44dca86364778fa2//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-05 20:37 [binutils-gdb] Remove gdbarch parameter of lookup_typename gdb-buildbot
@ 2019-12-05 21:12 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-05 21:12 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/1349

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        b858499daf0a824a518bac8bc13495ad856ab10d

Subject of commit:
        Remove gdbarch parameter of lookup_typename

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/b8/b858499daf0a824a518bac8bc13495ad856ab10d/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/b8/b858499daf0a824a518bac8bc13495ad856ab10d//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/b8/b858499daf0a824a518bac8bc13495ad856ab10d//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-05  5:36 [binutils-gdb] PR25249, Memory leak in microblaze-dis.c gdb-buildbot
@ 2019-12-05  5:33 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-05  5:33 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/1346

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        378fd436405b3051df34ac995b2e03fe1f3d1907

Subject of commit:
        PR25249, Memory leak in microblaze-dis.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/37/378fd436405b3051df34ac995b2e03fe1f3d1907/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/37/378fd436405b3051df34ac995b2e03fe1f3d1907//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/37/378fd436405b3051df34ac995b2e03fe1f3d1907//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-05  3:21 [binutils-gdb] gdb/testsuite: Use -J option when compiling Fortran tests gdb-buildbot
@ 2019-12-05  3:04 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-05  3:04 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/1343

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        8d70a9f0938b9e9efc4fd2eee80cf806b5e97a4a

Subject of commit:
        gdb/testsuite: Use -J option when compiling Fortran tests

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/8d/8d70a9f0938b9e9efc4fd2eee80cf806b5e97a4a/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/8d/8d70a9f0938b9e9efc4fd2eee80cf806b5e97a4a//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/8d/8d70a9f0938b9e9efc4fd2eee80cf806b5e97a4a//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-05  1:46 [binutils-gdb] gdb/fortran: Support for single/double type modifiers gdb-buildbot
@ 2019-12-05  2:21 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-05  2:21 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/1342

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        36c8fb93c9d4135ce3c1561f5f3886b1b0bf31f6

Subject of commit:
        gdb/fortran: Support for single/double type modifiers

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/36/36c8fb93c9d4135ce3c1561f5f3886b1b0bf31f6/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/36/36c8fb93c9d4135ce3c1561f5f3886b1b0bf31f6//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/36/36c8fb93c9d4135ce3c1561f5f3886b1b0bf31f6//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-05  0:06 [binutils-gdb] Fix regcache::cooked_read_test selftest for mep gdb-buildbot
@ 2019-12-05  1:02 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-05  1:02 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/1340

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        894ecaf4cad84e6d50d97d36f5ddaf3695734c35

Subject of commit:
        Fix regcache::cooked_read_test selftest for mep

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/89/894ecaf4cad84e6d50d97d36f5ddaf3695734c35/

*** Diff to previous build ***
==============================================
FAIL -> UNRESOLVED: gdb.gdb/unittest.exp: maintenance check xml-descriptions ${srcdir}/../features
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/Ubuntu-Aarch64-native-gdbserver-m64/89/894ecaf4cad84e6d50d97d36f5ddaf3695734c35//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/894ecaf4cad84e6d50d97d36f5ddaf3695734c35//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-04 23:40 [binutils-gdb] Remove unused includes in aarch64-linux-tdep.c gdb-buildbot
@ 2019-12-04 23:53 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-04 23:53 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/1339

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        be155ebb949dd8e7ef6a494a9c276c3c4673643c

Subject of commit:
        Remove unused includes in aarch64-linux-tdep.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/be/be155ebb949dd8e7ef6a494a9c276c3c4673643c/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/be/be155ebb949dd8e7ef6a494a9c276c3c4673643c//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/be/be155ebb949dd8e7ef6a494a9c276c3c4673643c//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-04 21:13 [binutils-gdb] sim-utils.c: prevent buffer overflow gdb-buildbot
@ 2019-12-04 21:42 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-04 21:42 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/1336

Author:
        Pavel I. Kryukov <kryukov@frtk.ru>

Commit tested:
        f47674be8e90a84edae49ec2b781201ea2f050bd

Subject of commit:
        sim-utils.c: prevent buffer overflow.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/f4/f47674be8e90a84edae49ec2b781201ea2f050bd/

*** Diff to previous build ***
==============================================
new FAIL: gdb.mi/mi-async.exp: CLI next: send
new FAIL: gdb.mi/mi-async.exp: CLI next: stop
new FAIL: gdb.mi/mi-async.exp: restart: send
new FAIL: gdb.mi/mi-async.exp: restart: stop
new FAIL: gdb.mi/mi-async.exp: start: send
new FAIL: gdb.mi/mi-async.exp: start: stop
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: list of breakpoints
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: list of breakpoints
new FAIL: gdb.mi/mi-detach.exp: detach
new KFAIL: gdb.mi/mi-until.exp: until after while loop
new KFAIL: gdb.opt/inline-cmds.exp: next to second func1
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 2
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 3
new KFAIL: gdb.pascal/types.exp: pt 'a simple string'
new KFAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new FAIL: gdb.server/ext-run.exp: get process list
new FAIL: gdb.server/solib-list.exp: non-stop 0: p libvar
new FAIL: gdb.server/solib-list.exp: non-stop 1: p libvar
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=3: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=4: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=5: created new thread
==============================================

*** 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/f4/f47674be8e90a84edae49ec2b781201ea2f050bd//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/f4/f47674be8e90a84edae49ec2b781201ea2f050bd//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-04 20:05 [binutils-gdb] Propagate endianity to subrange types gdb-buildbot
@ 2019-12-04 19:53 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-04 19:53 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/1334

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        a05cf17ab92357449ed62fa0d1bac7389ee2de09

Subject of commit:
        Propagate endianity to subrange types

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/a0/a05cf17ab92357449ed62fa0d1bac7389ee2de09/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/a0/a05cf17ab92357449ed62fa0d1bac7389ee2de09//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/a0/a05cf17ab92357449ed62fa0d1bac7389ee2de09//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-04 17:42 [binutils-gdb] Move type_byte_order earlier gdb-buildbot
@ 2019-12-04 18:21 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-04 18:21 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/1332

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        7ab4a236ce85f1e0950e88e267e679a066b77bed

Subject of commit:
        Move type_byte_order earlier

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/7a/7ab4a236ce85f1e0950e88e267e679a066b77bed/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/7a/7ab4a236ce85f1e0950e88e267e679a066b77bed//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/7a/7ab4a236ce85f1e0950e88e267e679a066b77bed//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-04 15:34 [binutils-gdb] Silence maybe-uninitialized warning in dwarf2read.c gdb-buildbot
@ 2019-12-04 15:43 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-04 15:43 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/1329

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        feee869bd84841bc048b4ca60a8713d80f8be5d9

Subject of commit:
        Silence maybe-uninitialized warning in dwarf2read.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/fe/feee869bd84841bc048b4ca60a8713d80f8be5d9/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/fe/feee869bd84841bc048b4ca60a8713d80f8be5d9//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/fe/feee869bd84841bc048b4ca60a8713d80f8be5d9//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-04 11:31 [binutils-gdb] x86-64: accept 64-bit LFS/LGS/LSS forms with suffix or operand size specifier gdb-buildbot
@ 2019-12-04 12:09 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-04 12:09 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/1325

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        0ba59a29407a9d24559a653ce0401a26d9a37aaa

Subject of commit:
        x86-64: accept 64-bit LFS/LGS/LSS forms with suffix or operand size specifier

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/0b/0ba59a29407a9d24559a653ce0401a26d9a37aaa/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/0b/0ba59a29407a9d24559a653ce0401a26d9a37aaa//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/0b/0ba59a29407a9d24559a653ce0401a26d9a37aaa//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-04 11:11 [binutils-gdb] x86/Intel: extend MOVDIRI testing gdb-buildbot
@ 2019-12-04 11:25 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-04 11:25 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/1324

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        77ad80922bf3042536fc41b19cc0bf230ea485b4

Subject of commit:
        x86/Intel: extend MOVDIRI testing

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/77/77ad80922bf3042536fc41b19cc0bf230ea485b4/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/77/77ad80922bf3042536fc41b19cc0bf230ea485b4//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/77/77ad80922bf3042536fc41b19cc0bf230ea485b4//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-03 21:22 [binutils-gdb] Fix leak of symbol name in block_symbol_cache gdb-buildbot
@ 2019-12-03 21:34 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-03 21:34 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/1321

Author:
        Philippe Waroquiers <philippe.waroquiers@skynet.be>

Commit tested:
        82f910ea9cce04b0faabfcd022d9d8949567541e

Subject of commit:
        Fix leak of symbol name in block_symbol_cache

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/82/82f910ea9cce04b0faabfcd022d9d8949567541e/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/82/82f910ea9cce04b0faabfcd022d9d8949567541e//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/82/82f910ea9cce04b0faabfcd022d9d8949567541e//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-03  9:39 [binutils-gdb] dwarf2.c: read_abbrevs fail cleanup, and offset checking gdb-buildbot
@ 2019-12-03  9:54 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-03  9:54 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/1318

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        019cc8758a68d016db920f96de3273a2824929d1

Subject of commit:
        dwarf2.c: read_abbrevs fail cleanup, and offset checking

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/01/019cc8758a68d016db920f96de3273a2824929d1/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/01/019cc8758a68d016db920f96de3273a2824929d1//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/01/019cc8758a68d016db920f96de3273a2824929d1//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-03  9:09 [binutils-gdb] dwarf2.c stash->sec_info_ptr and stash->sec gdb-buildbot
@ 2019-12-03  9:09 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-03  9:09 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/1317

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        1b8e12713b399450f8befc5f52442219f1f63669

Subject of commit:
        dwarf2.c stash->sec_info_ptr and stash->sec

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/1b/1b8e12713b399450f8befc5f52442219f1f63669/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/1b/1b8e12713b399450f8befc5f52442219f1f63669//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/1b/1b8e12713b399450f8befc5f52442219f1f63669//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-01 20:32 [binutils-gdb] Add TUI border colors gdb-buildbot
@ 2019-12-01 20:32 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-01 20:32 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/1304

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        a2a7af0c33869f08a999d5d1b301017138cbeb7a

Subject of commit:
        Add TUI border colors

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/a2/a2a7af0c33869f08a999d5d1b301017138cbeb7a/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/a2/a2a7af0c33869f08a999d5d1b301017138cbeb7a//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/a2/a2a7af0c33869f08a999d5d1b301017138cbeb7a//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-01 19:22 [binutils-gdb] Allow using less horizontal space in TUI source window gdb-buildbot
@ 2019-12-01 19:49 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-12-01 19:49 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/1303

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        d1da6b01608841c846aa75209248e276f49e1587

Subject of commit:
        Allow using less horizontal space in TUI source window

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/d1/d1da6b01608841c846aa75209248e276f49e1587/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: detach: continue
==============================================

*** 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/d1/d1da6b01608841c846aa75209248e276f49e1587//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/d1/d1da6b01608841c846aa75209248e276f49e1587//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-29 12:41 [binutils-gdb] gdb: improve debug output of function overload resolution gdb-buildbot
@ 2019-11-29 12:56 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-29 12:56 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/1296

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        a992a3b010983dc370c462dc467893724afbbde9

Subject of commit:
        gdb: improve debug output of function overload resolution

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/a9/a992a3b010983dc370c462dc467893724afbbde9/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/a9/a992a3b010983dc370c462dc467893724afbbde9//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/a9/a992a3b010983dc370c462dc467893724afbbde9//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-28  0:30 [binutils-gdb] Fix BZ 25065 - Ensure that physnames are computed for inherited DIEs gdb-buildbot
@ 2019-11-28  0:30 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-28  0:30 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/1283

Author:
        Kevin Buettner <kevinb@redhat.com>

Commit tested:
        8d9a2568651d55eb518d3ac6c0dd0b4719da7f77

Subject of commit:
        Fix BZ 25065 - Ensure that physnames are computed for inherited DIEs

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/8d/8d9a2568651d55eb518d3ac6c0dd0b4719da7f77/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/8d/8d9a2568651d55eb518d3ac6c0dd0b4719da7f77//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/8d/8d9a2568651d55eb518d3ac6c0dd0b4719da7f77//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-27 22:03 [binutils-gdb] gdb/mi: Add -symbol-info-modules command gdb-buildbot
@ 2019-11-27 22:18 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-27 22:18 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/1280

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        db5960b4d22761507097f816b1dac3bb56a22bb5

Subject of commit:
        gdb/mi: Add -symbol-info-modules command

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/db/db5960b4d22761507097f816b1dac3bb56a22bb5/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/db/db5960b4d22761507097f816b1dac3bb56a22bb5//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/db/db5960b4d22761507097f816b1dac3bb56a22bb5//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-27 17:15 [binutils-gdb] Correct R_SH_IND12W handling gdb-buildbot
@ 2019-11-27 17:45 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-27 17:45 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/1274

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        96e2dbda089775359b130e16a337c169d67abc6b

Subject of commit:
        Correct R_SH_IND12W handling

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/96/96e2dbda089775359b130e16a337c169d67abc6b/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/96/96e2dbda089775359b130e16a337c169d67abc6b//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/96/96e2dbda089775359b130e16a337c169d67abc6b//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-27 14:34 [binutils-gdb] Add add_internal_function overload gdb-buildbot
@ 2019-11-27 15:36 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-27 15:36 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/1271

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        1a6d41c6433a0980f302c480b1d1db71234b49e4

Subject of commit:
        Add add_internal_function overload

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/1a/1a6d41c6433a0980f302c480b1d1db71234b49e4/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted on: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted on: run to main
==============================================

*** 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/1a/1a6d41c6433a0980f302c480b1d1db71234b49e4//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/1a/1a6d41c6433a0980f302c480b1d1db71234b49e4//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-27 15:22 [binutils-gdb] Use cmd_list_element::doc_allocated for Python commands gdb-buildbot
@ 2019-11-27 15:22 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-27 15:22 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/1270

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        8318f3c337cf46ee6309b4a7f06f3934fc94b4bd

Subject of commit:
        Use cmd_list_element::doc_allocated for Python commands

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/83/8318f3c337cf46ee6309b4a7f06f3934fc94b4bd/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/83/8318f3c337cf46ee6309b4a7f06f3934fc94b4bd//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/83/8318f3c337cf46ee6309b4a7f06f3934fc94b4bd//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-27 13:55 [binutils-gdb] Set names of worker threads gdb-buildbot
@ 2019-11-27 14:09 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-27 14:09 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/1269

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        4da8c3a8a5d1962d24fb374122c473f930eba386

Subject of commit:
        Set names of worker threads

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/4d/4da8c3a8a5d1962d24fb374122c473f930eba386/

*** Diff to previous build ***
==============================================
new KPASS: gdb.cp/cpexprs.exp: p CV::m
new KFAIL: gdb.cp/local.exp: ptype InnerLocal::NestedInnerLocal
new KFAIL: gdb.cp/oranking.exp: p foo0
new KFAIL: gdb.cp/oranking.exp: p foo10
new KFAIL: gdb.cp/oranking.exp: p foo11
new KFAIL: gdb.cp/oranking.exp: p foo13
new KFAIL: gdb.cp/oranking.exp: p foo14
new KFAIL: gdb.cp/oranking.exp: p foo2
new KFAIL: gdb.cp/rvalue-ref-overload.exp: rvalue reference overload
new KFAIL: gdb.cp/templates.exp: ptype fvpchar
new KFAIL: gdb.cp/var-tag.exp: global collision: print global
new KFAIL: gdb.dwarf2/dw2-simple-locdesc.exp: p &s.shl
==============================================

*** 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/4d/4da8c3a8a5d1962d24fb374122c473f930eba386//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/4d/4da8c3a8a5d1962d24fb374122c473f930eba386//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-27 12:05 [binutils-gdb] Add maint set/show worker-threads gdb-buildbot
@ 2019-11-27 12:40 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-27 12:40 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/1267

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        22138db609721897c213e5a08ccaca206c0fb1f6

Subject of commit:
        Add maint set/show worker-threads

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/22/22138db609721897c213e5a08ccaca206c0fb1f6/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/22/22138db609721897c213e5a08ccaca206c0fb1f6//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/22/22138db609721897c213e5a08ccaca206c0fb1f6//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-27 10:30 [binutils-gdb] Introduce thread-safe way to handle SIGSEGV gdb-buildbot
@ 2019-11-27 10:30 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-27 10:30 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/1264

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        3b3978bca2a204a772563c8e121e4a02be72e802

Subject of commit:
        Introduce thread-safe way to handle SIGSEGV

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/3b/3b3978bca2a204a772563c8e121e4a02be72e802/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/3b/3b3978bca2a204a772563c8e121e4a02be72e802//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/3b/3b3978bca2a204a772563c8e121e4a02be72e802//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-27  4:36 [binutils-gdb] Remove simulator_command declaration, make static gdb-buildbot
@ 2019-11-27  4:36 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-27  4:36 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/1256

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        d04afd58be9a490ab5ff0ea5ee6020f3d2781002

Subject of commit:
        Remove simulator_command declaration, make static

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/d0/d04afd58be9a490ab5ff0ea5ee6020f3d2781002/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/d0/d04afd58be9a490ab5ff0ea5ee6020f3d2781002//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/d0/d04afd58be9a490ab5ff0ea5ee6020f3d2781002//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-27  3:38 [binutils-gdb] Make functions static in unittests gdb-buildbot
@ 2019-11-27  3:52 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-27  3:52 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/1255

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        dd694d7740f4eacd8b7bcf4183ca31810e69e9d5

Subject of commit:
        Make functions static in unittests

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/dd/dd694d7740f4eacd8b7bcf4183ca31810e69e9d5/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/dd/dd694d7740f4eacd8b7bcf4183ca31810e69e9d5//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/dd/dd694d7740f4eacd8b7bcf4183ca31810e69e9d5//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-27  2:10 [binutils-gdb] Remove unused rbreak_command_wrapper and other declarations gdb-buildbot
@ 2019-11-27  2:25 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-27  2:25 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/1253

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        adce99fe6988c7d5543ef5b996acac57a117372b

Subject of commit:
        Remove unused rbreak_command_wrapper and other declarations

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/ad/adce99fe6988c7d5543ef5b996acac57a117372b/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/ad/adce99fe6988c7d5543ef5b996acac57a117372b//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/ad/adce99fe6988c7d5543ef5b996acac57a117372b//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-27  0:04 [binutils-gdb] Remove dict_empty/mdict_empty gdb-buildbot
@ 2019-11-27  0:04 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-27  0:04 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/1250

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        b62f6f5435efa0bedf5a363ee09552285b1f1372

Subject of commit:
        Remove dict_empty/mdict_empty

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/b6/b62f6f5435efa0bedf5a363ee09552285b1f1372/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/b6/b62f6f5435efa0bedf5a363ee09552285b1f1372//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/b6/b62f6f5435efa0bedf5a363ee09552285b1f1372//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-26 21:08 [binutils-gdb] Add missing includes in dwarf-index-write.c and mi/mi-interp.c gdb-buildbot
@ 2019-11-26 21:23 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-26 21:23 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/1245

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        23baa4cc5ee5f1008aefa8a9e1010f9d2be6c5e3

Subject of commit:
        Add missing includes in dwarf-index-write.c and mi/mi-interp.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/23/23baa4cc5ee5f1008aefa8a9e1010f9d2be6c5e3/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/23/23baa4cc5ee5f1008aefa8a9e1010f9d2be6c5e3//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/23/23baa4cc5ee5f1008aefa8a9e1010f9d2be6c5e3//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-26 18:24 [binutils-gdb] Use safe_strerror instead of strerror where possible gdb-buildbot
@ 2019-11-26 18:38 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-26 18:38 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/1242

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        6d91ce9a659f5b65bb6ad2d30d74250da342150c

Subject of commit:
        Use safe_strerror instead of strerror where possible

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/6d/6d91ce9a659f5b65bb6ad2d30d74250da342150c/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/6d/6d91ce9a659f5b65bb6ad2d30d74250da342150c//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/6d/6d91ce9a659f5b65bb6ad2d30d74250da342150c//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-26 14:27 [binutils-gdb] Fix comparison operations in SH code that trigger warning in clang gdb-buildbot
@ 2019-11-26 14:54 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-26 14:54 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/1240

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        239b426b11425c4bd6b36aa7fd92a01e74fd42cb

Subject of commit:
        Fix comparison operations in SH code that trigger warning in clang.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/23/239b426b11425c4bd6b36aa7fd92a01e74fd42cb/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/23/239b426b11425c4bd6b36aa7fd92a01e74fd42cb//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/23/239b426b11425c4bd6b36aa7fd92a01e74fd42cb//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-25 22:44 [binutils-gdb] [gdb/contrib] Add -c option to words.sh script gdb-buildbot
@ 2019-11-25 22:44 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-25 22:44 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/1239

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        3cf2f2377e460608b94a8ba5c3f23c7e4b2dc232

Subject of commit:
        [gdb/contrib] Add -c option to words.sh script

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/3c/3cf2f2377e460608b94a8ba5c3f23c7e4b2dc232/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/3c/3cf2f2377e460608b94a8ba5c3f23c7e4b2dc232//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/3c/3cf2f2377e460608b94a8ba5c3f23c7e4b2dc232//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-25 21:14 [binutils-gdb] Replace int with bool in solib.c gdb-buildbot
@ 2019-11-25 21:29 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-25 21:29 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/1238

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        5b89c67adb1c6340db2f5afa5030f2bea7c583f4

Subject of commit:
        Replace int with bool in solib.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/5b/5b89c67adb1c6340db2f5afa5030f2bea7c583f4/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/5b/5b89c67adb1c6340db2f5afa5030f2bea7c583f4//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/5b/5b89c67adb1c6340db2f5afa5030f2bea7c583f4//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-25  5:02 [binutils-gdb] Introduce new section flag: SEC_ELF_OCTETS gdb-buildbot
@ 2019-11-25  5:16 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-25  5:16 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/1235

Author:
        Christian Eggers <ceggers@gmx.de>

Commit tested:
        618265039f697eab9e72bb58b95fc2d32925df58

Subject of commit:
        Introduce new section flag: SEC_ELF_OCTETS

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/61/618265039f697eab9e72bb58b95fc2d32925df58/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/61/618265039f697eab9e72bb58b95fc2d32925df58//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/61/618265039f697eab9e72bb58b95fc2d32925df58//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-22 18:57 [binutils-gdb] Replace SYMBOL_*_NAME accessors with member functions gdb-buildbot
@ 2019-11-22 19:55 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-22 19:55 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/1227

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        987012b89bce7f6385ed88585547f852a8005a3f

Subject of commit:
        Replace SYMBOL_*_NAME accessors with member functions

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/98/987012b89bce7f6385ed88585547f852a8005a3f/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: save a corefile
==============================================

*** 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/98/987012b89bce7f6385ed88585547f852a8005a3f//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/98/987012b89bce7f6385ed88585547f852a8005a3f//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-22 15:55 [binutils-gdb] [gdb/contrib] Combine sed invocations in words.sh script gdb-buildbot
@ 2019-11-22 16:40 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-22 16:40 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/1223

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        f618007364b84739f6f8663c1c634fb47bbc6732

Subject of commit:
        [gdb/contrib] Combine sed invocations in words.sh script

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/f6/f618007364b84739f6f8663c1c634fb47bbc6732/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/f6/f618007364b84739f6f8663c1c634fb47bbc6732//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/f6/f618007364b84739f6f8663c1c634fb47bbc6732//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-21 15:57 [binutils-gdb] gdb/testsuite: skip gdb.arch/amd64-eval.exp when target is not x86_64 gdb-buildbot
@ 2019-11-21 16:23 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-21 16:23 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/1217

Author:
        Lukas Durfina <ldurfina@tachyum.com>

Commit tested:
        2e84f897e51ee67ab8d3ddf848c4a2bfebbd7173

Subject of commit:
        gdb/testsuite: skip gdb.arch/amd64-eval.exp when target is not x86_64

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/2e/2e84f897e51ee67ab8d3ddf848c4a2bfebbd7173/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/2e/2e84f897e51ee67ab8d3ddf848c4a2bfebbd7173//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/2e/2e84f897e51ee67ab8d3ddf848c4a2bfebbd7173//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-21 11:18 [binutils-gdb] ARM cmse_scan segfault gdb-buildbot
@ 2019-11-21 11:33 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-21 11:33 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/1215

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        73d5efd7e13ebd8fe87278224bc2ae777af3de52

Subject of commit:
        ARM cmse_scan segfault

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/73/73d5efd7e13ebd8fe87278224bc2ae777af3de52/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/73/73d5efd7e13ebd8fe87278224bc2ae777af3de52//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/73/73d5efd7e13ebd8fe87278224bc2ae777af3de52//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-19 16:22 [binutils-gdb] Report GetLastError value when DebugActiveProcess fails gdb-buildbot
@ 2019-11-19 16:22 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-19 16:22 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/1209

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        c9739b6a06730b65df135766dec4c4d14d78bd38

Subject of commit:
        Report GetLastError value when DebugActiveProcess fails

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/c9/c9739b6a06730b65df135766dec4c4d14d78bd38/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/c9/c9739b6a06730b65df135766dec4c4d14d78bd38//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/c9/c9739b6a06730b65df135766dec4c4d14d78bd38//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-18 22:11 [binutils-gdb] PR25200, SIGSEGV in _bfd_elf_validate_reloc gdb-buildbot
@ 2019-11-18 22:12 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-18 22:12 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/1202

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        94698d0198f4018b2ac248b248868cb7a5c0cc43

Subject of commit:
        PR25200, SIGSEGV in _bfd_elf_validate_reloc

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/94/94698d0198f4018b2ac248b248868cb7a5c0cc43/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/94/94698d0198f4018b2ac248b248868cb7a5c0cc43//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/94/94698d0198f4018b2ac248b248868cb7a5c0cc43//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-18 12:40 [binutils-gdb] PR25196, abort in rewrite_elf_program_header gdb-buildbot
@ 2019-11-18 12:40 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-18 12:40 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/1197

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        9aea1e31371a883452e80bd96e8818289c3e6b6e

Subject of commit:
        PR25196, abort in rewrite_elf_program_header

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/9a/9aea1e31371a883452e80bd96e8818289c3e6b6e/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/9a/9aea1e31371a883452e80bd96e8818289c3e6b6e//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/9a/9aea1e31371a883452e80bd96e8818289c3e6b6e//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-18 11:24 [binutils-gdb] gas: Add --gdwarf-cie-version command line flag gdb-buildbot
@ 2019-11-18 11:24 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-18 11:24 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/1196

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        66f8b2cbbb675ccbcae56e2bdb6dae485878ec00

Subject of commit:
        gas: Add --gdwarf-cie-version command line flag

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/66/66f8b2cbbb675ccbcae56e2bdb6dae485878ec00/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/66/66f8b2cbbb675ccbcae56e2bdb6dae485878ec00//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/66/66f8b2cbbb675ccbcae56e2bdb6dae485878ec00//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-15 23:15 [binutils-gdb] Minor updates to readline configury gdb-buildbot
@ 2019-11-15 23:15 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-15 23:15 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/1190

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        bb69c5018be23daa67a28fa83cb692f41d34c89e

Subject of commit:
        Minor updates to readline configury

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/bb/bb69c5018be23daa67a28fa83cb692f41d34c89e/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/bb/bb69c5018be23daa67a28fa83cb692f41d34c89e//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/bb/bb69c5018be23daa67a28fa83cb692f41d34c89e//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-15 20:18 [binutils-gdb] Import the strerror_r-posix module and use it in GDB gdb-buildbot
@ 2019-11-15 20:32 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-15 20:32 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/1187

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        5abebf3c3fd28a148e43be587c4e4065a0e53ae9

Subject of commit:
        Import the strerror_r-posix module and use it in GDB.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/5a/5abebf3c3fd28a148e43be587c4e4065a0e53ae9/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
==============================================

*** 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/5a/5abebf3c3fd28a148e43be587c4e4065a0e53ae9//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/5a/5abebf3c3fd28a148e43be587c4e4065a0e53ae9//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-15 19:34 [binutils-gdb] Generate gnulib's toplevel Makefile.in using automake gdb-buildbot
@ 2019-11-15 19:48 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-15 19:48 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/1186

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        33bd0102c190c1331804c12774e578e33c367552

Subject of commit:
        Generate gnulib's toplevel Makefile.in using automake

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/33/33bd0102c190c1331804c12774e578e33c367552/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================

*** 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/33/33bd0102c190c1331804c12774e578e33c367552//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/33/33bd0102c190c1331804c12774e578e33c367552//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-15  1:18 [binutils-gdb] Update README gdb-buildbot
@ 2019-11-15  1:32 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-15  1:32 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/1185

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        9a3516679ba2e0abdbc4467dbb46f526343efd13

Subject of commit:
        Update README

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/9a/9a3516679ba2e0abdbc4467dbb46f526343efd13/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/9a/9a3516679ba2e0abdbc4467dbb46f526343efd13//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/9a/9a3516679ba2e0abdbc4467dbb46f526343efd13//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-14  8:51 [binutils-gdb] x86: make JumpAbsolute an insn attribute gdb-buildbot
@ 2019-11-14  9:18 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-14  9:18 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/1180

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        6f2f06bea87613a6851607829e5893d74007f5bf

Subject of commit:
        x86: make JumpAbsolute an insn attribute

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/6f/6f2f06bea87613a6851607829e5893d74007f5bf/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/6f/6f2f06bea87613a6851607829e5893d74007f5bf//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/6f/6f2f06bea87613a6851607829e5893d74007f5bf//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-12 22:14 [binutils-gdb] Make struct symbol inherit from general_symbol_info gdb-buildbot
@ 2019-11-12 22:45 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-12 22:45 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/1171

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        468c0cbb327fadf28386a989f929fcbed4aed8b9

Subject of commit:
        Make struct symbol inherit from general_symbol_info

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/46/468c0cbb327fadf28386a989f929fcbed4aed8b9/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/46/468c0cbb327fadf28386a989f929fcbed4aed8b9//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/46/468c0cbb327fadf28386a989f929fcbed4aed8b9//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-12  9:56 [binutils-gdb] x86: fold EsSeg into IsString gdb-buildbot
@ 2019-11-12 10:26 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-12 10:26 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/1164

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        51c8edf68bf1e16c6d05fbb31a36e0cc436a9750

Subject of commit:
        x86: fold EsSeg into IsString

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/51/51c8edf68bf1e16c6d05fbb31a36e0cc436a9750/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/51/51c8edf68bf1e16c6d05fbb31a36e0cc436a9750//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/51/51c8edf68bf1e16c6d05fbb31a36e0cc436a9750//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-12  9:13 [binutils-gdb] x86: eliminate ImmExt abuse gdb-buildbot
@ 2019-11-12  9:42 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-12  9:42 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/1163

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        474da251bf92a11a08583080af77fa197570767f

Subject of commit:
        x86: eliminate ImmExt abuse

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/47/474da251bf92a11a08583080af77fa197570767f/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
==============================================

*** 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/47/474da251bf92a11a08583080af77fa197570767f//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/47/474da251bf92a11a08583080af77fa197570767f//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-12  8:30 [binutils-gdb] x86: introduce operand type "instance" gdb-buildbot
@ 2019-11-12  8:56 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-12  8:56 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/1162

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        75e5731b8f10129ef9a0e4202152c391d70375eb

Subject of commit:
        x86: introduce operand type "instance"

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/75/75e5731b8f10129ef9a0e4202152c391d70375eb/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================

*** 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/75/75e5731b8f10129ef9a0e4202152c391d70375eb//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/75/75e5731b8f10129ef9a0e4202152c391d70375eb//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-11 13:48 [binutils-gdb] Arm64: SVE2's smaxp/sminp require operands 1 and 3 to be the same register gdb-buildbot
@ 2019-11-11 14:03 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-11 14: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/1158

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        91802f3cfed1524ebcfef1057afad4f98519ca78

Subject of commit:
        Arm64: SVE2's smaxp/sminp require operands 1 and 3 to be the same register

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/91/91802f3cfed1524ebcfef1057afad4f98519ca78/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/91/91802f3cfed1524ebcfef1057afad4f98519ca78//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/91/91802f3cfed1524ebcfef1057afad4f98519ca78//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-11 13:01 [binutils-gdb] Arm64: fix build with old glibc gdb-buildbot
@ 2019-11-11 13:15 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-11 13:15 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/1157

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        4f5fc85d6c6e33d8282f4c5164fb5187cdff96d1

Subject of commit:
        Arm64: fix build with old glibc

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/4f/4f5fc85d6c6e33d8282f4c5164fb5187cdff96d1/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/4f/4f5fc85d6c6e33d8282f4c5164fb5187cdff96d1//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/4f/4f5fc85d6c6e33d8282f4c5164fb5187cdff96d1//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-10 22:04 [binutils-gdb] gdb: Add a class to track last display symtab and line information gdb-buildbot
@ 2019-11-10 22:33 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-10 22:33 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/1154

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        eb2dd8df7662c3827656e44d2a463d918d473c41

Subject of commit:
        gdb: Add a class to track last display symtab and line information

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/eb/eb2dd8df7662c3827656e44d2a463d918d473c41/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/eb/eb2dd8df7662c3827656e44d2a463d918d473c41//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/eb/eb2dd8df7662c3827656e44d2a463d918d473c41//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-10 20:54 [binutils-gdb] gdb_vecs.h: Avoid self move assign gdb-buildbot
@ 2019-11-10 20:54 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-10 20:54 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/1152

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        cf57ad6d61771f608079f31db10a93872a4553c5

Subject of commit:
        gdb_vecs.h: Avoid self move assign

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/cf/cf57ad6d61771f608079f31db10a93872a4553c5/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/cf/cf57ad6d61771f608079f31db10a93872a4553c5//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/cf/cf57ad6d61771f608079f31db10a93872a4553c5//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-10 18:21 [binutils-gdb] Remove can_highlight from TUI windows gdb-buildbot
@ 2019-11-10 18:21 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-10 18:21 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/1151

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        0b026263ea17155b57f7763901894be2cbb6c3ff

Subject of commit:
        Remove can_highlight from TUI windows

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/0b/0b026263ea17155b57f7763901894be2cbb6c3ff/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/0b/0b026263ea17155b57f7763901894be2cbb6c3ff//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/0b/0b026263ea17155b57f7763901894be2cbb6c3ff//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-08 14:49 [binutils-gdb] Constify command_line_input gdb-buildbot
@ 2019-11-08 14:49 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-08 14:49 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/1145

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        992a70401ec229425ee75b2ad9b731f30d2de391

Subject of commit:
        Constify command_line_input

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/99/992a70401ec229425ee75b2ad9b731f30d2de391/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> FAIL: gdb.trace/ftrace.exp: advance through tracing
==============================================

*** 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/99/992a70401ec229425ee75b2ad9b731f30d2de391//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/99/992a70401ec229425ee75b2ad9b731f30d2de391//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-08 11:02 [binutils-gdb] x86: convert RegSIMD and RegMMX from bitfield to enumerator gdb-buildbot
@ 2019-11-08 11:00 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-08 11:00 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/1143

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        3528c362d9471524cfe8a76c692081838b292d64

Subject of commit:
        x86: convert RegSIMD and RegMMX from bitfield to enumerator

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/35/3528c362d9471524cfe8a76c692081838b292d64/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
==============================================

*** 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/35/3528c362d9471524cfe8a76c692081838b292d64//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/35/3528c362d9471524cfe8a76c692081838b292d64//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-08 10:18 [binutils-gdb] x86: convert Control/Debug/Test from bitfield to enumerator gdb-buildbot
@ 2019-11-08 10:16 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-08 10:16 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/1142

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        4a5c67ed841db42c7be13cb2991ece3b3fc4bf75

Subject of commit:
        x86: convert Control/Debug/Test from bitfield to enumerator

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/4a/4a5c67ed841db42c7be13cb2991ece3b3fc4bf75/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/4a/4a5c67ed841db42c7be13cb2991ece3b3fc4bf75//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/4a/4a5c67ed841db42c7be13cb2991ece3b3fc4bf75//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-08  8:50 [binutils-gdb] x86: introduce operand type "class" gdb-buildbot
@ 2019-11-08  8:50 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-08  8:50 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/1140

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        bab6aec1255ba2ec8de3ae0363958e2ff26ce25d

Subject of commit:
        x86: introduce operand type "class"

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/ba/bab6aec1255ba2ec8de3ae0363958e2ff26ce25d/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/ba/bab6aec1255ba2ec8de3ae0363958e2ff26ce25d//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/ba/bab6aec1255ba2ec8de3ae0363958e2ff26ce25d//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-07 16:55 [binutils-gdb] [gas][aarch64] Armv8.6-a option [1/X] gdb-buildbot
@ 2019-11-07 17:09 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-07 17:09 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/1133

Author:
        Matthew Malcomson <matthew.malcomson@arm.com>

Commit tested:
        8ae2d3d9eabfd3dff6a540e7789e368e8d75fbce

Subject of commit:
        [gas][aarch64] Armv8.6-a option [1/X]

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/8a/8ae2d3d9eabfd3dff6a540e7789e368e8d75fbce/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/8a/8ae2d3d9eabfd3dff6a540e7789e368e8d75fbce//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/8a/8ae2d3d9eabfd3dff6a540e7789e368e8d75fbce//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-07  9:35 [binutils-gdb] x86: adjust register names printed for MONITOR/MWAIT gdb-buildbot
@ 2019-11-07 10:08 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-07 10:08 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/1129

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        081e283fafb415b4e37f2ac1d5f945ad0b61e282

Subject of commit:
        x86: adjust register names printed for MONITOR/MWAIT

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/08/081e283fafb415b4e37f2ac1d5f945ad0b61e282/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
==============================================

*** 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/08/081e283fafb415b4e37f2ac1d5f945ad0b61e282//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/08/081e283fafb415b4e37f2ac1d5f945ad0b61e282//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-06 21:03 [binutils-gdb] Use strtok_r instead of strtok gdb-buildbot
@ 2019-11-06 21:03 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-06 21: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/1126

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        ca3a04f65d2b31ab55364c7dc2a82cff8aa20b0d

Subject of commit:
        Use strtok_r instead of strtok

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/ca/ca3a04f65d2b31ab55364c7dc2a82cff8aa20b0d/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/ca/ca3a04f65d2b31ab55364c7dc2a82cff8aa20b0d//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/ca/ca3a04f65d2b31ab55364c7dc2a82cff8aa20b0d//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-06 18:56 [binutils-gdb] Regenerate gnulib files gdb-buildbot
@ 2019-11-06 19:37 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-06 19:37 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/1124

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        848288b363337e49bcd54104cd83d4b8fb2247b8

Subject of commit:
        Regenerate gnulib files

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/84/848288b363337e49bcd54104cd83d4b8fb2247b8/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/84/848288b363337e49bcd54104cd83d4b8fb2247b8//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/84/848288b363337e49bcd54104cd83d4b8fb2247b8//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-06 15:31 [binutils-gdb] Remove some includes of readline.h gdb-buildbot
@ 2019-11-06 15:31 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-06 15:31 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/1122

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        e0eac551da0afeec8ec17f457e4e1da1756e0aab

Subject of commit:
        Remove some includes of readline.h

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/e0/e0eac551da0afeec8ec17f457e4e1da1756e0aab/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/e0/e0eac551da0afeec8ec17f457e4e1da1756e0aab//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/e0/e0eac551da0afeec8ec17f457e4e1da1756e0aab//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-06  2:10 [binutils-gdb] Fix regression from TUI disassembly style patch gdb-buildbot
@ 2019-11-06  2:25 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-06  2:25 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/1121

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        825165c57e43b25ef57c3cf2cc345ec6aa40a0d3

Subject of commit:
        Fix regression from TUI disassembly style patch

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/82/825165c57e43b25ef57c3cf2cc345ec6aa40a0d3/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
==============================================

*** 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/82/825165c57e43b25ef57c3cf2cc345ec6aa40a0d3//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/82/825165c57e43b25ef57c3cf2cc345ec6aa40a0d3//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-06  0:18 [binutils-gdb] Remove la_get_string member gdb-buildbot
@ 2019-11-06  0:49 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-06  0:49 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/1120

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        91ae903f89f6869c8163d33cad1f90c87469d55b

Subject of commit:
        Remove la_get_string member

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/91/91ae903f89f6869c8163d33cad1f90c87469d55b/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/91/91ae903f89f6869c8163d33cad1f90c87469d55b//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/91/91ae903f89f6869c8163d33cad1f90c87469d55b//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-05 23:34 [binutils-gdb] Style disassembly in the TUI gdb-buildbot
@ 2019-11-06  0:02 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-06  0:02 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/1119

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        1df2f9ef6cae23a08a50a3b2f33ce2664ce9ae9e

Subject of commit:
        Style disassembly in the TUI

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/1d/1df2f9ef6cae23a08a50a3b2f33ce2664ce9ae9e/

*** 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/1d/1df2f9ef6cae23a08a50a3b2f33ce2664ce9ae9e//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/1d/1df2f9ef6cae23a08a50a3b2f33ce2664ce9ae9e//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-05 10:16 [binutils-gdb] x86: fold OP_Mwaitx() into OP_Mwait() gdb-buildbot
@ 2019-11-05 10:30 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-05 10:30 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/1115

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        7abb8d81115a2a748443f041e37cc13a70b34faa

Subject of commit:
        x86: fold OP_Mwaitx() into OP_Mwait()

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/7a/7abb8d81115a2a748443f041e37cc13a70b34faa/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/7a/7abb8d81115a2a748443f041e37cc13a70b34faa//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/7a/7abb8d81115a2a748443f041e37cc13a70b34faa//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-05  9:47 [binutils-gdb] x86: split MONITORX/MWAITX entries gdb-buildbot
@ 2019-11-05  9:47 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-05  9: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/1114

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        267b8516f2899ed24cd77cb9233b514c22506ecf

Subject of commit:
        x86: split MONITORX/MWAITX entries

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/26/267b8516f2899ed24cd77cb9233b514c22506ecf/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/26/267b8516f2899ed24cd77cb9233b514c22506ecf//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/26/267b8516f2899ed24cd77cb9233b514c22506ecf//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-05  9:32 [binutils-gdb] x86: consolidate disassembler enum naming a little gdb-buildbot
@ 2019-11-05  9:32 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-05  9:32 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/1113

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        f8687e93a6c118384ee4c7d82faf0325260694cf

Subject of commit:
        x86: consolidate disassembler enum naming a little

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/f8/f8687e93a6c118384ee4c7d82faf0325260694cf/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/f8/f8687e93a6c118384ee4c7d82faf0325260694cf//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/f8/f8687e93a6c118384ee4c7d82faf0325260694cf//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-02  7:09 [binutils-gdb] [gdb/testsuite] Remove superfluous 3rd argument from gdb_test call (3) gdb-buildbot
@ 2019-11-02  7:09 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-02  7:09 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/1100

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        e96ec2bab75a943e1666497b1389e297775af5a8

Subject of commit:
        [gdb/testsuite] Remove superfluous 3rd argument from gdb_test call (3)

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/e9/e96ec2bab75a943e1666497b1389e297775af5a8/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/e9/e96ec2bab75a943e1666497b1389e297775af5a8//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/e9/e96ec2bab75a943e1666497b1389e297775af5a8//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-01 17:42 [binutils-gdb] Simplify print_sys_errmsg gdb-buildbot
@ 2019-11-01 18:28 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-01 18:28 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/1099

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        5df96a4e6e8f1521274acb5beb54063c35aeec6e

Subject of commit:
        Simplify print_sys_errmsg

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/5d/5df96a4e6e8f1521274acb5beb54063c35aeec6e/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
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/Ubuntu-Aarch64-native-gdbserver-m64/5d/5df96a4e6e8f1521274acb5beb54063c35aeec6e//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/5d/5df96a4e6e8f1521274acb5beb54063c35aeec6e//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-01 15:34 [binutils-gdb] Move check for strerror_r to common.m4 where it belongs gdb-buildbot
@ 2019-11-01 16:01 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-01 16:01 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/1095

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        e48f6033b01b6a5832e1efa48eda4e44193067a7

Subject of commit:
        Move check for strerror_r to common.m4 where it belongs

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/e4/e48f6033b01b6a5832e1efa48eda4e44193067a7/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/e4/e48f6033b01b6a5832e1efa48eda4e44193067a7//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/e4/e48f6033b01b6a5832e1efa48eda4e44193067a7//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-01  5:26 [binutils-gdb] gdb: Add new commands to list module variables and functions gdb-buildbot
@ 2019-11-01  5:40 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-01  5:40 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/1092

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        165f8965d770708f1dee623e308374ac108e6578

Subject of commit:
        gdb: Add new commands to list module variables and functions

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/16/165f8965d770708f1dee623e308374ac108e6578/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: server exits
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/Ubuntu-Aarch64-native-gdbserver-m64/16/165f8965d770708f1dee623e308374ac108e6578//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/16/165f8965d770708f1dee623e308374ac108e6578//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-01  5:00 [binutils-gdb] gdb/fortran: Add new 'info modules' command gdb-buildbot
@ 2019-11-01  5:00 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-01  5:00 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/1091

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        59c35742fb785b1e454f45c2ace663000bf34f4c

Subject of commit:
        gdb/fortran: Add new 'info modules' command

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/59/59c35742fb785b1e454f45c2ace663000bf34f4c/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/59/59c35742fb785b1e454f45c2ace663000bf34f4c//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/59/59c35742fb785b1e454f45c2ace663000bf34f4c//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-01  2:59 [binutils-gdb] Test the convenience functions $_gdb_setting and $_gdb_setting_str gdb-buildbot
@ 2019-11-01  3:29 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-01  3:29 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/1089

Author:
        Philippe Waroquiers <philippe.waroquiers@skynet.be>

Commit tested:
        f3fb2519e629bf8533108c2b7b108e6db98c02f2

Subject of commit:
        Test the convenience functions $_gdb_setting and $_gdb_setting_str.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/f3/f3fb2519e629bf8533108c2b7b108e6db98c02f2/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/setshow.exp: set language asm
==============================================

*** 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/f3/f3fb2519e629bf8533108c2b7b108e6db98c02f2//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/f3/f3fb2519e629bf8533108c2b7b108e6db98c02f2//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-01  1:46 [binutils-gdb] Implement convenience functions to examine GDB settings gdb-buildbot
@ 2019-11-01  2:46 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-01  2:46 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/1088

Author:
        Philippe Waroquiers <philippe.waroquiers@skynet.be>

Commit tested:
        9ad9b77d64920d3113a9e7ab9f022eb5a45cd49e

Subject of commit:
        Implement convenience functions to examine GDB settings.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/9a/9ad9b77d64920d3113a9e7ab9f022eb5a45cd49e/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/default.exp: show convenience
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/Ubuntu-Aarch64-native-gdbserver-m64/9a/9ad9b77d64920d3113a9e7ab9f022eb5a45cd49e//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/9a/9ad9b77d64920d3113a9e7ab9f022eb5a45cd49e//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-01  0:37 [binutils-gdb] [gdb/testsuite] Remove superfluous 3rd argument from gdb_test call (2) gdb-buildbot
@ 2019-11-01  0:37 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-11-01  0:37 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/1085

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        d1e36019c1f5cc5de8b99dd86cacfbf418fc1c5b

Subject of commit:
        [gdb/testsuite] Remove superfluous 3rd argument from gdb_test call (2)

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/d1/d1e36019c1f5cc5de8b99dd86cacfbf418fc1c5b/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/d1/d1e36019c1f5cc5de8b99dd86cacfbf418fc1c5b//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/d1/d1e36019c1f5cc5de8b99dd86cacfbf418fc1c5b//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-31 20:14 [binutils-gdb] [ARM] Store exception handling information per-bfd instead of per-objfile gdb-buildbot
@ 2019-10-31 20:43 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-31 20:43 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/1080

Author:
        Luis Machado <luis.machado@linaro.org>

Commit tested:
        a2726d4ff80168a8134c68cb798e3f5f537b0eba

Subject of commit:
        [ARM] Store exception handling information per-bfd instead of per-objfile

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/a2/a2726d4ff80168a8134c68cb798e3f5f537b0eba/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/a2/a2726d4ff80168a8134c68cb798e3f5f537b0eba//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/a2/a2726d4ff80168a8134c68cb798e3f5f537b0eba//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-31 16:58 [binutils-gdb] [gdb/testsuite] Remove superfluous 3rd argument from gdb_test call gdb-buildbot
@ 2019-10-31 17:25 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-31 17:25 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/1077

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        3d11e68e4b0a557bf2f2fdaad188667215ec5aaa

Subject of commit:
        [gdb/testsuite] Remove superfluous 3rd argument from gdb_test call

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/3d/3d11e68e4b0a557bf2f2fdaad188667215ec5aaa/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/3d/3d11e68e4b0a557bf2f2fdaad188667215ec5aaa//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/3d/3d11e68e4b0a557bf2f2fdaad188667215ec5aaa//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-30 13:56 [binutils-gdb] Modify the ARNM assembler to accept the omission of the immediate argument for the writeback form of the LDRAA and LDRAB mnemonics gdb-buildbot
@ 2019-10-30 14:10 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-30 14:10 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/1070

Author:
        Delia Burduv <Delia.Burduv@arm.com>

Commit tested:
        1820262bc909121a408e030195789a70513b9139

Subject of commit:
        Modify the ARNM assembler to accept the omission of the immediate argument for the writeback form of the LDRAA and LDRAB mnemonics

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/18/1820262bc909121a408e030195789a70513b9139/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
==============================================

*** 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/18/1820262bc909121a408e030195789a70513b9139//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/18/1820262bc909121a408e030195789a70513b9139//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-30 12:41 [binutils-gdb] Add the ability to the BFD library to read build-ids from core flies gdb-buildbot
@ 2019-10-30 13:08 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-30 13:08 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/1069

Author:
        Keith Seitz <keiths@redhat.com>

Commit tested:
        864619bb2e68e4ec8fa5bcfc87b00bf6667601e3

Subject of commit:
        Add the ability to the BFD library to read build-ids from core flies.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/86/864619bb2e68e4ec8fa5bcfc87b00bf6667601e3/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================

*** 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/86/864619bb2e68e4ec8fa5bcfc87b00bf6667601e3//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/86/864619bb2e68e4ec8fa5bcfc87b00bf6667601e3//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-30  9:50 [binutils-gdb] x86: re-do "shorthand" handling gdb-buildbot
@ 2019-10-30 10:19 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-30 10:19 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/1068

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        3cc17af5890d5877b8ac53eb5cd9a2adf82467e6

Subject of commit:
        x86: re-do "shorthand" handling

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/3c/3cc17af5890d5877b8ac53eb5cd9a2adf82467e6/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/3c/3cc17af5890d5877b8ac53eb5cd9a2adf82467e6//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/3c/3cc17af5890d5877b8ac53eb5cd9a2adf82467e6//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-30  8:36 [binutils-gdb] x86: slightly rearrange struct insn_template gdb-buildbot
@ 2019-10-30  9:37 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-30  9:37 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/1067

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        a2cebd03faf935d292b524e999787d379a6b04ad

Subject of commit:
        x86: slightly rearrange struct insn_template

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/a2/a2cebd03faf935d292b524e999787d379a6b04ad/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/a2/a2cebd03faf935d292b524e999787d379a6b04ad//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/a2/a2cebd03faf935d292b524e999787d379a6b04ad//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-29 20:44 [binutils-gdb] Change some arguments to gdb::string_view instead of name+len gdb-buildbot
@ 2019-10-29 21:48 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-29 21:48 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/1060

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        31edb802957b0073c571f48b9262e66b817fd360

Subject of commit:
        Change some arguments to gdb::string_view instead of name+len

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/31/31edb802957b0073c571f48b9262e66b817fd360/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/31/31edb802957b0073c571f48b9262e66b817fd360//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/31/31edb802957b0073c571f48b9262e66b817fd360//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-29 19:23 [binutils-gdb] Load system gdbinit files from a directory gdb-buildbot
@ 2019-10-29 19:37 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-29 19:37 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/1057

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        ed2a222951020d1117c5e1d4f37e82fd26761267

Subject of commit:
        Load system gdbinit files from a directory

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/ed/ed2a222951020d1117c5e1d4f37e82fd26761267/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/ed/ed2a222951020d1117c5e1d4f37e82fd26761267//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/ed/ed2a222951020d1117c5e1d4f37e82fd26761267//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-29 17:53 [binutils-gdb] When copying pe format files, copy the dos_message array, rather than re-initiialising it gdb-buildbot
@ 2019-10-29 17:53 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-29 17:53 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/1056

Author:
        Andrew Eikum <aeikum@codeweavers.com>

Commit tested:
        70cf683455e1a3429d517a2e25a36c438474cfde

Subject of commit:
        When copying pe format files, copy the dos_message array, rather than re-initiialising it.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/70/70cf683455e1a3429d517a2e25a36c438474cfde/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
==============================================

*** 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/70/70cf683455e1a3429d517a2e25a36c438474cfde//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/70/70cf683455e1a3429d517a2e25a36c438474cfde//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-29 16:21 [binutils-gdb] Fix array overrun when disassembling corrupt TIC30 binaries gdb-buildbot
@ 2019-10-29 16:21 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-29 16:21 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/1055

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        efea62b44631289f995db16faf70979d6592580b

Subject of commit:
        Fix array overrun when disassembling corrupt TIC30 binaries.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/ef/efea62b44631289f995db16faf70979d6592580b/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
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/Ubuntu-Aarch64-native-gdbserver-m64/ef/efea62b44631289f995db16faf70979d6592580b//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/ef/efea62b44631289f995db16faf70979d6592580b//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-29 10:16 [binutils-gdb] Prevent a left shift by a negative value when disassembling IA64 binaries gdb-buildbot
@ 2019-10-29 10:47 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-29 10: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/1053

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        993a00a986d0795a3cbb7a2dd0c640d8e6d66734

Subject of commit:
        Prevent a left shift by a negative value when disassembling IA64 binaries.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/99/993a00a986d0795a3cbb7a2dd0c640d8e6d66734/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/99/993a00a986d0795a3cbb7a2dd0c640d8e6d66734//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/99/993a00a986d0795a3cbb7a2dd0c640d8e6d66734//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-29  8:35 [binutils-gdb] Fix the size of the dos_message field in the internal_extra_pe_filehdr structure on hosts where sizeof(long) == 8 gdb-buildbot
@ 2019-10-29  8:49 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-29  8:49 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/1051

Author:
        Andrew Eikum <aeikum@codeweavers.com>

Commit tested:
        2f1575ea6f93a3f0c2b439ac6bf5fe34ef42a1ad

Subject of commit:
        Fix the size of the dos_message field in the internal_extra_pe_filehdr structure on hosts where sizeof(long) == 8.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/2f/2f1575ea6f93a3f0c2b439ac6bf5fe34ef42a1ad/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/2f/2f1575ea6f93a3f0c2b439ac6bf5fe34ef42a1ad//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/2f/2f1575ea6f93a3f0c2b439ac6bf5fe34ef42a1ad//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-28 18:44 [binutils-gdb] Add a string_view version of startswith gdb-buildbot
@ 2019-10-28 18:44 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-28 18:44 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/1045

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        87f34879e5339be458505ca85f70cff346295140

Subject of commit:
        Add a string_view version of startswith

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/87/87f34879e5339be458505ca85f70cff346295140/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/87/87f34879e5339be458505ca85f70cff346295140//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/87/87f34879e5339be458505ca85f70cff346295140//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-28 17:04 [binutils-gdb] Fix buffer overrun in TIC30 disassembler gdb-buildbot
@ 2019-10-28 17:18 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-28 17:18 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/1043

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        bbf9a0b5eef3599a1c6a7a3bea40da9f2c37df83

Subject of commit:
        Fix buffer overrun in TIC30 disassembler.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/bb/bbf9a0b5eef3599a1c6a7a3bea40da9f2c37df83/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/bb/bbf9a0b5eef3599a1c6a7a3bea40da9f2c37df83//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/bb/bbf9a0b5eef3599a1c6a7a3bea40da9f2c37df83//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-28 16:36 [binutils-gdb] Stop potential illegal memory access in the NS32K disassembler gdb-buildbot
@ 2019-10-28 16:36 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-28 16:36 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/1042

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        d1e304bc27b737e0e7daf0029dd5f1e91a4898ed

Subject of commit:
        Stop potential illegal memory access in the NS32K disassembler.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/d1/d1e304bc27b737e0e7daf0029dd5f1e91a4898ed/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/d1/d1e304bc27b737e0e7daf0029dd5f1e91a4898ed//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/d1/d1e304bc27b737e0e7daf0029dd5f1e91a4898ed//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-26  8:09 [binutils-gdb] [gdb] Fix more typos in comments (2) gdb-buildbot
@ 2019-10-26  8:41 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-26  8:41 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/1037

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        30baf67b6505d903bf678f9a0ba3645eb337ce49

Subject of commit:
        [gdb] Fix more typos in comments (2)

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/30/30baf67b6505d903bf678f9a0ba3645eb337ce49/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: check_pc_after_cross_syscall: single step over fork final pc
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/Ubuntu-Aarch64-native-gdbserver-m64/30/30baf67b6505d903bf678f9a0ba3645eb337ce49//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/30/30baf67b6505d903bf678f9a0ba3645eb337ce49//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-25 21:16 [binutils-gdb] Fix find_charset_names gdb-buildbot
@ 2019-10-25 21:50 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-25 21:50 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/1036

Author:
        Ali Tamur <tamur@google.com>

Commit tested:
        1834d45f0ff231bf74de3b0305949cf991470a35

Subject of commit:
        Fix find_charset_names.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/18/1834d45f0ff231bf74de3b0305949cf991470a35/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 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/Ubuntu-Aarch64-native-gdbserver-m64/18/1834d45f0ff231bf74de3b0305949cf991470a35//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/18/1834d45f0ff231bf74de3b0305949cf991470a35//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-25 19:38 [binutils-gdb] Don't make an extra copy + allocation of the demangled name gdb-buildbot
@ 2019-10-25 19:52 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-25 19:52 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/1033

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        5396ae1717ade2dbbdb73790eafcdd885045860b

Subject of commit:
        Don't make an extra copy + allocation of the demangled name

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/53/5396ae1717ade2dbbdb73790eafcdd885045860b/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: server exits
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/Ubuntu-Aarch64-native-gdbserver-m64/53/5396ae1717ade2dbbdb73790eafcdd885045860b//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/53/5396ae1717ade2dbbdb73790eafcdd885045860b//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-25 15:12 [binutils-gdb] gdbserver does not need xstrdup gdb-buildbot
@ 2019-10-25 15:12 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-25 15:12 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/1029

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        52c64cf72d40aace2d2fedca32e5c0373cd9a484

Subject of commit:
        gdbserver does not need xstrdup

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/52/52c64cf72d40aace2d2fedca32e5c0373cd9a484/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/52/52c64cf72d40aace2d2fedca32e5c0373cd9a484//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/52/52c64cf72d40aace2d2fedca32e5c0373cd9a484//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-25  5:07 [binutils-gdb] PR4499, assign file positions assumes segment offsets increasing gdb-buildbot
@ 2019-10-25  5:34 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-25  5:34 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/1027

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        30fe183248b2523ecff9da36853e2f893c4c4b91

Subject of commit:
        PR4499, assign file positions assumes segment offsets increasing

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/30/30fe183248b2523ecff9da36853e2f893c4c4b91/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 4
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/Ubuntu-Aarch64-native-gdbserver-m64/30/30fe183248b2523ecff9da36853e2f893c4c4b91//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/30/30fe183248b2523ecff9da36853e2f893c4c4b91//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-24 20:00 [binutils-gdb] Remove python_has_threads check in configure.ac gdb-buildbot
@ 2019-10-24 20:13 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-24 20:13 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/1025

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        cbb5a2ea493d0cbe49defc3d45ebe3b7e2728a51

Subject of commit:
        Remove python_has_threads check in configure.ac

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/cb/cbb5a2ea493d0cbe49defc3d45ebe3b7e2728a51/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/cb/cbb5a2ea493d0cbe49defc3d45ebe3b7e2728a51//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/cb/cbb5a2ea493d0cbe49defc3d45ebe3b7e2728a51//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-24 17:28 [binutils-gdb] [gdb/testsuite] Add -wrap pattern flag to gdb_test_multiple gdb-buildbot
@ 2019-10-24 17:28 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-24 17:28 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/1023

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        4ccdfbec5028a56b9847ec2687b9139e1769ffc5

Subject of commit:
        [gdb/testsuite] Add -wrap pattern flag to gdb_test_multiple

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/4c/4ccdfbec5028a56b9847ec2687b9139e1769ffc5/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/4c/4ccdfbec5028a56b9847ec2687b9139e1769ffc5//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/4c/4ccdfbec5028a56b9847ec2687b9139e1769ffc5//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-24  8:22 [binutils-gdb] Fix opcodes includes gdb-buildbot
@ 2019-10-24  9:22 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-24  9:22 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/1021

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        f16f7b7c7447c44f4c6d23fd478c7dd767cdf642

Subject of commit:
        Fix opcodes includes

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/f1/f16f7b7c7447c44f4c6d23fd478c7dd767cdf642/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
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/Ubuntu-Aarch64-native-gdbserver-m64/f1/f16f7b7c7447c44f4c6d23fd478c7dd767cdf642//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/f1/f16f7b7c7447c44f4c6d23fd478c7dd767cdf642//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-24  8:07 [binutils-gdb] Move readline to the readline/readline subdirectory gdb-buildbot
@ 2019-10-24  9:08 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-24  9:08 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/1020

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        6999161a2a3b3cbd918570e094199184331d4f81

Subject of commit:
        Move readline to the readline/readline subdirectory

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/69/6999161a2a3b3cbd918570e094199184331d4f81/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/69/6999161a2a3b3cbd918570e094199184331d4f81//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/69/6999161a2a3b3cbd918570e094199184331d4f81//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-24  7:22 [binutils-gdb] infcall: refactor 'call_function_by_hand_dummy' gdb-buildbot
@ 2019-10-24  7:53 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-24  7:53 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/1019

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        12e7c35ec3c09793ed9613cdf696b9f0f4dd86ec

Subject of commit:
        infcall: refactor 'call_function_by_hand_dummy'

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/12/12e7c35ec3c09793ed9613cdf696b9f0f4dd86ec/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/12/12e7c35ec3c09793ed9613cdf696b9f0f4dd86ec//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/12/12e7c35ec3c09793ed9613cdf696b9f0f4dd86ec//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-24  5:30 [binutils-gdb] Add myself to the gdb/MAINTAINERS write-after-approval list gdb-buildbot
@ 2019-10-24  5:44 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-24  5:44 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/1016

Author:
        Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>

Commit tested:
        bd888c0fe2cebbcab96d787387e0b32d301e0a2c

Subject of commit:
        Add myself to the gdb/MAINTAINERS write-after-approval list

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/bd/bd888c0fe2cebbcab96d787387e0b32d301e0a2c/

*** 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/bd/bd888c0fe2cebbcab96d787387e0b32d301e0a2c//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/bd/bd888c0fe2cebbcab96d787387e0b32d301e0a2c//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-24  3:51 [binutils-gdb] Use m4_include, not sinclude in .m4 files gdb-buildbot
@ 2019-10-24  4:19 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-24  4:19 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/1014

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        4d0b984b970b9526d267ada259b62ec2c42cfb24

Subject of commit:
        Use m4_include, not sinclude in .m4 files

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/4d/4d0b984b970b9526d267ada259b62ec2c42cfb24/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/4d/4d0b984b970b9526d267ada259b62ec2c42cfb24//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/4d/4d0b984b970b9526d267ada259b62ec2c42cfb24//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-24  2:36 [binutils-gdb] [gdb/breakpoints] Fix fullname.exp when run from symlink dir gdb-buildbot
@ 2019-10-24  2:51 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-24  2:51 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/1012

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        7e785608ce2afae4b3f611f0e4d46cb9633ef937

Subject of commit:
        [gdb/breakpoints] Fix fullname.exp when run from symlink dir

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/7e/7e785608ce2afae4b3f611f0e4d46cb9633ef937/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
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/Ubuntu-Aarch64-native-gdbserver-m64/7e/7e785608ce2afae4b3f611f0e4d46cb9633ef937//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/7e/7e785608ce2afae4b3f611f0e4d46cb9633ef937//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-24  1:25 [binutils-gdb] Fix compile error & incorrect push gdb-buildbot
@ 2019-10-24  1:25 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-24  1:25 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/1010

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        3a49427939764f53e196ae10013c72fcffb8c085

Subject of commit:
        Fix compile error & incorrect push

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/3a/3a49427939764f53e196ae10013c72fcffb8c085/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 3
==============================================

*** 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/3a/3a49427939764f53e196ae10013c72fcffb8c085//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/3a/3a49427939764f53e196ae10013c72fcffb8c085//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-24  0:29 [binutils-gdb] Use libxxhash for hashing, if present gdb-buildbot
@ 2019-10-24  0:43 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-24  0:43 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/1009

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        ccb1ba62299edce72053dd567b9d384814e11885

Subject of commit:
        Use libxxhash for hashing, if present

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/cc/ccb1ba62299edce72053dd567b9d384814e11885/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/cc/ccb1ba62299edce72053dd567b9d384814e11885//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/cc/ccb1ba62299edce72053dd567b9d384814e11885//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-23 22:54 [binutils-gdb] Add a fast_hash function in common-utils gdb-buildbot
@ 2019-10-23 23:56 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-23 23:56 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/1008

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        1a6ff1a96b302283d517b3cdeae7310adecbe859

Subject of commit:
        Add a fast_hash function in common-utils

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/1a/1a6ff1a96b302283d517b3cdeae7310adecbe859/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 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/Ubuntu-Aarch64-native-gdbserver-m64/1a/1a6ff1a96b302283d517b3cdeae7310adecbe859//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/1a/1a6ff1a96b302283d517b3cdeae7310adecbe859//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-23 23:11 [binutils-gdb] Store the mangled name as a string_view gdb-buildbot
@ 2019-10-23 23:42 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-23 23:42 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/1007

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        7bb43059820c5febb4509b15202a93efde442bc6

Subject of commit:
        Store the mangled name as a string_view

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/7b/7bb43059820c5febb4509b15202a93efde442bc6/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================

*** 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/7b/7bb43059820c5febb4509b15202a93efde442bc6//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/7b/7bb43059820c5febb4509b15202a93efde442bc6//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-23 21:12 [binutils-gdb] DWARF 5 support: Handle line table and file indexes gdb-buildbot
@ 2019-10-23 21:47 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-23 21: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/1005

Author:
        Ali Tamur <tamur@google.com>

Commit tested:
        7ba99d2188454b9e08bdbf3616773a16ad9c9f95

Subject of commit:
        DWARF 5 support: Handle line table and file indexes

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/7b/7ba99d2188454b9e08bdbf3616773a16ad9c9f95/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/7b/7ba99d2188454b9e08bdbf3616773a16ad9c9f95//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/7b/7ba99d2188454b9e08bdbf3616773a16ad9c9f95//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-23 20:46 [binutils-gdb] gdb: Ensure that !(a < a) is true in sort_cmp on obj_section objects gdb-buildbot
@ 2019-10-23 21:00 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-23 21:00 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/1004

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        45f47c3a25d7574d21b9f451efce38c06256f591

Subject of commit:
        gdb: Ensure that !(a < a) is true in sort_cmp on obj_section objects

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/45/45f47c3a25d7574d21b9f451efce38c06256f591/

*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.ada/O2_float_param.exp: frame
new FAIL: gdb.ada/access_tagged_param.exp: continue
UNRESOLVED -> KFAIL: gdb.ada/bad-task-bp-keyword.exp: break *break_me'address TASK Task TaSK 2
UNRESOLVED -> FAIL: gdb.ada/interface.exp: print s
UNRESOLVED -> FAIL: gdb.ada/iwide.exp: print My_Drawable
UNRESOLVED -> FAIL: gdb.ada/iwide.exp: print d_access.all
UNRESOLVED -> FAIL: gdb.ada/iwide.exp: print dp_access.all
UNRESOLVED -> FAIL: gdb.ada/iwide.exp: print s_access.all
UNRESOLVED -> FAIL: gdb.ada/iwide.exp: print sp_access.all
UNRESOLVED -> FAIL: gdb.ada/mi_interface.exp: create ggg1 varobj
UNRESOLVED -> FAIL: gdb.ada/mi_interface.exp: list ggg1's children
new FAIL: gdb.ada/ptype_tagged_param.exp: ptype s
new FAIL: gdb.ada/ref_param.exp: frame argument value printed
UNRESOLVED -> FAIL: gdb.ada/set_pckd_arr_elt.exp: continue to update_small
UNRESOLVED -> FAIL: gdb.ada/tagged.exp: print obj
UNRESOLVED -> FAIL: gdb.ada/tagged.exp: ptype obj
UNRESOLVED -> FAIL: gdb.ada/tagged_access.exp: ptype c.all
UNRESOLVED -> FAIL: gdb.ada/tagged_access.exp: ptype c.menu_name
new KFAIL: gdb.base/argv0-symlink.exp: kept directory symbolic link name
UNRESOLVED -> FAIL: gdb.base/break-probes.exp: ensure using probes
new FAIL: gdb.base/catch-syscall.exp: execve: continue to main
new FAIL: gdb.base/catch-syscall.exp: execve: continue until exit
new FAIL: gdb.base/catch-syscall.exp: execve: syscall execve has returned
UNRESOLVED -> FAIL: gdb.base/compare-sections.exp: after reload: compare-sections
UNRESOLVED -> FAIL: gdb.base/compare-sections.exp: after reload: compare-sections -r
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections -r
UNRESOLVED -> FAIL: gdb.base/compare-sections.exp: compare-sections .text
new FAIL: gdb.base/compare-sections.exp: read-only: compare-sections -r
new KFAIL: gdb.base/foll-vfork.exp: exit: vfork child follow, finish after tcatch vfork: finish
new KFAIL: gdb.base/info-macros.exp: info macros info-macros.c:42
new FAIL: gdb.base/interrupt-daemon.exp: bg: continue&
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt cmd stops process
new FAIL: gdb.base/interrupt-daemon.exp: fg: ctrl-c stops process
new FAIL: gdb.base/large-frame.exp: optimize=-O0: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O1: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O2: backtrace
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
UNRESOLVED -> KFAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp_4_2_from_macscp3'
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_2_from_macscp3
new FAIL: gdb.base/nextoverexit.exp: next over exit
new KFAIL: gdb.base/sigbpt.exp: stepi bp at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before and at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi; stepi out of handler
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: continue to end of inf 2
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: continue to marker
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : vfork: continue to end of inf 2
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : vfork: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : vfork: continue to marker
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : vfork: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: continue to syscall insn vfork
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: single step over vfork
new FAIL: gdb.base/store.exp: upvar doublest l; print old r, expecting -2
new FAIL: gdb.base/store.exp: var doublest l; print old r, expecting -2
new KFAIL: gdb.base/utf8-identifiers.exp: tab complete "break fun"
new KFAIL: gdb.base/watchpoint-unaligned.exp: wpcount
new KPASS: gdb.cp/cpexprs.exp: p CV::m
new KFAIL: gdb.cp/local.exp: ptype InnerLocal::NestedInnerLocal
new KFAIL: gdb.cp/oranking.exp: p foo0
new KFAIL: gdb.cp/oranking.exp: p foo10
new KFAIL: gdb.cp/oranking.exp: p foo11
new KFAIL: gdb.cp/oranking.exp: p foo13
new KFAIL: gdb.cp/oranking.exp: p foo14
new KFAIL: gdb.cp/oranking.exp: p foo2
new KFAIL: gdb.cp/rvalue-ref-overload.exp: rvalue reference overload
UNRESOLVED -> KFAIL: gdb.cp/templates.exp: ptype fvpchar
new KFAIL: gdb.cp/var-tag.exp: global collision: print global
new KFAIL: gdb.cp/virtfunc.exp: print pEe->D::vg
UNRESOLVED -> KFAIL: gdb.mi/mi-break.exp: mi-mode=main: break-insert -r operation
UNRESOLVED -> KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp .*llee
UNRESOLVED -> KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee
UNRESOLVED -> KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee2
UNRESOLVED -> KFAIL: gdb.mi/mi-break.exp: mi-mode=main: list of breakpoints
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: list of breakpoints
UNRESOLVED -> FAIL: gdb.mi/mi-detach.exp: detach
UNRESOLVED -> KFAIL: gdb.mi/mi-until.exp: until after while loop
new KFAIL: gdb.opt/inline-cmds.exp: next to second func1
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 2
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 3
UNRESOLVED -> FAIL: gdb.server/ext-run.exp: get process list
new FAIL: gdb.server/solib-list.exp: non-stop 0: p libvar
new FAIL: gdb.server/solib-list.exp: non-stop 1: p libvar
UNRESOLVED -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 3
UNRESOLVED -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 4
UNRESOLVED -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=3: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=4: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=5: created new thread
new KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: continue
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: server exits
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_asm_test
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_c_test
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_recursion_test 0
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_asm_test
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_c_test
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_recursion_test 0
new FAIL: gdb.trace/change-loc.exp: 1 trace: continue to marker 2
new FAIL: gdb.trace/change-loc.exp: 1 trace: continue to marker 3
new FAIL: gdb.trace/change-loc.exp: 1 trace: tfind frame 0
new FAIL: gdb.trace/change-loc.exp: 1 trace: tracepoint with two locations - installed
new FAIL: gdb.trace/change-loc.exp: 1 trace: tracepoint with two locations - pending
new FAIL: gdb.trace/change-loc.exp: 2 trace: continue to marker 2
new FAIL: gdb.trace/change-loc.exp: 2 trace: continue to marker 3
new FAIL: gdb.trace/change-loc.exp: 2 trace: tfind frame 2
new FAIL: gdb.trace/change-loc.exp: 2 trace: tracepoint with two locations - installed
new FAIL: gdb.trace/change-loc.exp: 2 trace: tracepoint with two locations - pending
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local char
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local double
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local float
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local int
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member char
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member double
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member float
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member int
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #0
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #1
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #2
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #3
new FAIL: gdb.trace/collection.exp: collect register locals collectively: start trace experiment
new FAIL: gdb.trace/collection.exp: collect register locals collectively: tfind test frame
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local char
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local double
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local float
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local int
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member char
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member double
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member float
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member int
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #0
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #1
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #2
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #3
new FAIL: gdb.trace/collection.exp: collect register locals individually: define actions
new FAIL: gdb.trace/pending.exp: ftrace installed_in_trace: continue to marker 2
new FAIL: gdb.trace/pending.exp: ftrace installed_in_trace: tfind test frame 0
new FAIL: gdb.trace/pending.exp: trace installed_in_trace: continue to marker 2
new FAIL: gdb.trace/pending.exp: trace installed_in_trace: tfind test frame 0
new FAIL: gdb.trace/signal.exp: tracepoint 4 hit 3 times
new FAIL: gdb.trace/signal.exp: tracepoint 5 hit 3 times
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: tfile: info locals
new FAIL: gdb.tui/resize.exp: source box after resize
==============================================

*** 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/45/45f47c3a25d7574d21b9f451efce38c06256f591//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/45/45f47c3a25d7574d21b9f451efce38c06256f591//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-23 19:47 [binutils-gdb] Remove tui_exec_info_content gdb-buildbot
@ 2019-10-23 20:17 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-23 20:17 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/1003

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        e5f3c0e3b83239b4b73fa76f28513a4a56fe50ce

Subject of commit:
        Remove tui_exec_info_content

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/e5/e5f3c0e3b83239b4b73fa76f28513a4a56fe50ce/

*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.ada/task_bp.exp: expanding symtab for pck.dummy_task
FAIL -> UNRESOLVED: gdb.base/break-fun-addr.exp: break-fun-addr2: p $pc == main
UNRESOLVED -> FAIL: gdb.base/find.exp: $_
UNRESOLVED -> FAIL: gdb.base/find.exp: $numfound
UNRESOLVED -> FAIL: gdb.base/find.exp: find 16-bit pattern
UNRESOLVED -> FAIL: gdb.base/find.exp: find 32-bit pattern
UNRESOLVED -> FAIL: gdb.base/find.exp: find 64-bit pattern
UNRESOLVED -> FAIL: gdb.base/find.exp: find byte pattern with end address
UNRESOLVED -> FAIL: gdb.base/find.exp: find int64_search_buf, +64/8*100, int64_search_buf
UNRESOLVED -> FAIL: gdb.base/find.exp: find mixed-sized pattern
UNRESOLVED -> FAIL: gdb.base/find.exp: find pattern straddling chunk boundary
UNRESOLVED -> FAIL: gdb.base/find.exp: find string pattern
UNRESOLVED -> FAIL: gdb.base/find.exp: max-count
UNRESOLVED -> FAIL: gdb.base/find.exp: pattern found at end of range
UNRESOLVED -> FAIL: gdb.base/find.exp: pattern not found at end of range
new UNRESOLVED: gdb.base/find.exp: run until function breakpoint
UNRESOLVED -> FAIL: gdb.base/find.exp: search spanning large range
UNRESOLVED -> FAIL: gdb.base/find.exp: set *
UNRESOLVED -> FAIL: gdb.base/find.exp: set int16_search_buf[10] = 0x1234
UNRESOLVED -> FAIL: gdb.base/find.exp: set int32_search_buf[10] = 0x12345678
UNRESOLVED -> FAIL: gdb.base/find.exp: set int64_search_buf[10] = 0xfedcba9876543210LL
UNRESOLVED -> FAIL: gdb.base/find.exp: size,max-count, /1/b
UNRESOLVED -> FAIL: gdb.base/find.exp: size,max-count, /1b
UNRESOLVED -> FAIL: gdb.base/find.exp: size,max-count, /b/1
UNRESOLVED -> FAIL: gdb.base/find.exp: size,max-count, /b1
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: Temporary breakpoint function in file
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: Temporary breakpoint info
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: Temporary breakpoint line number in file #2
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: break on default location, 1st time
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: break on default location, 2nd time
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: break on default location, 3rd time
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: break on default location, 4th time
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: break on non-existent source line
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: breakpoint offset +1
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: catch requires an event name
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: delete all breakpoints in delete_breakpoints
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: run until breakpoint set at a line number
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: run until file:function
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: run until file:linenum breakpoint
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: run until quoted breakpoint
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: set breakpoint pending off
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: set catch exec, never expected to trigger
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: set catch fork, never expected to trigger
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: set catch vfork, never expected to trigger
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: set to-be-silent break bp_location1
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: step onto breakpoint
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: temporary breakpoint line number #1
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: temporary breakpoint line number #2
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: temporary breakpoint line number in file #1
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: until bp_location1
UNRESOLVED -> FAIL: gdb.cp/mb-inline.exp: disabled breakpoint 1.2
new UNRESOLVED: gdb.cp/mb-inline.exp: disabling location: run to breakpoint
UNRESOLVED -> FAIL: gdb.cp/mb-templates.exp: disabling location: disable
UNRESOLVED -> FAIL: gdb.cp/mb-templates.exp: disabling location: run to breakpoint
new UNRESOLVED: gdb.cp/mb-templates.exp: separate condition: run to breakpoint
UNRESOLVED -> FAIL: gdb.cp/mb-templates.exp: separate condition: run to breakpoint 2
==============================================

*** 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/e5/e5f3c0e3b83239b4b73fa76f28513a4a56fe50ce//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/e5/e5f3c0e3b83239b4b73fa76f28513a4a56fe50ce//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-23 17:33 [binutils-gdb] contrib: Update dg-extract-results.* from gcc gdb-buildbot
@ 2019-10-23 18:39 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-23 18:39 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/1002

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        66b92822fa721b17c9edfebd10b3017b289be24c

Subject of commit:
        contrib: Update dg-extract-results.* from gcc

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/66/66b92822fa721b17c9edfebd10b3017b289be24c/

*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.base/break-fun-addr.exp: break-fun-addr2: p $pc == main
new UNRESOLVED: gdb.base/break-fun-addr.exp: break-fun-addr2: run to breakpoint at *main
==============================================

*** 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/66/66b92822fa721b17c9edfebd10b3017b289be24c//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/66/66b92822fa721b17c9edfebd10b3017b289be24c//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-23 15:54 [binutils-gdb] Fix creation of nm.h when configure is changed gdb-buildbot
@ 2019-10-23 16:59 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-23 16:59 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/1001

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        a0a461e5b45f6fd9eb81774ad61e55b4917d4305

Subject of commit:
        Fix creation of nm.h when configure is changed

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/a0/a0a461e5b45f6fd9eb81774ad61e55b4917d4305/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.ada/task_bp.exp: run to pck.adb:dummy_task - from psymtab
new UNRESOLVED: gdb.base/reread.exp: opts= "" "" : run to foo
FAIL -> UNRESOLVED: gdb.cp/mb-inline.exp: disabled breakpoint 1.2
FAIL -> UNRESOLVED: gdb.cp/mb-templates.exp: disabling location: disable
FAIL -> UNRESOLVED: gdb.cp/mb-templates.exp: disabling location: run to breakpoint
FAIL -> UNRESOLVED: gdb.cp/mb-templates.exp: separate condition: run to breakpoint 2
==============================================

*** 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/a0/a0a461e5b45f6fd9eb81774ad61e55b4917d4305//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/a0/a0a461e5b45f6fd9eb81774ad61e55b4917d4305//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-23 14:16 [binutils-gdb] [gdb/testsuite] Compile infcall-nested-structs.exp with -O2 gdb-buildbot
@ 2019-10-23 15:20 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-23 15:20 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/1000

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        94cb3754118669d46c8ad87c986d8d9c59fac65a

Subject of commit:
        [gdb/testsuite] Compile infcall-nested-structs.exp with -O2

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/94/94cb3754118669d46c8ad87c986d8d9c59fac65a/

*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.ada/task_bp.exp: expanding symtab for pck.dummy_task
new UNRESOLVED: gdb.ada/task_bp.exp: run to pck.adb:pck.dummy_task - from full symtab
FAIL -> UNRESOLVED: gdb.base/new-ui-echo.exp: main console as driver: breakpoint hit reported on extra console too
FAIL -> UNRESOLVED: gdb.base/new-ui-echo.exp: main console as driver: print on main console echoes
UNRESOLVED -> FAIL: gdb.cp/mb-inline.exp: disabled breakpoint 1.2
new UNRESOLVED: gdb.cp/mb-inline.exp: disabling location: run to breakpoint
UNRESOLVED -> FAIL: gdb.cp/mb-templates.exp: disabling location: disable
UNRESOLVED -> FAIL: gdb.cp/mb-templates.exp: disabling location: run to breakpoint
new UNRESOLVED: gdb.cp/mb-templates.exp: separate condition: run to breakpoint
UNRESOLVED -> FAIL: gdb.cp/mb-templates.exp: separate condition: run to breakpoint 2
==============================================

*** 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/94/94cb3754118669d46c8ad87c986d8d9c59fac65a//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/94/94cb3754118669d46c8ad87c986d8d9c59fac65a//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-23 12:37 [binutils-gdb] ar P support gdb-buildbot
@ 2019-10-23 13:42 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-23 13:42 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/999

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        95cc7c169c4bbb6f10e630184f527b20b83fc5c3

Subject of commit:
        ar P support

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/95/95cc7c169c4bbb6f10e630184f527b20b83fc5c3/

*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.ada/task_bp.exp: expanding symtab for pck.adb:dummy_task
UNRESOLVED -> FAIL: gdb.base/new-ui-echo.exp: main console as driver: breakpoint hit reported on extra console too
UNRESOLVED -> FAIL: gdb.base/new-ui-echo.exp: main console as driver: print on main console echoes
new UNRESOLVED: gdb.base/new-ui-echo.exp: main console as driver: run to breakpoint on main console
==============================================

*** 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/95/95cc7c169c4bbb6f10e630184f527b20b83fc5c3//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/95/95cc7c169c4bbb6f10e630184f527b20b83fc5c3//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-23  9:52 [binutils-gdb] Make unlink_objfile and put_objfile_before static gdb-buildbot
@ 2019-10-23 12:03 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-23 12: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/998

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        54d83b8d3920eea4a0d545f1ff7ac2923d938e6c

Subject of commit:
        Make unlink_objfile and put_objfile_before static

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/54/54d83b8d3920eea4a0d545f1ff7ac2923d938e6c/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.ada/task_bp.exp: run to pck.adb:dummy_task - from full symtab
new UNRESOLVED: gdb.ada/task_bp.exp: run to pck.dummy_task - from full symtab
FAIL -> UNRESOLVED: gdb.base/find.exp: $_
FAIL -> UNRESOLVED: gdb.base/find.exp: $numfound
FAIL -> UNRESOLVED: gdb.base/find.exp: find 16-bit pattern
FAIL -> UNRESOLVED: gdb.base/find.exp: find 32-bit pattern
FAIL -> UNRESOLVED: gdb.base/find.exp: find 64-bit pattern
FAIL -> UNRESOLVED: gdb.base/find.exp: find byte pattern with end address
FAIL -> UNRESOLVED: gdb.base/find.exp: find int64_search_buf, +64/8*100, int64_search_buf
FAIL -> UNRESOLVED: gdb.base/find.exp: find mixed-sized pattern
FAIL -> UNRESOLVED: gdb.base/find.exp: find pattern straddling chunk boundary
FAIL -> UNRESOLVED: gdb.base/find.exp: find string pattern
FAIL -> UNRESOLVED: gdb.base/find.exp: max-count
FAIL -> UNRESOLVED: gdb.base/find.exp: pattern found at end of range
FAIL -> UNRESOLVED: gdb.base/find.exp: pattern not found at end of range
FAIL -> UNRESOLVED: gdb.base/find.exp: search spanning large range
FAIL -> UNRESOLVED: gdb.base/find.exp: set *
FAIL -> UNRESOLVED: gdb.base/find.exp: set int16_search_buf[10] = 0x1234
FAIL -> UNRESOLVED: gdb.base/find.exp: set int32_search_buf[10] = 0x12345678
FAIL -> UNRESOLVED: gdb.base/find.exp: set int64_search_buf[10] = 0xfedcba9876543210LL
FAIL -> UNRESOLVED: gdb.base/find.exp: size,max-count, /1/b
FAIL -> UNRESOLVED: gdb.base/find.exp: size,max-count, /1b
FAIL -> UNRESOLVED: gdb.base/find.exp: size,max-count, /b/1
FAIL -> UNRESOLVED: gdb.base/find.exp: size,max-count, /b1
UNRESOLVED -> FAIL: gdb.base/pending.exp: verify pending breakpoint after restart
UNRESOLVED -> FAIL: gdb.base/sepdebug.exp: Temporary breakpoint function in file
UNRESOLVED -> FAIL: gdb.base/sepdebug.exp: Temporary breakpoint info
UNRESOLVED -> FAIL: gdb.base/sepdebug.exp: Temporary breakpoint line number in file #2
UNRESOLVED -> FAIL: gdb.base/sepdebug.exp: break on default location, 1st time
UNRESOLVED -> FAIL: gdb.base/sepdebug.exp: break on default location, 2nd time
UNRESOLVED -> FAIL: gdb.base/sepdebug.exp: break on default location, 3rd time
UNRESOLVED -> FAIL: gdb.base/sepdebug.exp: break on default location, 4th time
UNRESOLVED -> FAIL: gdb.base/sepdebug.exp: break on non-existent source line
UNRESOLVED -> FAIL: gdb.base/sepdebug.exp: breakpoint offset +1
UNRESOLVED -> FAIL: gdb.base/sepdebug.exp: catch requires an event name
UNRESOLVED -> FAIL: gdb.base/sepdebug.exp: delete all breakpoints in delete_breakpoints
UNRESOLVED -> FAIL: gdb.base/sepdebug.exp: run until breakpoint set at a line number
UNRESOLVED -> FAIL: gdb.base/sepdebug.exp: run until file:function
UNRESOLVED -> FAIL: gdb.base/sepdebug.exp: run until file:linenum breakpoint
new UNRESOLVED: gdb.base/sepdebug.exp: run until function breakpoint
UNRESOLVED -> FAIL: gdb.base/sepdebug.exp: run until quoted breakpoint
UNRESOLVED -> FAIL: gdb.base/sepdebug.exp: set breakpoint pending off
UNRESOLVED -> FAIL: gdb.base/sepdebug.exp: set catch exec, never expected to trigger
UNRESOLVED -> FAIL: gdb.base/sepdebug.exp: set catch fork, never expected to trigger
UNRESOLVED -> FAIL: gdb.base/sepdebug.exp: set catch vfork, never expected to trigger
UNRESOLVED -> FAIL: gdb.base/sepdebug.exp: set to-be-silent break bp_location1
UNRESOLVED -> FAIL: gdb.base/sepdebug.exp: step onto breakpoint
UNRESOLVED -> FAIL: gdb.base/sepdebug.exp: temporary breakpoint line number #1
UNRESOLVED -> FAIL: gdb.base/sepdebug.exp: temporary breakpoint line number #2
UNRESOLVED -> FAIL: gdb.base/sepdebug.exp: temporary breakpoint line number in file #1
UNRESOLVED -> FAIL: gdb.base/sepdebug.exp: until bp_location1
==============================================

*** 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/54/54d83b8d3920eea4a0d545f1ff7ac2923d938e6c//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/54/54d83b8d3920eea4a0d545f1ff7ac2923d938e6c//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-23 10:58 [binutils-gdb] [bfd] Provide 8-byte minimum alignment for .plt section gdb-buildbot
@ 2019-10-23 10:58 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-23 10:58 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/997

Author:
        John David Anglin <danglin@gcc.gnu.org>

Commit tested:
        2c9e9550caf28bceb6b8540520f7378e1b1bb9c2

Subject of commit:
        	[bfd]	Provide 8-byte minimum alignment for .plt section

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/2c/2c9e9550caf28bceb6b8540520f7378e1b1bb9c2/

*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.ada/task_bp.exp: expanding symtab for dummy_task
new UNRESOLVED: gdb.ada/task_bp.exp: run to pck.adb:pck.dummy_task - from full symtab
new UNRESOLVED: gdb.ada/task_bp.exp: run to pck.adb:pck.dummy_task - from psymtab
new UNRESOLVED: gdb.base/chng-syms.exp: running with invalidated bpt condition after executable changes
FAIL -> UNRESOLVED: gdb.base/pending.exp: verify pending breakpoint after restart
==============================================

*** 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/2c/2c9e9550caf28bceb6b8540520f7378e1b1bb9c2//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/2c/2c9e9550caf28bceb6b8540520f7378e1b1bb9c2//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-23  5:14 [binutils-gdb] gdb: Make startswith return a bool gdb-buildbot
@ 2019-10-23  6:19 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-23  6:19 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/995

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        2377111731972d841731bc674ed6a7fb3ab90a53

Subject of commit:
        gdb: Make startswith return a bool

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/23/2377111731972d841731bc674ed6a7fb3ab90a53/

*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.base/find.exp: $_
UNRESOLVED -> FAIL: gdb.base/find.exp: $numfound
UNRESOLVED -> FAIL: gdb.base/find.exp: find 16-bit pattern
UNRESOLVED -> FAIL: gdb.base/find.exp: find 32-bit pattern
UNRESOLVED -> FAIL: gdb.base/find.exp: find 64-bit pattern
UNRESOLVED -> FAIL: gdb.base/find.exp: find byte pattern with end address
UNRESOLVED -> FAIL: gdb.base/find.exp: find int64_search_buf, +64/8*100, int64_search_buf
UNRESOLVED -> FAIL: gdb.base/find.exp: find mixed-sized pattern
UNRESOLVED -> FAIL: gdb.base/find.exp: find pattern straddling chunk boundary
UNRESOLVED -> FAIL: gdb.base/find.exp: find string pattern
UNRESOLVED -> FAIL: gdb.base/find.exp: max-count
UNRESOLVED -> FAIL: gdb.base/find.exp: pattern found at end of range
UNRESOLVED -> FAIL: gdb.base/find.exp: pattern not found at end of range
new UNRESOLVED: gdb.base/find.exp: run until function breakpoint
UNRESOLVED -> FAIL: gdb.base/find.exp: search spanning large range
UNRESOLVED -> FAIL: gdb.base/find.exp: set *
UNRESOLVED -> FAIL: gdb.base/find.exp: set int16_search_buf[10] = 0x1234
UNRESOLVED -> FAIL: gdb.base/find.exp: set int32_search_buf[10] = 0x12345678
UNRESOLVED -> FAIL: gdb.base/find.exp: set int64_search_buf[10] = 0xfedcba9876543210LL
UNRESOLVED -> FAIL: gdb.base/find.exp: size,max-count, /1/b
UNRESOLVED -> FAIL: gdb.base/find.exp: size,max-count, /1b
UNRESOLVED -> FAIL: gdb.base/find.exp: size,max-count, /b/1
UNRESOLVED -> FAIL: gdb.base/find.exp: size,max-count, /b1
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: Temporary breakpoint function in file
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: Temporary breakpoint info
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: Temporary breakpoint line number in file #2
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: break on default location, 1st time
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: break on default location, 2nd time
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: break on default location, 3rd time
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: break on default location, 4th time
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: break on non-existent source line
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: breakpoint offset +1
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: catch requires an event name
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: delete all breakpoints in delete_breakpoints
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: run until breakpoint set at a line number
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: run until file:function
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: run until file:linenum breakpoint
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: run until quoted breakpoint
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: set breakpoint pending off
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: set catch exec, never expected to trigger
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: set catch fork, never expected to trigger
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: set catch vfork, never expected to trigger
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: set to-be-silent break bp_location1
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: step onto breakpoint
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: temporary breakpoint line number #1
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: temporary breakpoint line number #2
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: temporary breakpoint line number in file #1
FAIL -> UNRESOLVED: gdb.base/sepdebug.exp: until bp_location1
==============================================

*** 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/23/2377111731972d841731bc674ed6a7fb3ab90a53//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/23/2377111731972d841731bc674ed6a7fb3ab90a53//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-23  3:34 [binutils-gdb] Replace some more qsort calls with std::sort gdb-buildbot
@ 2019-10-23  4:42 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-23  4:42 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/994

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        39ef2f6256737db92f5d60fa201fe0b301bb8100

Subject of commit:
        Replace some more qsort calls with std::sort

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/39/39ef2f6256737db92f5d60fa201fe0b301bb8100/

*** Diff to previous build ***
==============================================
FAIL -> UNRESOLVED: gdb.ada/O2_float_param.exp: frame
PASS -> UNRESOLVED: gdb.ada/access_to_unbounded_array.exp: print Aos
PASS -> UNRESOLVED: gdb.ada/aliased_array.exp: print bt
PASS -> UNRESOLVED: gdb.ada/array_of_variable_length.exp: print pck.a
PASS -> UNRESOLVED: gdb.ada/array_of_variable_length.exp: ptype $
PASS -> UNRESOLVED: gdb.ada/array_of_variable_length.exp: ptype pck.a
PASS -> UNRESOLVED: gdb.ada/array_ptr_renaming.exp: print nt
PASS -> UNRESOLVED: gdb.ada/array_ptr_renaming.exp: print ntp
PASS -> UNRESOLVED: gdb.ada/array_ptr_renaming.exp: print ntp.all
new FAIL: gdb.ada/array_return.exp: cannot run to main, testcase aborted
PASS -> UNRESOLVED: gdb.ada/array_subscript_addr.exp: print a
PASS -> UNRESOLVED: gdb.ada/arraydim.exp: ptype m
PASS -> UNRESOLVED: gdb.ada/arrayidx.exp: print e_one_two_three
PASS -> UNRESOLVED: gdb.ada/arrayidx.exp: print e_one_two_three, indexes off
PASS -> UNRESOLVED: gdb.ada/arrayidx.exp: print empty
PASS -> UNRESOLVED: gdb.ada/arrayidx.exp: print empty, indexes off
PASS -> UNRESOLVED: gdb.ada/arrayidx.exp: print few_reps
PASS -> UNRESOLVED: gdb.ada/arrayidx.exp: print few_reps, indexes off
PASS -> UNRESOLVED: gdb.ada/arrayidx.exp: print many_reps
PASS -> UNRESOLVED: gdb.ada/arrayidx.exp: print many_reps, indexes off
PASS -> UNRESOLVED: gdb.ada/arrayidx.exp: print one_two_three
PASS -> UNRESOLVED: gdb.ada/arrayidx.exp: print one_two_three, indexes off
PASS -> UNRESOLVED: gdb.ada/arrayidx.exp: print p_one_two_three
PASS -> UNRESOLVED: gdb.ada/arrayidx.exp: print p_one_two_three, indexes off
PASS -> UNRESOLVED: gdb.ada/arrayidx.exp: print r_two_three
PASS -> UNRESOLVED: gdb.ada/arrayidx.exp: print r_two_three, indexes off
PASS -> UNRESOLVED: gdb.ada/arrayidx.exp: print u_one_two_three
PASS -> UNRESOLVED: gdb.ada/arrayidx.exp: print u_one_two_three, indexes off
PASS -> UNRESOLVED: gdb.ada/arrayidx.exp: set print array-indexes off
PASS -> UNRESOLVED: gdb.ada/arrayidx.exp: set print array-indexes on
PASS -> UNRESOLVED: gdb.ada/arrayparam.exp: print call_me
PASS -> UNRESOLVED: gdb.ada/arrayparam.exp: print first after function call
PASS -> UNRESOLVED: gdb.ada/arrayparam.exp: print last after function call
PASS -> UNRESOLVED: gdb.ada/arrayparam.exp: print length after function call
PASS -> UNRESOLVED: gdb.ada/assign_arr.exp: print assign_arr_input.u2 :=
PASS -> UNRESOLVED: gdb.ada/attr_ref_and_charlit.exp: gdb_test
PASS -> UNRESOLVED: gdb.ada/attr_ref_and_charlit.exp: print s'first
PASS -> UNRESOLVED: gdb.ada/attr_ref_and_charlit.exp: print s'last
PASS -> UNRESOLVED: gdb.ada/attr_ref_and_charlit.exp: print s
PASS -> UNRESOLVED: gdb.ada/bad-task-bp-keyword.exp: break *break_me'address TASK 2
KFAIL -> UNRESOLVED: gdb.ada/bad-task-bp-keyword.exp: break *break_me'address TASK Task TaSK 2
PASS -> UNRESOLVED: gdb.ada/bad-task-bp-keyword.exp: break *break_me'address TASK if
PASS -> UNRESOLVED: gdb.ada/bias.exp: print a
PASS -> UNRESOLVED: gdb.ada/bias.exp: print cval
PASS -> UNRESOLVED: gdb.ada/bias.exp: print spr
PASS -> UNRESOLVED: gdb.ada/bias.exp: print x
PASS -> UNRESOLVED: gdb.ada/bias.exp: print x * x1
PASS -> UNRESOLVED: gdb.ada/bias.exp: print x + x1
PASS -> UNRESOLVED: gdb.ada/bias.exp: print x - x1
PASS -> UNRESOLVED: gdb.ada/bias.exp: print x / x1
PASS -> UNRESOLVED: gdb.ada/bias.exp: print x := 5
PASS -> UNRESOLVED: gdb.ada/bias.exp: print y
PASS -> UNRESOLVED: gdb.ada/bias.exp: print y /= y
PASS -> UNRESOLVED: gdb.ada/bias.exp: print y /= y1
PASS -> UNRESOLVED: gdb.ada/bias.exp: print y < y1
PASS -> UNRESOLVED: gdb.ada/bias.exp: print y <= y1
PASS -> UNRESOLVED: gdb.ada/bias.exp: print y = y
PASS -> UNRESOLVED: gdb.ada/bias.exp: print y > y1
PASS -> UNRESOLVED: gdb.ada/bias.exp: print y >= y1
PASS -> UNRESOLVED: gdb.ada/bias.exp: print/c cval
PASS -> UNRESOLVED: gdb.ada/bias.exp: ptype x + x1
PASS -> UNRESOLVED: gdb.ada/bias.exp: re-read x after storing
PASS -> UNRESOLVED: gdb.ada/big_packed_array.exp: print bad
PASS -> UNRESOLVED: gdb.ada/big_packed_array.exp: print good
PASS -> UNRESOLVED: gdb.ada/bp_enum_homonym.exp: break archive
PASS -> UNRESOLVED: gdb.ada/bp_fun_addr.exp: break *bp_fun_addr'address
new FAIL: gdb.ada/bp_inlined_func.exp: cannot run to main, testcase aborted
PASS -> UNRESOLVED: gdb.ada/bp_range_type.exp: break foo.adb:24 if small_value > 20
PASS -> UNRESOLVED: gdb.ada/bp_range_type.exp: print small_value
PASS -> UNRESOLVED: gdb.ada/bp_reset.exp: break do_nothing
PASS -> UNRESOLVED: gdb.ada/bp_reset.exp: break nested_sub
PASS -> UNRESOLVED: gdb.ada/byte_packed_arr.exp: print broken
new FAIL: gdb.ada/catch_assert_if.exp: cannot run to main, testcase aborted
new FAIL: gdb.ada/catch_ex.exp: cannot run to main, testcase aborted
PASS -> UNRESOLVED: gdb.ada/char_enum.exp: print Char_Enum_Type'
PASS -> UNRESOLVED: gdb.ada/char_enum.exp: print pck.Global_Enum_Type'
PASS -> UNRESOLVED: gdb.ada/char_enum.exp: ptype Char_Enum_Type
PASS -> UNRESOLVED: gdb.ada/char_enum.exp: ptype pck.Global_Enum_Type
PASS -> UNRESOLVED: gdb.ada/char_param.exp: call next
PASS -> UNRESOLVED: gdb.ada/char_param.exp: call same
PASS -> UNRESOLVED: gdb.ada/char_param.exp: print procedure_result after calling next
PASS -> UNRESOLVED: gdb.ada/char_param.exp: print procedure_result after calling same
PASS -> UNRESOLVED: gdb.ada/char_param.exp: print procedure_result before calling same
PASS -> UNRESOLVED: gdb.ada/complete.exp: complete break ada
PASS -> UNRESOLVED: gdb.ada/complete.exp: complete p <Exported
PASS -> UNRESOLVED: gdb.ada/complete.exp: complete p <__gnat_ada_main_prog
PASS -> UNRESOLVED: gdb.ada/complete.exp: complete p <pck__my
PASS -> UNRESOLVED: gdb.ada/complete.exp: complete p __gnat_ada_main_progra
PASS -> UNRESOLVED: gdb.ada/complete.exp: complete p ambig
PASS -> UNRESOLVED: gdb.ada/complete.exp: complete p ambiguous_f
PASS -> UNRESOLVED: gdb.ada/complete.exp: complete p ambiguous_func
PASS -> UNRESOLVED: gdb.ada/complete.exp: complete p exported
PASS -> UNRESOLVED: gdb.ada/complete.exp: complete p external_ident
PASS -> UNRESOLVED: gdb.ada/complete.exp: complete p inner.insi
PASS -> UNRESOLVED: gdb.ada/complete.exp: complete p insi
PASS -> UNRESOLVED: gdb.ada/complete.exp: complete p local_ident
PASS -> UNRESOLVED: gdb.ada/complete.exp: complete p my_glob
PASS -> UNRESOLVED: gdb.ada/complete.exp: complete p not_in_sco
PASS -> UNRESOLVED: gdb.ada/complete.exp: complete p pck
PASS -> UNRESOLVED: gdb.ada/complete.exp: complete p pck.
PASS -> UNRESOLVED: gdb.ada/complete.exp: complete p pck.inne
PASS -> UNRESOLVED: gdb.ada/complete.exp: complete p pck.inner.
PASS -> UNRESOLVED: gdb.ada/complete.exp: complete p pck.inner.ins
PASS -> UNRESOLVED: gdb.ada/complete.exp: complete p pck.ins
PASS -> UNRESOLVED: gdb.ada/complete.exp: complete p pck.local_ident
PASS -> UNRESOLVED: gdb.ada/complete.exp: complete p pck.my
PASS -> UNRESOLVED: gdb.ada/complete.exp: complete p pck__inner__ins
PASS -> UNRESOLVED: gdb.ada/complete.exp: complete p pck__local_ident
PASS -> UNRESOLVED: gdb.ada/complete.exp: complete p side
PASS -> UNRESOLVED: gdb.ada/complete.exp: complete p some
PASS -> UNRESOLVED: gdb.ada/complete.exp: p <Exported_Capitalized>
PASS -> UNRESOLVED: gdb.ada/complete.exp: p Exported_Capitalized
PASS -> UNRESOLVED: gdb.ada/complete.exp: p exported_capitalized
PASS -> UNRESOLVED: gdb.ada/complete.exp: set max-completions unlimited
new UNRESOLVED: gdb.ada/complete.exp: show editing
PASS -> UNRESOLVED: gdb.ada/cond_lang.exp: break mixed.adb:33 if light = green
PASS -> UNRESOLVED: gdb.ada/cond_lang.exp: continue
PASS -> UNRESOLVED: gdb.ada/cond_lang.exp: show lang
PASS -> UNRESOLVED: gdb.ada/dgopt.exp: list x.adb:16, 16
PASS -> UNRESOLVED: gdb.ada/display_nested.exp: display s
PASS -> UNRESOLVED: gdb.ada/dyn_arrayidx.exp: maintenance set ada ignore-descriptive-types
PASS -> UNRESOLVED: gdb.ada/dyn_arrayidx.exp: ptype array_type
PASS -> UNRESOLVED: gdb.ada/enum_idx_packed.exp: print full
PASS -> UNRESOLVED: gdb.ada/enum_idx_packed.exp: print full'first
new FAIL: gdb.ada/excep_handle.exp: cannot run to main, testcase aborted
PASS -> UNRESOLVED: gdb.ada/expr_delims.exp: break foo.adb:23
PASS -> FAIL: gdb.ada/expr_delims.exp: check that watchpoint is set correctly.
PASS -> FAIL: gdb.ada/expr_delims.exp: combination of 'if' and 'thread' delimiters.
PASS -> UNRESOLVED: gdb.ada/expr_delims.exp: continue
PASS -> FAIL: gdb.ada/expr_delims.exp: delete 1
PASS -> FAIL: gdb.ada/expr_delims.exp: print variable 'thread'
PASS -> FAIL: gdb.ada/expr_delims.exp: set conditional watchpoint.
PASS -> FAIL: gdb.ada/expr_delims.exp: set plain watchpoint on variable 'thread'
PASS -> UNRESOLVED: gdb.ada/expr_with_funcall.exp: print 1 + something
PASS -> UNRESOLVED: gdb.ada/expr_with_funcall.exp: print 246 - something
PASS -> UNRESOLVED: gdb.ada/expr_with_funcall.exp: print 3 * something
PASS -> UNRESOLVED: gdb.ada/expr_with_funcall.exp: print 496 / something
PASS -> UNRESOLVED: gdb.ada/expr_with_funcall.exp: print something
PASS -> UNRESOLVED: gdb.ada/expr_with_funcall.exp: print something * 3
PASS -> UNRESOLVED: gdb.ada/expr_with_funcall.exp: print something + 1
PASS -> UNRESOLVED: gdb.ada/expr_with_funcall.exp: print something - 2
PASS -> UNRESOLVED: gdb.ada/expr_with_funcall.exp: print something / 4
PASS -> UNRESOLVED: gdb.ada/exprs.exp: Long_Long_Integer ** Y
PASS -> UNRESOLVED: gdb.ada/exprs.exp: long_float'max
PASS -> UNRESOLVED: gdb.ada/exprs.exp: long_float'min
PASS -> UNRESOLVED: gdb.ada/fin_fun_out.exp: finish
PASS -> UNRESOLVED: gdb.ada/fin_fun_out.exp: print 1
PASS -> UNRESOLVED: gdb.ada/fixed_cmp.exp: print My_Var > 10
PASS -> UNRESOLVED: gdb.ada/fixed_cmp.exp: print My_Var > 10.0
PASS -> UNRESOLVED: gdb.ada/fixed_cmp.exp: print My_Var > 20
PASS -> UNRESOLVED: gdb.ada/fixed_cmp.exp: print My_Var > 20.0
PASS -> UNRESOLVED: gdb.ada/fixed_points.exp: p on a fixed point type
PASS -> UNRESOLVED: gdb.ada/fixed_points.exp: p on a new fixed point type
PASS -> UNRESOLVED: gdb.ada/fixed_points.exp: p on a subtype fixed point type
PASS -> UNRESOLVED: gdb.ada/fixed_points.exp: print Overprecise_Object
PASS -> UNRESOLVED: gdb.ada/fixed_points.exp: ptype Overprecise_Object
PASS -> UNRESOLVED: gdb.ada/float_param.exp: call set_double
PASS -> UNRESOLVED: gdb.ada/float_param.exp: call set_float
PASS -> UNRESOLVED: gdb.ada/float_param.exp: call set_long_double
PASS -> UNRESOLVED: gdb.ada/float_param.exp: print global_double
PASS -> UNRESOLVED: gdb.ada/float_param.exp: print global_float
PASS -> UNRESOLVED: gdb.ada/float_param.exp: print global_long_double
new UNRESOLVED: gdb.ada/formatted_ref.exp: address of s1
PASS -> UNRESOLVED: gdb.ada/formatted_ref.exp: print s.x = 13
PASS -> UNRESOLVED: gdb.ada/formatted_ref.exp: print/x s
PASS -> UNRESOLVED: gdb.ada/formatted_ref.exp: print/x s'access
PASS -> UNRESOLVED: gdb.ada/formatted_ref.exp: print/x s'unchecked_access
PASS -> UNRESOLVED: gdb.ada/formatted_ref.exp: print/x s'unrestricted_access
PASS -> UNRESOLVED: gdb.ada/frame_arg_lang.exp: Set current source language to "auto; currently c".
PASS -> UNRESOLVED: gdb.ada/frame_arg_lang.exp: Set current source language to "manual; currently c".
PASS -> UNRESOLVED: gdb.ada/frame_arg_lang.exp: backtrace with auto: c
PASS -> UNRESOLVED: gdb.ada/frame_arg_lang.exp: backtrace with language back to 'auto; c'
PASS -> UNRESOLVED: gdb.ada/frame_arg_lang.exp: backtrace with language forced to 'c'
PASS -> UNRESOLVED: gdb.ada/frame_arg_lang.exp: set print frame-arguments all
PASS -> UNRESOLVED: gdb.ada/frame_arg_lang.exp: show language when set back to 'auto; c'
PASS -> UNRESOLVED: gdb.ada/frame_arg_lang.exp: show language when set to 'auto; c'
PASS -> UNRESOLVED: gdb.ada/frame_arg_lang.exp: show language when set to 'c'
PASS -> UNRESOLVED: gdb.ada/fullname_bp.exp: break Pck.Hello
PASS -> UNRESOLVED: gdb.ada/fullname_bp.exp: break pck.adb:Pck.Hello
PASS -> UNRESOLVED: gdb.ada/fullname_bp.exp: break pck.adb:pck.hello
PASS -> UNRESOLVED: gdb.ada/fullname_bp.exp: break pck.hello
PASS -> UNRESOLVED: gdb.ada/fun_addr.exp: print foo'address
PASS -> UNRESOLVED: gdb.ada/fun_overload_menu.exp: 1
PASS -> UNRESOLVED: gdb.ada/fun_overload_menu.exp: multiple matches for f
PASS -> UNRESOLVED: gdb.ada/fun_overload_menu.exp: multiple matches for p
PASS -> UNRESOLVED: gdb.ada/fun_overload_menu.exp: set ada print-signatures off
PASS -> UNRESOLVED: gdb.ada/fun_renaming.exp: print fun_rename_test_n
PASS -> UNRESOLVED: gdb.ada/fun_renaming.exp: print fun_rename_test_next
PASS -> UNRESOLVED: gdb.ada/fun_renaming.exp: print pack.renamed_fun_rename_test_next
PASS -> UNRESOLVED: gdb.ada/fun_renaming.exp: print renamed_fun_rename_test_next
PASS -> UNRESOLVED: gdb.ada/funcall_char.exp: print f
PASS -> UNRESOLVED: gdb.ada/funcall_param.exp: p ident
PASS -> UNRESOLVED: gdb.ada/funcall_ptr.exp: Check that initial value of GA is null
PASS -> UNRESOLVED: gdb.ada/funcall_ptr.exp: Check that value of GA is 0x1234
PASS -> UNRESOLVED: gdb.ada/funcall_ptr.exp: call pck.p
XPASS -> UNRESOLVED: gdb.ada/funcall_ref.exp: p get
XPASS -> UNRESOLVED: gdb.ada/funcall_ref.exp: ptype get
PASS -> UNRESOLVED: gdb.ada/homonym.exp: break at BREAK_2
PASS -> UNRESOLVED: gdb.ada/homonym.exp: continue until BREAK_2
new UNRESOLVED: gdb.ada/homonym.exp: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.ada/homonym.exp: print lcl at BREAK_1
PASS -> UNRESOLVED: gdb.ada/homonym.exp: print lcl at BREAK_2
PASS -> UNRESOLVED: gdb.ada/homonym.exp: ptype int_type at BREAK_1
PASS -> UNRESOLVED: gdb.ada/homonym.exp: ptype lcl at BREAK_1
PASS -> UNRESOLVED: gdb.ada/homonym.exp: ptype lcl at BREAK_2
PASS -> UNRESOLVED: gdb.ada/homonym.exp: ptype local_type at BREAK_1
PASS -> UNRESOLVED: gdb.ada/homonym.exp: ptype local_type at BREAK_2
PASS -> UNRESOLVED: gdb.ada/homonym.exp: ptype local_type_subtype at BREAK_1
PASS -> UNRESOLVED: gdb.ada/homonym.exp: ptype local_type_subtype at BREAK_2
PASS -> UNRESOLVED: gdb.ada/homonym.exp: set breakpoint at <homonym__get_value>
PASS -> UNRESOLVED: gdb.ada/homonym.exp: set breakpoint at Get_Value
PASS -> UNRESOLVED: gdb.ada/homonym.exp: set breakpoint at homonym.adb:Get_Value
new FAIL: gdb.ada/info_auto_lang.exp: can't run to some_c.c STOP location
new FAIL: gdb.ada/info_exc.exp: cannot run to main, testcase aborted
PASS -> UNRESOLVED: gdb.ada/info_locals_renaming.exp: info locals
PASS -> UNRESOLVED: gdb.ada/int_deref.exp: print *long_integer
PASS -> UNRESOLVED: gdb.ada/int_deref.exp: print long_integer
PASS -> UNRESOLVED: gdb.ada/int_deref.exp: print watch'address
PASS -> UNRESOLVED: gdb.ada/interface.exp: print r
FAIL -> UNRESOLVED: gdb.ada/interface.exp: print s
FAIL -> UNRESOLVED: gdb.ada/iwide.exp: print My_Drawable
FAIL -> UNRESOLVED: gdb.ada/iwide.exp: print d_access.all
FAIL -> UNRESOLVED: gdb.ada/iwide.exp: print dp_access.all
FAIL -> UNRESOLVED: gdb.ada/iwide.exp: print s_access.all
FAIL -> UNRESOLVED: gdb.ada/iwide.exp: print sp_access.all
PASS -> UNRESOLVED: gdb.ada/lang_switch.exp: backtrace
PASS -> UNRESOLVED: gdb.ada/lang_switch.exp: backtrace with lang set to C
PASS -> UNRESOLVED: gdb.ada/lang_switch.exp: set lang c
PASS -> UNRESOLVED: gdb.ada/lang_switch.exp: set print frame-arguments all
PASS -> UNRESOLVED: gdb.ada/length_cond.exp: cond 1 enum_val'first > 15
PASS -> UNRESOLVED: gdb.ada/length_cond.exp: cond 1 enum_val'last > 15
PASS -> UNRESOLVED: gdb.ada/length_cond.exp: cond 1 int_val'first > 15
PASS -> UNRESOLVED: gdb.ada/length_cond.exp: cond 1 int_val'last > 15
PASS -> UNRESOLVED: gdb.ada/length_cond.exp: cond 1 loc'first > 15
PASS -> UNRESOLVED: gdb.ada/length_cond.exp: cond 1 loc'last > 15
PASS -> UNRESOLVED: gdb.ada/length_cond.exp: cond 1 loc'length > 15
PASS -> UNRESOLVED: gdb.ada/length_cond.exp: cond 1 my_array'first
PASS -> UNRESOLVED: gdb.ada/length_cond.exp: cond 1 my_array'last
PASS -> UNRESOLVED: gdb.ada/length_cond.exp: cond 1 my_array'length
PASS -> FAIL: gdb.ada/length_cond.exp: setting breakpoint at length_cond.adb:31
PASS -> UNRESOLVED: gdb.ada/maint_with_ada.exp: maintenance check-psymtabs
PASS -> UNRESOLVED: gdb.ada/maint_with_ada.exp: maintenance check-symtabs
new UNRESOLVED: gdb.ada/maint_with_ada.exp: setting breakpoint at Do_Nothing
new UNRESOLVED: gdb.ada/maint_with_ada.exp: setting breakpoint at Var_Arr_Typedef
new FAIL: gdb.ada/maint_with_ada.exp: setting breakpoint at adainit
new FAIL: gdb.ada/mi_catch_assert.exp: cannot run to main, testcase aborted
new FAIL: gdb.ada/mi_catch_ex.exp: cannot run to main, testcase aborted
new FAIL: gdb.ada/mi_catch_ex_hand.exp: cannot run to main, testcase aborted
new UNRESOLVED: gdb.ada/mi_dyn_arr.exp:
PASS -> UNRESOLVED: gdb.ada/mi_dyn_arr.exp: breakpoint at main
PASS -> UNRESOLVED: gdb.ada/mi_dyn_arr.exp: create bt varobj
PASS -> UNRESOLVED: gdb.ada/mi_dyn_arr.exp: list ggg1's children
PASS -> UNRESOLVED: gdb.ada/mi_dyn_arr.exp: run to foo.adb:22
new UNRESOLVED: gdb.ada/mi_dyn_arr.exp: wait for stop
new FAIL: gdb.ada/mi_ex_cond.exp: cannot run to main, testcase aborted
new UNRESOLVED: gdb.ada/mi_exc_info.exp:
new UNRESOLVED: gdb.ada/mi_interface.exp:
PASS -> UNRESOLVED: gdb.ada/mi_interface.exp: breakpoint at main
FAIL -> UNRESOLVED: gdb.ada/mi_interface.exp: create ggg1 varobj
FAIL -> UNRESOLVED: gdb.ada/mi_interface.exp: list ggg1's children
PASS -> UNRESOLVED: gdb.ada/mi_interface.exp: run to foo.adb:22
new UNRESOLVED: gdb.ada/mi_interface.exp: wait for stop
new UNRESOLVED: gdb.ada/mi_ref_changeable.exp:
PASS -> UNRESOLVED: gdb.ada/mi_ref_changeable.exp: -var-update a at STOP_2
PASS -> UNRESOLVED: gdb.ada/mi_ref_changeable.exp: -var-update b at STOP_2
PASS -> UNRESOLVED: gdb.ada/mi_ref_changeable.exp: breakpoint at main
PASS -> UNRESOLVED: gdb.ada/mi_ref_changeable.exp: create varobj for a
PASS -> UNRESOLVED: gdb.ada/mi_ref_changeable.exp: create varobj for b
PASS -> UNRESOLVED: gdb.ada/mi_ref_changeable.exp: run to foo_rb20_056.adb:25
PASS -> UNRESOLVED: gdb.ada/mi_ref_changeable.exp: run to foo_rb20_056.adb:26
new UNRESOLVED: gdb.ada/mi_ref_changeable.exp: wait for stop
new UNRESOLVED: gdb.ada/mi_string_access.exp:
PASS -> UNRESOLVED: gdb.ada/mi_string_access.exp: Create var1 varobj
PASS -> UNRESOLVED: gdb.ada/mi_string_access.exp: Print var1
PASS -> UNRESOLVED: gdb.ada/mi_string_access.exp: Print var1 first child
PASS -> UNRESOLVED: gdb.ada/mi_string_access.exp: Print var1 second child
PASS -> UNRESOLVED: gdb.ada/mi_string_access.exp: breakpoint at main
PASS -> UNRESOLVED: gdb.ada/mi_string_access.exp: list var1's children
PASS -> UNRESOLVED: gdb.ada/mi_string_access.exp: run to bar.adb:23
new UNRESOLVED: gdb.ada/mi_string_access.exp: wait for stop
new UNRESOLVED: gdb.ada/mi_task_arg.exp:
PASS -> UNRESOLVED: gdb.ada/mi_task_arg.exp: -stack-list-arguments 1
PASS -> UNRESOLVED: gdb.ada/mi_task_arg.exp: breakpoint at task_switch.break_me
new UNRESOLVED: gdb.ada/mi_task_info.exp:
PASS -> UNRESOLVED: gdb.ada/mi_task_info.exp: -ada-task-info 3
PASS -> UNRESOLVED: gdb.ada/mi_task_info.exp: -ada-task-info with no argument
PASS -> UNRESOLVED: gdb.ada/mi_task_info.exp: breakpoint at task_switch.break_me
new UNRESOLVED: gdb.ada/mi_var_array.exp:
PASS -> UNRESOLVED: gdb.ada/mi_var_array.exp: breakpoint at main
PASS -> UNRESOLVED: gdb.ada/mi_var_array.exp: create bt varobj
PASS -> UNRESOLVED: gdb.ada/mi_var_array.exp: list vta's children
PASS -> UNRESOLVED: gdb.ada/mi_var_array.exp: run to bar.adb:28
new UNRESOLVED: gdb.ada/mi_var_array.exp: wait for stop
new UNRESOLVED: gdb.ada/mi_var_union.exp:
PASS -> UNRESOLVED: gdb.ada/mi_var_union.exp: Create var1 varobj
PASS -> UNRESOLVED: gdb.ada/mi_var_union.exp: breakpoint at main
PASS -> UNRESOLVED: gdb.ada/mi_var_union.exp: list var1's children
PASS -> UNRESOLVED: gdb.ada/mi_var_union.exp: run to bar.adb:28
new UNRESOLVED: gdb.ada/mi_var_union.exp: wait for stop
PASS -> UNRESOLVED: gdb.ada/n_arr_bound.exp: ptype var
PASS -> UNRESOLVED: gdb.ada/nested.exp: break on nested function First
PASS -> UNRESOLVED: gdb.ada/null_array.exp: print my_matrix
PASS -> UNRESOLVED: gdb.ada/null_array.exp: print my_table
PASS -> UNRESOLVED: gdb.ada/null_array.exp: ptype my_table
PASS -> UNRESOLVED: gdb.ada/null_record.exp: ptype on null record
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: break "&"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: break "*"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: break "**"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: break "+"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: break "-"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: break "/"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: break "<"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: break "<="
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: break "="
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: break ">"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: break ">="
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: break "abs"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: break "and"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: break "mod"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: break "not"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: break "or"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: break "rem"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: break "xor"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: break ops."&"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: break ops."*"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: break ops."**"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: break ops."+"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: break ops."-"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: break ops."/"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: break ops."<"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: break ops."<="
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: break ops."="
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: break ops.">"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: break ops.">="
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: break ops."abs"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: break ops."and"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: break ops."mod"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: break ops."not"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: break ops."or"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: break ops."rem"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: break ops."xor"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: continue to "&"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: continue to "*"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: continue to "**"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: continue to "+"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: continue to "-"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: continue to "/"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: continue to "<"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: continue to "<="
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: continue to "="
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: continue to ">"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: continue to ">="
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: continue to "abs"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: continue to "and"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: continue to "mod"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: continue to "not"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: continue to "or"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: continue to "rem"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: continue to "xor"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: continue to ops."&"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: continue to ops."*"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: continue to ops."**"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: continue to ops."+"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: continue to ops."-"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: continue to ops."/"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: continue to ops."<"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: continue to ops."<="
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: continue to ops."="
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: continue to ops.">"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: continue to ops.">="
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: continue to ops."abs"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: continue to ops."and"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: continue to ops."mod"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: continue to ops."not"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: continue to ops."or"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: continue to ops."rem"
PASS -> UNRESOLVED: gdb.ada/operator_bp.exp: continue to ops."xor"
PASS -> UNRESOLVED: gdb.ada/out_of_line_in_inlined.exp: break foo_o224_021.child1.child2
PASS -> UNRESOLVED: gdb.ada/out_of_line_in_inlined.exp: bt
PASS -> UNRESOLVED: gdb.ada/packed_array.exp: print &var
PASS -> UNRESOLVED: gdb.ada/packed_array.exp: print u_var
PASS -> UNRESOLVED: gdb.ada/packed_array.exp: print var
PASS -> UNRESOLVED: gdb.ada/packed_array.exp: ptype &var
PASS -> UNRESOLVED: gdb.ada/packed_array_assign.exp: print npr :=
PASS -> UNRESOLVED: gdb.ada/packed_array_assign.exp: print pra :=
PASS -> UNRESOLVED: gdb.ada/packed_array_assign.exp: print pra
PASS -> UNRESOLVED: gdb.ada/packed_tagged.exp: print x
PASS -> UNRESOLVED: gdb.ada/packed_tagged.exp: ptype x
PASS -> UNRESOLVED: gdb.ada/pckd_arr_ren.exp: print var
PASS -> UNRESOLVED: gdb.ada/pckd_neg.exp: print SSA
PASS -> UNRESOLVED: gdb.ada/pkd_arr_elem.exp: print test
PASS -> UNRESOLVED: gdb.ada/pkd_arr_elem.exp: print test.str
PASS -> UNRESOLVED: gdb.ada/pp-rec-component.exp: print /r before
PASS -> UNRESOLVED: gdb.ada/pp-rec-component.exp: print before
PASS -> UNRESOLVED: gdb.ada/print_chars.exp: print C
PASS -> UNRESOLVED: gdb.ada/print_chars.exp: print MC
PASS -> UNRESOLVED: gdb.ada/print_chars.exp: print WC
PASS -> UNRESOLVED: gdb.ada/print_chars.exp: print WWC
PASS -> UNRESOLVED: gdb.ada/print_pc.exp: p /x $pc
PASS -> UNRESOLVED: gdb.ada/ptr_typedef.exp: print my_blob.bees
PASS -> UNRESOLVED: gdb.ada/ptype_array.exp: ptype 2..5
PASS -> UNRESOLVED: gdb.ada/ptype_array.exp: ptype 3..5
PASS -> UNRESOLVED: gdb.ada/ptype_field.exp: ptype circle
PASS -> UNRESOLVED: gdb.ada/ptype_field.exp: ptype circle.pos
PASS -> UNRESOLVED: gdb.ada/ptype_field.exp: ptype circle.pos.x
PASS -> UNRESOLVED: gdb.ada/ptype_union.exp: print global
PASS -> UNRESOLVED: gdb.ada/py_range.exp: python print
PASS -> UNRESOLVED: gdb.ada/py_taft.exp: python print
PASS -> UNRESOLVED: gdb.ada/py_taft.exp: python v = gdb.parse_and_eval
PASS -> UNRESOLVED: gdb.ada/rdv_wait.exp: task 2
PASS -> UNRESOLVED: gdb.ada/ref_tick_size.exp: print d1'size = d2'size
PASS -> UNRESOLVED: gdb.ada/repeat_dyn.exp: print a1
PASS -> UNRESOLVED: gdb.ada/same_component_name.exp: Print bottom component field
PASS -> UNRESOLVED: gdb.ada/same_component_name.exp: Print field existing only in bottom component
PASS -> UNRESOLVED: gdb.ada/same_component_name.exp: Print field existing only in dyn_middle component
PASS -> UNRESOLVED: gdb.ada/same_component_name.exp: Print top component field
PASS -> UNRESOLVED: gdb.ada/same_component_name.exp: Print top component field in middle assign function
PASS -> UNRESOLVED: gdb.ada/same_component_name.exp: continue to bottom assign breakpoint
PASS -> UNRESOLVED: gdb.ada/same_component_name.exp: continue to dyn_middle assign breakpoint
PASS -> UNRESOLVED: gdb.ada/same_component_name.exp: continue to middle assign breakpoint
new FAIL: gdb.ada/same_component_name.exp: setting breakpoint at pck.adb:22
new UNRESOLVED: gdb.ada/same_component_name.exp: setting breakpoint at pck.adb:29
new UNRESOLVED: gdb.ada/same_component_name.exp: setting breakpoint at pck.adb:35
new UNRESOLVED: gdb.ada/same_component_name.exp: setting breakpoint at pck.adb:53
PASS -> UNRESOLVED: gdb.ada/scoped_watch.exp: break foo_p708_025.adb:22
PASS -> UNRESOLVED: gdb.ada/scoped_watch.exp: break pck.increment
PASS -> UNRESOLVED: gdb.ada/scoped_watch.exp: continuing to breakpoint in pck.increment
PASS -> UNRESOLVED: gdb.ada/scoped_watch.exp: continuing to breakpoint on call to Do_Nothing
PASS -> UNRESOLVED: gdb.ada/scoped_watch.exp: continuing to watchpoint hit
PASS -> UNRESOLVED: gdb.ada/scoped_watch.exp: continuing until watchpoint automatic deletion
PASS -> UNRESOLVED: gdb.ada/scoped_watch.exp: next to call to Call_Me
PASS -> UNRESOLVED: gdb.ada/scoped_watch.exp: watch result
FAIL -> UNRESOLVED: gdb.ada/set_pckd_arr_elt.exp: continue to update_small
PASS -> UNRESOLVED: gdb.ada/set_pckd_arr_elt.exp: print sa
new UNRESOLVED: gdb.ada/set_pckd_arr_elt.exp: setting breakpoint at update_small
PASS -> UNRESOLVED: gdb.ada/str_binop_equal.exp: print my_str = "AB"
PASS -> UNRESOLVED: gdb.ada/str_binop_equal.exp: print my_str = "ABCD"
PASS -> UNRESOLVED: gdb.ada/str_binop_equal.exp: print my_str = "EFGH"
PASS -> UNRESOLVED: gdb.ada/str_binop_equal.exp: print my_str = my_str
PASS -> UNRESOLVED: gdb.ada/str_ref_cmp.exp: operator = works for strings
PASS -> UNRESOLVED: gdb.ada/str_ref_cmp.exp: print String_Var
PASS -> UNRESOLVED: gdb.ada/sym_print_name.exp: multiple matches for symbol integervar
PASS -> UNRESOLVED: gdb.ada/sym_print_name.exp: select first choice from multiple-choice menu
FAIL -> UNRESOLVED: gdb.ada/tagged.exp: print obj
PASS -> UNRESOLVED: gdb.ada/tagged.exp: print segm
FAIL -> UNRESOLVED: gdb.ada/tagged.exp: ptype obj
PASS -> UNRESOLVED: gdb.ada/tagged.exp: ptype segm
FAIL -> UNRESOLVED: gdb.ada/tagged_access.exp: ptype c.all
FAIL -> UNRESOLVED: gdb.ada/tagged_access.exp: ptype c.menu_name
PASS -> UNRESOLVED: gdb.ada/tagged_not_init.exp: print obj
PASS -> UNRESOLVED: gdb.ada/task_bp.exp: break dummy_task - from full symtab
PASS -> UNRESOLVED: gdb.ada/task_bp.exp: break dummy_task - from psymtab
PASS -> UNRESOLVED: gdb.ada/task_bp.exp: break pck.adb:dummy_task - from full symtab
PASS -> UNRESOLVED: gdb.ada/task_bp.exp: break pck.adb:dummy_task - from psymtab
PASS -> UNRESOLVED: gdb.ada/task_bp.exp: break pck.adb:pck.dummy_task - from full symtab
PASS -> UNRESOLVED: gdb.ada/task_bp.exp: break pck.adb:pck.dummy_task - from psymtab
PASS -> UNRESOLVED: gdb.ada/task_bp.exp: break pck.dummy_task - from full symtab
PASS -> UNRESOLVED: gdb.ada/task_bp.exp: break pck.dummy_task - from psymtab
PASS -> UNRESOLVED: gdb.ada/task_bp.exp: expanding symtab for pck.adb:dummy_task
PASS -> UNRESOLVED: gdb.ada/task_bp.exp: run to dummy_task - from full symtab
PASS -> UNRESOLVED: gdb.ada/task_bp.exp: run to dummy_task - from psymtab
PASS -> UNRESOLVED: gdb.ada/task_bp.exp: run to pck.adb:dummy_task - from full symtab
PASS -> UNRESOLVED: gdb.ada/task_bp.exp: run to pck.adb:dummy_task - from psymtab
PASS -> UNRESOLVED: gdb.ada/task_bp.exp: run to pck.dummy_task - from full symtab
PASS -> UNRESOLVED: gdb.ada/tasks.exp: break break_me task 1
PASS -> UNRESOLVED: gdb.ada/tasks.exp: break break_me task 3
PASS -> UNRESOLVED: gdb.ada/tasks.exp: info tasks before inserting breakpoint
PASS -> UNRESOLVED: gdb.ada/tick_length_array_enum_idx.exp: print cold'length
PASS -> UNRESOLVED: gdb.ada/tick_length_array_enum_idx.exp: print full'length
PASS -> UNRESOLVED: gdb.ada/tick_length_array_enum_idx.exp: print prim'length
PASS -> UNRESOLVED: gdb.ada/tick_length_array_enum_idx.exp: print vars'length
PASS -> UNRESOLVED: gdb.ada/tick_length_array_enum_idx.exp: ptype cold'length
PASS -> UNRESOLVED: gdb.ada/tick_length_array_enum_idx.exp: ptype full'length
PASS -> UNRESOLVED: gdb.ada/tick_length_array_enum_idx.exp: ptype full_table'length
PASS -> UNRESOLVED: gdb.ada/tick_length_array_enum_idx.exp: ptype prim'length
PASS -> UNRESOLVED: gdb.ada/tick_length_array_enum_idx.exp: ptype primary_table'length
PASS -> UNRESOLVED: gdb.ada/tick_length_array_enum_idx.exp: ptype variable_table'length
PASS -> UNRESOLVED: gdb.ada/tick_length_array_enum_idx.exp: ptype vars'length
PASS -> UNRESOLVED: gdb.ada/type_coercion.exp: p q
PASS -> UNRESOLVED: gdb.ada/type_coercion.exp: print {Integer} $addr
PASS -> UNRESOLVED: gdb.ada/type_coercion.exp: save q'address in convenience variable
PASS -> UNRESOLVED: gdb.ada/type_coercion.exp: set {Integer} $addr := 19
PASS -> UNRESOLVED: gdb.ada/unc_arr_ptr_in_var_rec.exp: continue to STOP2
PASS -> UNRESOLVED: gdb.ada/unc_arr_ptr_in_var_rec.exp: print My_Object with null Ptr
PASS -> UNRESOLVED: gdb.ada/unc_arr_ptr_in_var_rec.exp: print My_Object.Ptr when null
PASS -> UNRESOLVED: gdb.ada/unc_arr_ptr_in_var_rec.exp: print My_P_Object with null Ptr
PASS -> UNRESOLVED: gdb.ada/unc_arr_ptr_in_var_rec.exp: print My_P_Object.Ptr when no longer null
PASS -> UNRESOLVED: gdb.ada/unc_arr_ptr_in_var_rec.exp: print My_P_Object.Ptr when null
PASS -> UNRESOLVED: gdb.ada/unc_arr_ptr_in_var_rec.exp: print my_object after setting Ptr
PASS -> UNRESOLVED: gdb.ada/unc_arr_ptr_in_var_rec.exp: print my_object.ptr.all
PASS -> UNRESOLVED: gdb.ada/unc_arr_ptr_in_var_rec.exp: print my_p_object after setting Ptr
PASS -> UNRESOLVED: gdb.ada/unc_arr_ptr_in_var_rec.exp: print my_p_object.ptr.all
new UNRESOLVED: gdb.ada/unc_arr_ptr_in_var_rec.exp: setting breakpoint at foo.adb:48
PASS -> UNRESOLVED: gdb.ada/uninitialized_vars.exp: info locals
PASS -> UNRESOLVED: gdb.ada/var_arr_attrs.exp: print my_object.data'first
PASS -> UNRESOLVED: gdb.ada/var_arr_attrs.exp: print my_object.data'last
PASS -> UNRESOLVED: gdb.ada/var_arr_attrs.exp: print my_object.data'length
PASS -> UNRESOLVED: gdb.ada/var_arr_attrs.exp: print my_small_object.data'first
PASS -> UNRESOLVED: gdb.ada/var_arr_attrs.exp: print my_small_object.data'last
PASS -> UNRESOLVED: gdb.ada/var_arr_attrs.exp: print my_small_object.data'length
PASS -> UNRESOLVED: gdb.ada/var_arr_typedef.exp: print a
PASS -> UNRESOLVED: gdb.ada/var_arr_typedef.exp: print va
PASS -> UNRESOLVED: gdb.ada/var_arr_typedef.exp: print vb
PASS -> UNRESOLVED: gdb.ada/var_rec_arr.exp: print a1
PASS -> UNRESOLVED: gdb.ada/var_rec_arr.exp: print a2
PASS -> UNRESOLVED: gdb.ada/var_rec_arr.exp: ptype a1
PASS -> UNRESOLVED: gdb.ada/variant_record_packed_array.exp: print address
PASS -> UNRESOLVED: gdb.ada/variant_record_packed_array.exp: print my_buffer
PASS -> UNRESOLVED: gdb.ada/variant_record_packed_array.exp: print {foo.octal_buffer}
PASS -> UNRESOLVED: gdb.ada/vla.exp: print r00
PASS -> UNRESOLVED: gdb.ada/vla.exp: print r01
PASS -> UNRESOLVED: gdb.ada/vla.exp: print r10
PASS -> UNRESOLVED: gdb.ada/vla.exp: print r22
PASS -> UNRESOLVED: gdb.ada/watch_arg.exp: continuing to second breakpoint
PASS -> UNRESOLVED: gdb.ada/watch_arg.exp: continuing until watchpoint automatic deletion
PASS -> UNRESOLVED: gdb.ada/watch_arg.exp: insert second breakpoint in watch.adb
PASS -> UNRESOLVED: gdb.ada/watch_arg.exp: set watchpoint on function argument X
PASS -> UNRESOLVED: gdb.ada/watch_minus_l.exp: continue with watch -location
PASS -> UNRESOLVED: gdb.ada/watch_minus_l.exp: watch -location pck.global_var
PASS -> UNRESOLVED: gdb.ada/win_fu_syms.exp: info line on Do_Nothing call
PASS -> UNRESOLVED: gdb.ada/win_fu_syms.exp: info line on variable declaration
new FAIL: gdb.arch/disp-step-insn-reloc.exp: can't run to main
new FAIL: gdb.arch/ftrace-insn-reloc.exp: can't run to main to check for trace support
new FAIL: gdb.asm/asm-source.exp: can't run to main
PASS -> UNRESOLVED: gdb.base/a2-run.exp: run "a2-run" with no args
new FAIL: gdb.base/advance.exp: can't run to main
new FAIL: gdb.base/annota-input-while-running.exp: can't run to main
new FAIL: gdb.base/anon.exp: run to main
new UNRESOLVED: gdb.base/argv0-symlink.exp: break main
new FAIL: gdb.base/asmlabel.exp: can't run to main
new FAIL: gdb.base/auto-connect-native-target.exp: can't run to main
new FAIL: gdb.base/auxv.exp: can't run to main
PASS -> UNRESOLVED: gdb.base/bang.exp: continue until exit
new FAIL: gdb.base/bigcore.exp: can't run to main
PASS -> UNRESOLVED: gdb.base/bitfields.exp: bitfield containment #1
PASS -> UNRESOLVED: gdb.base/bitfields.exp: bitfield containment #2
PASS -> UNRESOLVED: gdb.base/bitfields.exp: bitfield uniqueness
PASS -> UNRESOLVED: gdb.base/bitfields.exp: continuing to break1 #1
PASS -> UNRESOLVED: gdb.base/bitfields.exp: continuing to break1 #2
PASS -> UNRESOLVED: gdb.base/bitfields.exp: continuing to break1 #3
PASS -> UNRESOLVED: gdb.base/bitfields.exp: continuing to break1 #4
PASS -> UNRESOLVED: gdb.base/bitfields.exp: continuing to break1 #5
PASS -> UNRESOLVED: gdb.base/bitfields.exp: continuing to break1 #6
PASS -> UNRESOLVED: gdb.base/bitfields.exp: continuing to break1 #7
PASS -> UNRESOLVED: gdb.base/bitfields.exp: continuing to break1 #8
PASS -> UNRESOLVED: gdb.base/bitfields.exp: continuing to break1 #9
PASS -> UNRESOLVED: gdb.base/bitfields.exp: continuing to break2
PASS -> UNRESOLVED: gdb.base/bitfields.exp: continuing to break4 #1
PASS -> UNRESOLVED: gdb.base/bitfields.exp: continuing to break4 #2
PASS -> UNRESOLVED: gdb.base/bitfields.exp: continuing to break5
new UNRESOLVED: gdb.base/bitfields.exp: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/bitfields.exp: determining signed-ness of bitfields
PASS -> UNRESOLVED: gdb.base/bitfields.exp: print $myvar.a
PASS -> UNRESOLVED: gdb.base/bitfields.exp: print $myvar.f
PASS -> UNRESOLVED: gdb.base/bitfields.exp: print $myvar.inner.b
PASS -> UNRESOLVED: gdb.base/bitfields.exp: print $myvar.inner.deep.c
PASS -> UNRESOLVED: gdb.base/bitfields.exp: print $myvar.inner.deep.d
PASS -> UNRESOLVED: gdb.base/bitfields.exp: print $myvar.inner.e
PASS -> UNRESOLVED: gdb.base/bitfields.exp: print flags
PASS -> UNRESOLVED: gdb.base/bitfields.exp: set $myvar.a = 0
PASS -> UNRESOLVED: gdb.base/bitfields.exp: set $myvar.f = 1
PASS -> UNRESOLVED: gdb.base/bitfields.exp: set $myvar.inner.b = 1
PASS -> UNRESOLVED: gdb.base/bitfields.exp: set $myvar.inner.deep.c = 0
PASS -> UNRESOLVED: gdb.base/bitfields.exp: set $myvar.inner.deep.d = -1
PASS -> UNRESOLVED: gdb.base/bitfields.exp: set $myvar.inner.e = 1
PASS -> UNRESOLVED: gdb.base/bitfields.exp: set internal var
new UNRESOLVED: gdb.base/bitfields.exp: setting breakpoint at break5
PASS -> UNRESOLVED: gdb.base/bitfields.exp: signed bitfields with -1
PASS -> UNRESOLVED: gdb.base/bitfields.exp: signed bitfields, max negative values
PASS -> UNRESOLVED: gdb.base/bitfields.exp: signed bitfields, max positive values
PASS -> UNRESOLVED: gdb.base/bitfields.exp: unsigned bitfield ranges
PASS -> UNRESOLVED: gdb.base/bitfields2.exp: bitfield containment; flags.u1, flags.u3, and flags.s3 to all 1s
PASS -> UNRESOLVED: gdb.base/bitfields2.exp: bitfield containment; flags.u2, flags.s1, flags.s2 to all 1s
PASS -> UNRESOLVED: gdb.base/bitfields2.exp: bitfield uniqueness; flags.s1 = 1
PASS -> UNRESOLVED: gdb.base/bitfields2.exp: bitfield uniqueness; flags.s2 = 1
PASS -> UNRESOLVED: gdb.base/bitfields2.exp: bitfield uniqueness; flags.s3 = 1
PASS -> UNRESOLVED: gdb.base/bitfields2.exp: bitfield uniqueness; flags.u1 = 1
PASS -> UNRESOLVED: gdb.base/bitfields2.exp: bitfield uniqueness; flags.u2 = 1
PASS -> UNRESOLVED: gdb.base/bitfields2.exp: bitfield uniqueness; flags.u3 = 1
PASS -> UNRESOLVED: gdb.base/bitfields2.exp: break tester prior to break1
PASS -> UNRESOLVED: gdb.base/bitfields2.exp: break tester prior to break2
PASS -> UNRESOLVED: gdb.base/bitfields2.exp: break tester prior to break3
PASS -> UNRESOLVED: gdb.base/bitfields2.exp: break tester prior to break4
PASS -> UNRESOLVED: gdb.base/bitfields2.exp: break tester prior to break5
PASS -> UNRESOLVED: gdb.base/bitfields2.exp: continuing to break1 #0
PASS -> UNRESOLVED: gdb.base/bitfields2.exp: continuing to break1 #1
PASS -> UNRESOLVED: gdb.base/bitfields2.exp: continuing to break1 #2
PASS -> UNRESOLVED: gdb.base/bitfields2.exp: continuing to break1 #3
PASS -> UNRESOLVED: gdb.base/bitfields2.exp: continuing to break1 #4
PASS -> UNRESOLVED: gdb.base/bitfields2.exp: continuing to break1 #5
PASS -> UNRESOLVED: gdb.base/bitfields2.exp: continuing to break2 #0
PASS -> UNRESOLVED: gdb.base/bitfields2.exp: continuing to break2 #1
PASS -> UNRESOLVED: gdb.base/bitfields2.exp: continuing to break3 #0
PASS -> UNRESOLVED: gdb.base/bitfields2.exp: continuing to break4 #0
PASS -> UNRESOLVED: gdb.base/bitfields2.exp: continuing to break4 #1
PASS -> UNRESOLVED: gdb.base/bitfields2.exp: continuing to break4 #2
PASS -> UNRESOLVED: gdb.base/bitfields2.exp: continuing to break5 #0
PASS -> UNRESOLVED: gdb.base/bitfields2.exp: continuing to tester prior to break1
PASS -> UNRESOLVED: gdb.base/bitfields2.exp: continuing to tester prior to break2
PASS -> UNRESOLVED: gdb.base/bitfields2.exp: continuing to tester prior to break3
PASS -> UNRESOLVED: gdb.base/bitfields2.exp: continuing to tester prior to break4
PASS -> UNRESOLVED: gdb.base/bitfields2.exp: continuing to tester prior to break5
new UNRESOLVED: gdb.base/bitfields2.exp: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/bitfields2.exp: determining signed-ness of bitfields
PASS -> UNRESOLVED: gdb.base/bitfields2.exp: long long bitfield values after set
PASS -> UNRESOLVED: gdb.base/bitfields2.exp: maximum signed bitfield values
PASS -> UNRESOLVED: gdb.base/bitfields2.exp: maximum unsigned bitfield values
PASS -> UNRESOLVED: gdb.base/bitfields2.exp: set long long signed bitfield positive
PASS -> UNRESOLVED: gdb.base/bitfields2.exp: set long long unsigned bitfield
new UNRESOLVED: gdb.base/bitfields2.exp: setting breakpoint at break1
new UNRESOLVED: gdb.base/bitfields2.exp: setting breakpoint at break2
new UNRESOLVED: gdb.base/bitfields2.exp: setting breakpoint at break3
new UNRESOLVED: gdb.base/bitfields2.exp: setting breakpoint at break4
new UNRESOLVED: gdb.base/bitfields2.exp: setting breakpoint at break5
new UNRESOLVED: gdb.base/bp-cmds-execution-x-script.exp: run to end
PASS -> UNRESOLVED: gdb.base/break-always.exp: before re-enable check breakpoint state
PASS -> UNRESOLVED: gdb.base/break-always.exp: continue to breakpoint: bar
PASS -> UNRESOLVED: gdb.base/break-always.exp: disable 2.E
PASS -> UNRESOLVED: gdb.base/break-always.exp: disable 2.I
PASS -> UNRESOLVED: gdb.base/break-always.exp: disable 3.B
PASS -> UNRESOLVED: gdb.base/break-always.exp: disable 3.F
PASS -> UNRESOLVED: gdb.base/break-always.exp: enable 2.D
PASS -> UNRESOLVED: gdb.base/break-always.exp: enable 2.H
PASS -> UNRESOLVED: gdb.base/break-always.exp: enable 3.A
PASS -> UNRESOLVED: gdb.base/break-always.exp: enable 3.C
PASS -> UNRESOLVED: gdb.base/break-always.exp: enable 3.G
PASS -> UNRESOLVED: gdb.base/break-always.exp: initial check breakpoint state
PASS -> UNRESOLVED: gdb.base/break-always.exp: initial disable all breakpoints
PASS -> UNRESOLVED: gdb.base/break-always.exp: initial enable all breakpoints
PASS -> UNRESOLVED: gdb.base/break-always.exp: re-disable all breakpoints
PASS -> UNRESOLVED: gdb.base/break-always.exp: re-enable all breakpoints
PASS -> UNRESOLVED: gdb.base/break-always.exp: read back 0 from the breakpoint's address
PASS -> UNRESOLVED: gdb.base/break-always.exp: read back 1 from the breakpoint's address
PASS -> UNRESOLVED: gdb.base/break-always.exp: restore the original contents
PASS -> UNRESOLVED: gdb.base/break-always.exp: save shadow
PASS -> UNRESOLVED: gdb.base/break-always.exp: set 2nd breakpoint on bar
PASS -> UNRESOLVED: gdb.base/break-always.exp: set 3rd breakpoint on bar
PASS -> UNRESOLVED: gdb.base/break-always.exp: set 4th breakpoint on bar
PASS -> UNRESOLVED: gdb.base/break-always.exp: set breakpoint on bar
PASS -> UNRESOLVED: gdb.base/break-always.exp: set breakpoint on bar 2
PASS -> UNRESOLVED: gdb.base/break-always.exp: write 0 to breakpoint's address
PASS -> UNRESOLVED: gdb.base/break-always.exp: write 1 to breakpoint's address
PASS -> UNRESOLVED: gdb.base/break-fun-addr.exp: break-fun-addr1: break *main
PASS -> UNRESOLVED: gdb.base/break-fun-addr.exp: break-fun-addr1: p $pc == main
PASS -> UNRESOLVED: gdb.base/break-fun-addr.exp: break-fun-addr2: p $pc == main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=off: awatch: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=off: awatch: delete all breakpoints in delete_breakpoints
new FAIL: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=off: break: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=off: hbreak: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=off: hbreak: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=off: rwatch: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=off: rwatch: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=off: watch: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=off: watch: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=on: awatch: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=on: awatch: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=on: break: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=on: break: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=on: hbreak: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=on: hbreak: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=on: rwatch: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=on: rwatch: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=on: watch: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=on: watch: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=pie: always_inserted=off: awatch: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=pie: always_inserted=off: awatch: delete all breakpoints in delete_breakpoints
new FAIL: gdb.base/break-idempotent.exp: pie=pie: always_inserted=off: break: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=pie: always_inserted=off: hbreak: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=pie: always_inserted=off: hbreak: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=pie: always_inserted=off: rwatch: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=pie: always_inserted=off: rwatch: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=pie: always_inserted=off: watch: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=pie: always_inserted=off: watch: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=pie: always_inserted=on: awatch: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=pie: always_inserted=on: awatch: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=pie: always_inserted=on: break: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=pie: always_inserted=on: break: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=pie: always_inserted=on: hbreak: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=pie: always_inserted=on: hbreak: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=pie: always_inserted=on: rwatch: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=pie: always_inserted=on: rwatch: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=pie: always_inserted=on: watch: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=pie: always_inserted=on: watch: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/break-include.exp: break break-include.c:53
PASS -> UNRESOLVED: gdb.base/break-include.exp: break next
PASS -> UNRESOLVED: gdb.base/break-inline.exp: break
new FAIL: gdb.base/break-inline.exp: setting breakpoint at main
new UNRESOLVED: gdb.base/break-main-file-remove-fail.exp: cmdline: can't run to start
new UNRESOLVED: gdb.base/break-main-file-remove-fail.exp: cmdline: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/break-main-file-remove-fail.exp: file: can't run to start
new UNRESOLVED: gdb.base/break-main-file-remove-fail.exp: file: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/break-on-linker-gcd-function.exp: b 24
PASS -> UNRESOLVED: gdb.base/break-on-linker-gcd-function.exp: readnow: b 24
FAIL -> UNRESOLVED: gdb.base/break-probes.exp: ensure using probes
new UNRESOLVED: gdb.base/break-unload-file.exp: cmdline: always-inserted off: break: can't run to main
new UNRESOLVED: gdb.base/break-unload-file.exp: cmdline: always-inserted off: break: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/break-unload-file.exp: cmdline: always-inserted off: hbreak: can't run to main
new UNRESOLVED: gdb.base/break-unload-file.exp: cmdline: always-inserted off: hbreak: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/break-unload-file.exp: cmdline: always-inserted on: break: can't run to main
new UNRESOLVED: gdb.base/break-unload-file.exp: cmdline: always-inserted on: break: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/break-unload-file.exp: cmdline: always-inserted on: hbreak: can't run to main
new UNRESOLVED: gdb.base/break-unload-file.exp: cmdline: always-inserted on: hbreak: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/break-unload-file.exp: file: always-inserted off: break: can't run to main
new UNRESOLVED: gdb.base/break-unload-file.exp: file: always-inserted off: break: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/break-unload-file.exp: file: always-inserted off: hbreak: can't run to main
new UNRESOLVED: gdb.base/break-unload-file.exp: file: always-inserted off: hbreak: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/break-unload-file.exp: file: always-inserted on: break: can't run to main
new UNRESOLVED: gdb.base/break-unload-file.exp: file: always-inserted on: break: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/break-unload-file.exp: file: always-inserted on: hbreak: can't run to main
new UNRESOLVED: gdb.base/break-unload-file.exp: file: always-inserted on: hbreak: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/break.exp: Temporary breakpoint function in file
PASS -> UNRESOLVED: gdb.base/break.exp: Temporary breakpoint info
PASS -> UNRESOLVED: gdb.base/break.exp: Temporary breakpoint line number in file #2
PASS -> UNRESOLVED: gdb.base/break.exp: break lineno
PASS -> UNRESOLVED: gdb.base/break.exp: break on default location, 1st time
PASS -> UNRESOLVED: gdb.base/break.exp: break on default location, 2nd time
PASS -> UNRESOLVED: gdb.base/break.exp: break on default location, 3rd time
PASS -> UNRESOLVED: gdb.base/break.exp: break on default location, 4th time
PASS -> UNRESOLVED: gdb.base/break.exp: break on non-existent source line
new UNRESOLVED: gdb.base/break.exp: break tests suppressed
PASS -> UNRESOLVED: gdb.base/break.exp: breakpoint at start of multi line if conditional
PASS -> UNRESOLVED: gdb.base/break.exp: breakpoint at start of multi line while conditional
PASS -> UNRESOLVED: gdb.base/break.exp: breakpoint duplicate
PASS -> UNRESOLVED: gdb.base/break.exp: breakpoint function
PASS -> UNRESOLVED: gdb.base/break.exp: breakpoint function in file
PASS -> UNRESOLVED: gdb.base/break.exp: breakpoint info
PASS -> UNRESOLVED: gdb.base/break.exp: breakpoint line number
PASS -> UNRESOLVED: gdb.base/break.exp: breakpoint line number in file
PASS -> UNRESOLVED: gdb.base/break.exp: breakpoint offset +1
PASS -> UNRESOLVED: gdb.base/break.exp: breakpoint quoted function
PASS -> UNRESOLVED: gdb.base/break.exp: catch requires an event name
PASS -> UNRESOLVED: gdb.base/break.exp: check disable with convenience values
PASS -> UNRESOLVED: gdb.base/break.exp: check disable with history values
PASS -> UNRESOLVED: gdb.base/break.exp: continue to breakpoint at }
PASS -> UNRESOLVED: gdb.base/break.exp: delete $bpnum
new UNRESOLVED: gdb.base/break.exp: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/break.exp: disable non-existent breakpoint 10
PASS -> UNRESOLVED: gdb.base/break.exp: disable using history values
PASS -> UNRESOLVED: gdb.base/break.exp: disable with badly formed history value
PASS -> UNRESOLVED: gdb.base/break.exp: disable with convenience values
PASS -> UNRESOLVED: gdb.base/break.exp: disable with non-existent convenience var
PASS -> UNRESOLVED: gdb.base/break.exp: disable with non-existent history value
PASS -> UNRESOLVED: gdb.base/break.exp: disable with non-integer convenience var
new UNRESOLVED: gdb.base/break.exp: enable
PASS -> UNRESOLVED: gdb.base/break.exp: info break 2 4 6
PASS -> UNRESOLVED: gdb.base/break.exp: info break 3-5
PASS -> UNRESOLVED: gdb.base/break.exp: list marker1
new UNRESOLVED: gdb.base/break.exp: print 1
new UNRESOLVED: gdb.base/break.exp: print 2
new UNRESOLVED: gdb.base/break.exp: print 3
new UNRESOLVED: gdb.base/break.exp: print 4
new UNRESOLVED: gdb.base/break.exp: print 5
new UNRESOLVED: gdb.base/break.exp: print 6
PASS -> UNRESOLVED: gdb.base/break.exp: run until breakpoint set at a line number
PASS -> UNRESOLVED: gdb.base/break.exp: run until file:function
PASS -> UNRESOLVED: gdb.base/break.exp: run until file:linenum breakpoint
PASS -> UNRESOLVED: gdb.base/break.exp: run until quoted breakpoint
new UNRESOLVED: gdb.base/break.exp: set $bar = 6
PASS -> UNRESOLVED: gdb.base/break.exp: set $baz = 1.234
new UNRESOLVED: gdb.base/break.exp: set $foo = 3
PASS -> UNRESOLVED: gdb.base/break.exp: set breakpoint pending off
PASS -> UNRESOLVED: gdb.base/break.exp: set catch exec, never expected to trigger
PASS -> UNRESOLVED: gdb.base/break.exp: set catch fork, never expected to trigger
PASS -> UNRESOLVED: gdb.base/break.exp: set catch vfork, never expected to trigger
PASS -> UNRESOLVED: gdb.base/break.exp: set to-be-silent break bp_location1
PASS -> UNRESOLVED: gdb.base/break.exp: setting breakpoint at }
PASS -> UNRESOLVED: gdb.base/break.exp: step onto breakpoint
PASS -> UNRESOLVED: gdb.base/break.exp: temporary breakpoint function
PASS -> UNRESOLVED: gdb.base/break.exp: temporary breakpoint line number #1
PASS -> UNRESOLVED: gdb.base/break.exp: temporary breakpoint line number #2
PASS -> UNRESOLVED: gdb.base/break.exp: temporary breakpoint line number in file #1
PASS -> UNRESOLVED: gdb.base/break.exp: until bp_location1
PASS -> UNRESOLVED: gdb.base/break.exp: use `list' to establish default source file
new FAIL: gdb.base/bt-selected-frame.exp: bt full: can't run to main
new FAIL: gdb.base/bt-selected-frame.exp: bt: can't run to main
PASS -> UNRESOLVED: gdb.base/c-linkage-name.exp: break main
PASS -> UNRESOLVED: gdb.base/c-linkage-name.exp: print symada__cS after partial symtab expansion
PASS -> UNRESOLVED: gdb.base/call-sc.exp: ptype; call-sc-tc
new FAIL: gdb.base/call-signal-resume.exp: can't run to main
new FAIL: gdb.base/callexit.exp: can't run to main
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: Finish from nested call level 1
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: Finish from nested call level 2
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: Finish from nested call level 3
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: Finish from nested call level 4
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: back at main after return from call dummy breakpoint
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: backtrace after finish from nested call level 1
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: backtrace after finish from nested call level 2
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: backtrace after finish from nested call level 3
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: backtrace after finish from nested call level 4
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: backtrace at nested call level 1
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: backtrace at nested call level 2
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: backtrace at nested call level 3
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: backtrace at nested call level 4
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: bt after continuing from call dummy breakpoint
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: bt after finishing from call dummy breakpoint
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: call function causing a breakpoint and then do a return
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: call function causing a breakpoint then do a finish
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: call function with many double arguments.
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: call function with many float arguments.
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: call inferior func with struct - returns char
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: call inferior func with struct - returns char *
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: call inferior func with struct - returns double
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: call inferior func with struct - returns double _Complex
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: call inferior func with struct - returns float
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: call inferior func with struct - returns float _Complex
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: call inferior func with struct - returns int
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: call inferior func with struct - returns long
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: call inferior func with struct - returns long double _Complex
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: call inferior func with struct - returns short
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: continue from call dummy breakpoint
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: finish from call dummy breakpoint returns correct value
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: Finish from nested call level 1
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: Finish from nested call level 2
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: Finish from nested call level 3
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: Finish from nested call level 4
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: back at main after return from call dummy breakpoint
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: backtrace after finish from nested call level 1
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: backtrace after finish from nested call level 2
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: backtrace after finish from nested call level 3
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: backtrace after finish from nested call level 4
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: backtrace at nested call level 1
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: backtrace at nested call level 2
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: backtrace at nested call level 3
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: backtrace at nested call level 4
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: bt after continuing from call dummy breakpoint
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: bt after finishing from call dummy breakpoint
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: call function causing a breakpoint and then do a return
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: call function causing a breakpoint then do a finish
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: call function with many double arguments.
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: call function with many float arguments.
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: call inferior func with struct - returns char
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: call inferior func with struct - returns char *
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: call inferior func with struct - returns double
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: call inferior func with struct - returns double _Complex
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: call inferior func with struct - returns float
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: call inferior func with struct - returns float _Complex
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: call inferior func with struct - returns int
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: call inferior func with struct - returns long
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: call inferior func with struct - returns long double _Complex
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: call inferior func with struct - returns short
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: continue from call dummy breakpoint
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: finish from call dummy breakpoint returns correct value
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: p
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: p add
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: p cmp10
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: p doubleit
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: p function_struct.func
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: p function_struct_ptr->func
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: p sum10
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: p sum_args
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: p t_call_add
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: p t_char_array_values
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: p t_char_values
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: p t_double_complex_many_args
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: p t_double_complex_values
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: p t_double_int
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: p t_double_values
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: p t_enum_value1
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: p t_enum_value2
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: p t_float_complex_many_args
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: p t_float_complex_values
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: p t_float_values
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: p t_float_values2
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: p t_func_values
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: p t_int_double
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: p t_int_values
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: p t_long_double_complex_many_args
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: p t_long_double_complex_values
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: p t_long_values
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: p t_short_values
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: p t_small_values
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: p t_string_values
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: print *
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: print callfunc
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: register contents after gdb function calls
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: register contents after nested call dummies
new UNRESOLVED: gdb.base/callfuncs.exp: noproto: rerun number 10: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: rerun number 10: next to t_double_values
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: rerun number 10: next to t_structs_c
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: rerun number 10: set language c
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: rerun number 6: next to t_double_values
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: rerun number 6: next to t_structs_c
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: rerun number 6: set language c
new UNRESOLVED: gdb.base/callfuncs.exp: noproto: rerun number 7: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: rerun number 7: next to t_double_values
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: rerun number 7: next to t_structs_c
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: rerun number 7: set language c
new UNRESOLVED: gdb.base/callfuncs.exp: noproto: rerun number 8: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: rerun number 8: next to t_double_values
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: rerun number 8: next to t_structs_c
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: rerun number 8: set language c
new UNRESOLVED: gdb.base/callfuncs.exp: noproto: rerun number 9: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: rerun number 9: next to t_double_values
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: rerun number 9: next to t_structs_c
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: rerun number 9: set language c
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: retrieve original register contents 1
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: retrieve original register contents 2
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: retrieve original register contents 3
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: retrieve original register contents 4
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: retrieve original register contents 5
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: set $old_sp = $sp
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: set $sp = $old_sp
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: set $sp = -1
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: set $sp = 0
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: set unwindonsignal off
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: set unwindonsignal on
new UNRESOLVED: gdb.base/callfuncs.exp: noproto: setting breakpoint at add
new UNRESOLVED: gdb.base/callfuncs.exp: noproto: setting breakpoint at sum10
new UNRESOLVED: gdb.base/callfuncs.exp: noproto: setting breakpoint at t_small_values
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: sp == -1: call doubleit
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: sp == 0: call doubleit
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: stop at breakpoint in call dummy function
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: stop at nested call level 1
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: stop at nested call level 2
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: stop at nested call level 3
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: noproto: stop at nested call level 4
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: p
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: p add
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: p cmp10
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: p doubleit
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: p function_struct.func
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: p function_struct_ptr->func
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: p sum10
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: p sum_args
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: p t_call_add
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: p t_char_array_values
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: p t_char_values
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: p t_double_complex_many_args
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: p t_double_complex_values
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: p t_double_int
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: p t_double_values
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: p t_enum_value1
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: p t_enum_value2
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: p t_float_complex_many_args
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: p t_float_complex_values
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: p t_float_values
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: p t_float_values2
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: p t_func_values
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: p t_int_double
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: p t_int_values
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: p t_long_double_complex_many_args
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: p t_long_double_complex_values
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: p t_long_values
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: p t_short_values
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: p t_small_values
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: p t_string_values
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: print *
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: print callfunc
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: register contents after gdb function calls
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: register contents after nested call dummies
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: rerun number 1: next to t_double_values
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: rerun number 1: next to t_structs_c
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: rerun number 1: set language c
new UNRESOLVED: gdb.base/callfuncs.exp: rerun number 2: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: rerun number 2: next to t_double_values
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: rerun number 2: next to t_structs_c
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: rerun number 2: set language c
new UNRESOLVED: gdb.base/callfuncs.exp: rerun number 3: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: rerun number 3: next to t_double_values
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: rerun number 3: next to t_structs_c
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: rerun number 3: set language c
new UNRESOLVED: gdb.base/callfuncs.exp: rerun number 4: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: rerun number 4: next to t_double_values
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: rerun number 4: next to t_structs_c
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: rerun number 4: set language c
new UNRESOLVED: gdb.base/callfuncs.exp: rerun number 5: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: rerun number 5: next to t_double_values
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: rerun number 5: next to t_structs_c
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: rerun number 5: set language c
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: retrieve original register contents 1
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: retrieve original register contents 2
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: retrieve original register contents 3
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: retrieve original register contents 4
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: retrieve original register contents 5
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: set $old_sp = $sp
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: set $sp = $old_sp
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: set $sp = -1
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: set $sp = 0
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: set unwindonsignal off
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: set unwindonsignal on
new UNRESOLVED: gdb.base/callfuncs.exp: setting breakpoint at add
new UNRESOLVED: gdb.base/callfuncs.exp: setting breakpoint at sum10
new UNRESOLVED: gdb.base/callfuncs.exp: setting breakpoint at t_small_values
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: sp == -1: call doubleit
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: sp == 0: call doubleit
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: stop at breakpoint in call dummy function
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: stop at nested call level 1
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: stop at nested call level 2
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: stop at nested call level 3
PASS -> UNRESOLVED: gdb.base/callfuncs.exp: stop at nested call level 4
new FAIL: gdb.base/catch-gdb-caused-signals.exp: can't run to main to make the tests
new FAIL: gdb.base/catch-load.exp: non-matching load with stop-on-solib-events: can't run to main
new FAIL: gdb.base/catch-load.exp: non-matching load: can't run to main
new FAIL: gdb.base/catch-load.exp: non-matching unload with stop-on-solib-events: can't run to main
new FAIL: gdb.base/catch-load.exp: non-matching unload: can't run to main
new FAIL: gdb.base/catch-load.exp: plain load with stop-on-solib-events: can't run to main
new FAIL: gdb.base/catch-load.exp: plain load: can't run to main
new FAIL: gdb.base/catch-load.exp: plain unload with stop-on-solib-events: can't run to main
new FAIL: gdb.base/catch-load.exp: plain unload: can't run to main
new FAIL: gdb.base/catch-load.exp: rx load with stop-on-solib-events: can't run to main
new FAIL: gdb.base/catch-load.exp: rx load: can't run to main
new FAIL: gdb.base/catch-load.exp: rx unload with stop-on-solib-events: can't run to main
new FAIL: gdb.base/catch-load.exp: rx unload: can't run to main
new FAIL: gdb.base/catch-signal-siginfo-cond.exp: can't run to main
PASS -> UNRESOLVED: gdb.base/catch-signal.exp: catch signal SIGHUP all
PASS -> UNRESOLVED: gdb.base/catch-signal.exp: catch signal SIGZARDOZ
PASS -> UNRESOLVED: gdb.base/catch-signal.exp: catch signal all
PASS -> UNRESOLVED: gdb.base/catch-signal.exp: catch signal all SIGHUP
new UNRESOLVED: gdb.base/catch-signal.exp: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/catch-signal.exp: info break for ''
PASS -> UNRESOLVED: gdb.base/catch-signal.exp: save breakpoints for ''
PASS -> UNRESOLVED: gdb.base/catch-signal.exp: set catchpoint '' for printing
new UNRESOLVED: gdb.base/catch-signal.exp: setting breakpoint at main
new FAIL: gdb.base/catch-syscall.exp: can't run to main
PASS -> UNRESOLVED: gdb.base/charset.exp: EVAL_SKIP cleanup handling regression test
PASS -> UNRESOLVED: gdb.base/charset.exp: assign string to int array
PASS -> UNRESOLVED: gdb.base/charset.exp: assign string to long array
PASS -> UNRESOLVED: gdb.base/charset.exp: assign string to short array
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of "\a" in ASCII
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of "\a" in EBCDIC-US
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of "\a" in IBM1047
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of "\a" in ISO-8859-1
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of "\b" in ASCII
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of "\b" in EBCDIC-US
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of "\b" in IBM1047
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of "\b" in ISO-8859-1
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of "\f" in ASCII
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of "\f" in EBCDIC-US
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of "\f" in IBM1047
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of "\f" in ISO-8859-1
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of "\n" in ASCII
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of "\n" in EBCDIC-US
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of "\n" in IBM1047
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of "\n" in ISO-8859-1
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of "\r" in ASCII
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of "\r" in EBCDIC-US
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of "\r" in IBM1047
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of "\r" in ISO-8859-1
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of "\t" in ASCII
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of "\t" in EBCDIC-US
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of "\t" in IBM1047
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of "\t" in ISO-8859-1
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of "\v" in ASCII
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of "\v" in EBCDIC-US
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of "\v" in IBM1047
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of "\v" in ISO-8859-1
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of '\a' in ASCII
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of '\a' in EBCDIC-US
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of '\a' in IBM1047
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of '\a' in ISO-8859-1
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of '\b' in ASCII
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of '\b' in EBCDIC-US
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of '\b' in IBM1047
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of '\b' in ISO-8859-1
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of '\f' in ASCII
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of '\f' in EBCDIC-US
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of '\f' in IBM1047
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of '\f' in ISO-8859-1
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of '\n' in ASCII
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of '\n' in EBCDIC-US
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of '\n' in IBM1047
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of '\n' in ISO-8859-1
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of '\r' in ASCII
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of '\r' in EBCDIC-US
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of '\r' in IBM1047
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of '\r' in ISO-8859-1
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of '\t' in ASCII
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of '\t' in EBCDIC-US
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of '\t' in IBM1047
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of '\t' in ISO-8859-1
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of '\v' in ASCII
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of '\v' in EBCDIC-US
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of '\v' in IBM1047
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of '\v' in ISO-8859-1
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of escape that doesn't exist in ASCII
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of escape that doesn't exist in EBCDIC-US
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of escape that doesn't exist in IBM1047
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of escape that doesn't exist in ISO-8859-1
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of parsed character literal in ASCII
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of parsed character literal in EBCDIC-US
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of parsed character literal in IBM1047
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of parsed character literal in ISO-8859-1
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of parsed string literal in ASCII
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of parsed string literal in EBCDIC-US
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of parsed string literal in IBM1047
PASS -> UNRESOLVED: gdb.base/charset.exp: check value of parsed string literal in ISO-8859-1
PASS -> UNRESOLVED: gdb.base/charset.exp: get integer valueof "sizeof
PASS -> UNRESOLVED: gdb.base/charset.exp: non-representable target character
PASS -> UNRESOLVED: gdb.base/charset.exp: parse character literal in ASCII
PASS -> UNRESOLVED: gdb.base/charset.exp: parse character literal in EBCDIC-US
PASS -> UNRESOLVED: gdb.base/charset.exp: parse character literal in IBM1047
PASS -> UNRESOLVED: gdb.base/charset.exp: parse character literal in ISO-8859-1
PASS -> UNRESOLVED: gdb.base/charset.exp: parse string literal in ASCII
PASS -> UNRESOLVED: gdb.base/charset.exp: parse string literal in EBCDIC-US
PASS -> UNRESOLVED: gdb.base/charset.exp: parse string literal in IBM1047
PASS -> UNRESOLVED: gdb.base/charset.exp: parse string literal in ISO-8859-1
PASS -> UNRESOLVED: gdb.base/charset.exp: print "\1011"
PASS -> UNRESOLVED: gdb.base/charset.exp: print '\9'
PASS -> UNRESOLVED: gdb.base/charset.exp: print '\u'
PASS -> UNRESOLVED: gdb.base/charset.exp: print '\x'
PASS -> UNRESOLVED: gdb.base/charset.exp: print escape that doesn't exist in ASCII
PASS -> UNRESOLVED: gdb.base/charset.exp: print escape that doesn't exist in EBCDIC-US
PASS -> UNRESOLVED: gdb.base/charset.exp: print escape that doesn't exist in IBM1047
PASS -> UNRESOLVED: gdb.base/charset.exp: print escape that doesn't exist in ISO-8859-1
PASS -> UNRESOLVED: gdb.base/charset.exp: print string in ASCII
PASS -> UNRESOLVED: gdb.base/charset.exp: print string in EBCDIC-US
PASS -> UNRESOLVED: gdb.base/charset.exp: print string in IBM1047
PASS -> UNRESOLVED: gdb.base/charset.exp: print string in ISO-8859-1
PASS -> UNRESOLVED: gdb.base/charset.exp: print the null character in ASCII
PASS -> UNRESOLVED: gdb.base/charset.exp: print the null character in EBCDIC-US
PASS -> UNRESOLVED: gdb.base/charset.exp: print the null character in IBM1047
PASS -> UNRESOLVED: gdb.base/charset.exp: print the null character in ISO-8859-1
PASS -> UNRESOLVED: gdb.base/charset.exp: set breakpoint after all strings have been initialized
PASS -> UNRESOLVED: gdb.base/charset.exp: set host-charset ASCII
PASS -> UNRESOLVED: gdb.base/charset.exp: set target-charset ASCII
PASS -> UNRESOLVED: gdb.base/charset.exp: set target-charset EBCDIC-US
PASS -> UNRESOLVED: gdb.base/charset.exp: set target-charset IBM1047
PASS -> UNRESOLVED: gdb.base/charset.exp: set target-charset ISO-8859-1
PASS -> UNRESOLVED: gdb.base/charset.exp: set target-charset UTF-8
PASS -> UNRESOLVED: gdb.base/charset.exp: set_prefix=U: assign String32 with prefix U
PASS -> UNRESOLVED: gdb.base/charset.exp: set_prefix=U: display String String32 with x/ws
PASS -> UNRESOLVED: gdb.base/charset.exp: try printing '\a' in ASCII
PASS -> UNRESOLVED: gdb.base/charset.exp: try printing '\a' in EBCDIC-US
PASS -> UNRESOLVED: gdb.base/charset.exp: try printing '\a' in IBM1047
PASS -> UNRESOLVED: gdb.base/charset.exp: try printing '\a' in ISO-8859-1
PASS -> UNRESOLVED: gdb.base/charset.exp: try printing '\b' in ASCII
PASS -> UNRESOLVED: gdb.base/charset.exp: try printing '\b' in EBCDIC-US
PASS -> UNRESOLVED: gdb.base/charset.exp: try printing '\b' in IBM1047
PASS -> UNRESOLVED: gdb.base/charset.exp: try printing '\b' in ISO-8859-1
PASS -> UNRESOLVED: gdb.base/charset.exp: try printing '\f' in ASCII
PASS -> UNRESOLVED: gdb.base/charset.exp: try printing '\f' in EBCDIC-US
PASS -> UNRESOLVED: gdb.base/charset.exp: try printing '\f' in IBM1047
PASS -> UNRESOLVED: gdb.base/charset.exp: try printing '\f' in ISO-8859-1
PASS -> UNRESOLVED: gdb.base/charset.exp: try printing '\n' in ASCII
PASS -> UNRESOLVED: gdb.base/charset.exp: try printing '\n' in EBCDIC-US
PASS -> UNRESOLVED: gdb.base/charset.exp: try printing '\n' in IBM1047
PASS -> UNRESOLVED: gdb.base/charset.exp: try printing '\n' in ISO-8859-1
PASS -> UNRESOLVED: gdb.base/charset.exp: try printing '\r' in ASCII
PASS -> UNRESOLVED: gdb.base/charset.exp: try printing '\r' in EBCDIC-US
PASS -> UNRESOLVED: gdb.base/charset.exp: try printing '\r' in IBM1047
PASS -> UNRESOLVED: gdb.base/charset.exp: try printing '\r' in ISO-8859-1
PASS -> UNRESOLVED: gdb.base/charset.exp: try printing '\t' in ASCII
PASS -> UNRESOLVED: gdb.base/charset.exp: try printing '\t' in EBCDIC-US
PASS -> UNRESOLVED: gdb.base/charset.exp: try printing '\t' in IBM1047
PASS -> UNRESOLVED: gdb.base/charset.exp: try printing '\t' in ISO-8859-1
PASS -> UNRESOLVED: gdb.base/charset.exp: try printing '\v' in ASCII
PASS -> UNRESOLVED: gdb.base/charset.exp: try printing '\v' in EBCDIC-US
PASS -> UNRESOLVED: gdb.base/charset.exp: try printing '\v' in IBM1047
PASS -> UNRESOLVED: gdb.base/charset.exp: try printing '\v' in ISO-8859-1
PASS -> UNRESOLVED: gdb.base/chng-syms.exp: continue until exit at breakpoint first time through
PASS -> UNRESOLVED: gdb.base/chng-syms.exp: setting conditional breakpoint on function
PASS -> UNRESOLVED: gdb.base/code_elim.exp: order1: get address of main
PASS -> UNRESOLVED: gdb.base/code_elim.exp: order1: get address of my_global_func
PASS -> UNRESOLVED: gdb.base/code_elim.exp: order1: get address of my_global_symbol
PASS -> UNRESOLVED: gdb.base/code_elim.exp: order1: get address of my_static_symbol
PASS -> UNRESOLVED: gdb.base/code_elim.exp: order2: get address of main
PASS -> UNRESOLVED: gdb.base/code_elim.exp: order2: get address of my_global_func
PASS -> UNRESOLVED: gdb.base/code_elim.exp: order2: get address of my_global_symbol
PASS -> UNRESOLVED: gdb.base/code_elim.exp: order2: get address of my_static_symbol
PASS -> UNRESOLVED: gdb.base/code_elim.exp: single psymtabs: get address of main
PASS -> UNRESOLVED: gdb.base/code_elim.exp: single symtabs: get address of main
PASS -> UNRESOLVED: gdb.base/commands.exp: backslash_in_multi_line_command_test: commands
PASS -> UNRESOLVED: gdb.base/commands.exp: backslash_in_multi_line_command_test: end
PASS -> UNRESOLVED: gdb.base/commands.exp: backslash_in_multi_line_command_test: run command
new UNRESOLVED: gdb.base/commands.exp: backslash_in_multi_line_command_test: setting breakpoint at main
PASS -> UNRESOLVED: gdb.base/commands.exp: bp_deleted_in_command_test: add clear command
PASS -> UNRESOLVED: gdb.base/commands.exp: bp_deleted_in_command_test: add cont command
PASS -> UNRESOLVED: gdb.base/commands.exp: bp_deleted_in_command_test: add printf command
PASS -> UNRESOLVED: gdb.base/commands.exp: bp_deleted_in_command_test: add silent command
PASS -> UNRESOLVED: gdb.base/commands.exp: bp_deleted_in_command_test: begin commands
PASS -> UNRESOLVED: gdb.base/commands.exp: bp_deleted_in_command_test: break factorial
new UNRESOLVED: gdb.base/commands.exp: bp_deleted_in_command_test: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/commands.exp: bp_deleted_in_command_test: end commands
new UNRESOLVED: gdb.base/commands.exp: breakpoint_clear_command_test: cannot run to factorial
new UNRESOLVED: gdb.base/commands.exp: breakpoint_clear_command_test: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/commands.exp: breakpoint_command_test: cannot run to factorial
new UNRESOLVED: gdb.base/commands.exp: breakpoint_command_test: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/commands.exp: define some_command_define
PASS -> UNRESOLVED: gdb.base/commands.exp: define some_command_if
PASS -> UNRESOLVED: gdb.base/commands.exp: define some_command_while
PASS -> UNRESOLVED: gdb.base/commands.exp: deprecated_command_test: both alias and command are deprecated
PASS -> UNRESOLVED: gdb.base/commands.exp: deprecated_command_test: deprecate long command /1/
PASS -> UNRESOLVED: gdb.base/commands.exp: deprecated_command_test: deprecate long command /2/
PASS -> UNRESOLVED: gdb.base/commands.exp: deprecated_command_test: deprecate with no arguments
PASS -> UNRESOLVED: gdb.base/commands.exp: deprecated_command_test: deprecated warning goes away /1/
PASS -> UNRESOLVED: gdb.base/commands.exp: deprecated_command_test: deprecated warning goes away /2/
PASS -> UNRESOLVED: gdb.base/commands.exp: deprecated_command_test: long command deprecated /1/
PASS -> UNRESOLVED: gdb.base/commands.exp: deprecated_command_test: long command deprecated with no alternative /2/
PASS -> UNRESOLVED: gdb.base/commands.exp: deprecated_command_test: maintenance deprecate p "new_p" /1/
PASS -> UNRESOLVED: gdb.base/commands.exp: deprecated_command_test: maintenance deprecate p "new_p" /2/
PASS -> UNRESOLVED: gdb.base/commands.exp: deprecated_command_test: maintenance deprecate print "new_print"
PASS -> UNRESOLVED: gdb.base/commands.exp: deprecated_command_test: p deprecated warning, with replacement
PASS -> UNRESOLVED: gdb.base/commands.exp: deprecated_command_test: tried to deprecate non-existing command
new UNRESOLVED: gdb.base/commands.exp: error_clears_commands_left: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/commands.exp: error_clears_commands_left: hook-stop 1
PASS -> UNRESOLVED: gdb.base/commands.exp: error_clears_commands_left: hook-stop 1a
PASS -> UNRESOLVED: gdb.base/commands.exp: error_clears_commands_left: hook-stop 1b
PASS -> UNRESOLVED: gdb.base/commands.exp: error_clears_commands_left: main commands 1
PASS -> UNRESOLVED: gdb.base/commands.exp: error_clears_commands_left: main commands 1a
PASS -> UNRESOLVED: gdb.base/commands.exp: error_clears_commands_left: main commands 1b
PASS -> UNRESOLVED: gdb.base/commands.exp: error_clears_commands_left: main commands 1c
PASS -> UNRESOLVED: gdb.base/commands.exp: error_clears_commands_left: main commands 2
PASS -> UNRESOLVED: gdb.base/commands.exp: error_clears_commands_left: main commands 2a
PASS -> UNRESOLVED: gdb.base/commands.exp: error_clears_commands_left: main commands 2b
PASS -> UNRESOLVED: gdb.base/commands.exp: error_clears_commands_left: main commands 2c
PASS -> UNRESOLVED: gdb.base/commands.exp: error_clears_commands_left: no cmd2
new UNRESOLVED: gdb.base/commands.exp: error_clears_commands_left: setting breakpoint at main
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: break factorial - if_commands_test 1
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: break factorial - if_commands_test 2
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: break main - if_commands_test 1
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: break main - if_commands_test 2
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: commands - if_commands_test 1
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: commands - if_commands_test 2
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: continue - if_commands_test 1
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: continue - if_commands_test 2
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: else - if_commands_test 1
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: else - if_commands_test 2
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: first end - if_commands_test 1
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: first end - if_commands_test 2
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: if $tem == 1 - if_commands_test 2
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: if $tem == 2 - if_commands_test 1
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: second end - if_commands_test 1
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: second end - if_commands_test 2
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: set $tem
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: set $tem = 3 - if_commands_test 1
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: set $tem = 3 - if_commands_test 2
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: silent - if_commands_test 1
PASS -> UNRESOLVED: gdb.base/commands.exp: if_commands_test: silent - if_commands_test 2
new UNRESOLVED: gdb.base/commands.exp: if_while_breakpoint_command_test: cannot run to factorial
new UNRESOLVED: gdb.base/commands.exp: if_while_breakpoint_command_test: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/commands.exp: infrun_breakpoint_command_test: cannot run to factorial
new UNRESOLVED: gdb.base/commands.exp: infrun_breakpoint_command_test: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/commands.exp: loop_break_test: initialize $a
PASS -> UNRESOLVED: gdb.base/commands.exp: loop_break_test: initialize $total
PASS -> UNRESOLVED: gdb.base/commands.exp: loop_break_test: run while loop
PASS -> UNRESOLVED: gdb.base/commands.exp: loop_break_test: validate $a
PASS -> UNRESOLVED: gdb.base/commands.exp: loop_break_test: validate $b
PASS -> UNRESOLVED: gdb.base/commands.exp: loop_break_test: validate $total
PASS -> UNRESOLVED: gdb.base/commands.exp: loop_continue_test: initialize $a
PASS -> UNRESOLVED: gdb.base/commands.exp: loop_continue_test: initialize $total
PASS -> UNRESOLVED: gdb.base/commands.exp: loop_continue_test: run while loop
PASS -> UNRESOLVED: gdb.base/commands.exp: loop_continue_test: validate $a
PASS -> UNRESOLVED: gdb.base/commands.exp: loop_continue_test: validate $b
PASS -> UNRESOLVED: gdb.base/commands.exp: loop_continue_test: validate $total
new UNRESOLVED: gdb.base/commands.exp: progvar_complex_if_while_test: cannot run to factorial
new UNRESOLVED: gdb.base/commands.exp: progvar_complex_if_while_test: delete all breakpoints in delete_breakpoints
new FAIL: gdb.base/commands.exp: progvar_simple_if_test: cannot run to factorial
new UNRESOLVED: gdb.base/commands.exp: progvar_simple_while_test: cannot run to factorial
new UNRESOLVED: gdb.base/commands.exp: progvar_simple_while_test: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/commands.exp: recursive_source_test: source file
PASS -> UNRESOLVED: gdb.base/commands.exp: redefine_backtrace_test: define backtrace
PASS -> UNRESOLVED: gdb.base/commands.exp: redefine_backtrace_test: enter commands
PASS -> UNRESOLVED: gdb.base/commands.exp: redefine_backtrace_test: execute backtrace command
PASS -> UNRESOLVED: gdb.base/commands.exp: redefine_backtrace_test: execute bt command
PASS -> UNRESOLVED: gdb.base/commands.exp: redefine_backtrace_test: expect response to define backtrace
PASS -> UNRESOLVED: gdb.base/commands.exp: redefine_hook_test: define hook-one
PASS -> UNRESOLVED: gdb.base/commands.exp: redefine_hook_test: define one
PASS -> UNRESOLVED: gdb.base/commands.exp: redefine_hook_test: enter commands for one redefinition
PASS -> UNRESOLVED: gdb.base/commands.exp: redefine_hook_test: execute one command
PASS -> UNRESOLVED: gdb.base/commands.exp: redefine_hook_test: redefine one
PASS -> UNRESOLVED: gdb.base/commands.exp: source_file_with_indented_comment: source file
PASS -> UNRESOLVED: gdb.base/commands.exp: stray_arg0_test: #1
PASS -> UNRESOLVED: gdb.base/commands.exp: stray_arg0_test: #2
PASS -> UNRESOLVED: gdb.base/commands.exp: stray_arg0_test: #3
PASS -> UNRESOLVED: gdb.base/commands.exp: stray_arg0_test: #4
PASS -> UNRESOLVED: gdb.base/commands.exp: temporary_breakpoint_commands: add cont tbreak command
PASS -> UNRESOLVED: gdb.base/commands.exp: temporary_breakpoint_commands: add printf tbreak command
PASS -> UNRESOLVED: gdb.base/commands.exp: temporary_breakpoint_commands: add silent tbreak command
new UNRESOLVED: gdb.base/commands.exp: temporary_breakpoint_commands: begin commands in bp_deleted_in_command_test
PASS -> UNRESOLVED: gdb.base/commands.exp: temporary_breakpoint_commands: breakpoint
new UNRESOLVED: gdb.base/commands.exp: temporary_breakpoint_commands: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/commands.exp: temporary_breakpoint_commands: end tbreak commands
new UNRESOLVED: gdb.base/commands.exp: test_command_prompt_position: cannot run to factorial
new UNRESOLVED: gdb.base/commands.exp: test_command_prompt_position: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/commands.exp: type define without args
PASS -> UNRESOLVED: gdb.base/commands.exp: type if without args
PASS -> UNRESOLVED: gdb.base/commands.exp: type while without args
new UNRESOLVED: gdb.base/commands.exp: user_defined_command_args_eval: define command_args_eval
PASS -> UNRESOLVED: gdb.base/commands.exp: user_defined_command_args_eval: enter commands
PASS -> UNRESOLVED: gdb.base/commands.exp: user_defined_command_args_eval: execute command
new UNRESOLVED: gdb.base/commands.exp: user_defined_command_args_stack_test: define args_stack_command
PASS -> UNRESOLVED: gdb.base/commands.exp: user_defined_command_args_stack_test: enter commands
PASS -> UNRESOLVED: gdb.base/commands.exp: user_defined_command_args_stack_test: execute command
PASS -> UNRESOLVED: gdb.base/commands.exp: user_defined_command_case_sensitivity: define HomeR-SimpsoN
PASS -> UNRESOLVED: gdb.base/commands.exp: user_defined_command_case_sensitivity: define Homer-Simpson
PASS -> UNRESOLVED: gdb.base/commands.exp: user_defined_command_case_sensitivity: enter commands 1
PASS -> UNRESOLVED: gdb.base/commands.exp: user_defined_command_case_sensitivity: enter commands 2
PASS -> UNRESOLVED: gdb.base/commands.exp: user_defined_command_case_sensitivity: execute command HomeR-SimpsoN
PASS -> UNRESOLVED: gdb.base/commands.exp: user_defined_command_case_sensitivity: execute command Homer-Simpson
PASS -> UNRESOLVED: gdb.base/commands.exp: user_defined_command_case_sensitivity: try to call in lower case
PASS -> UNRESOLVED: gdb.base/commands.exp: user_defined_command_case_sensitivity: try to call in upper case
PASS -> UNRESOLVED: gdb.base/commands.exp: user_defined_command_manyargs_test: define command
PASS -> UNRESOLVED: gdb.base/commands.exp: user_defined_command_manyargs_test: enter commands
PASS -> UNRESOLVED: gdb.base/commands.exp: user_defined_command_manyargs_test: execute command
PASS -> UNRESOLVED: gdb.base/commands.exp: user_defined_command_test: define mycommand
PASS -> UNRESOLVED: gdb.base/commands.exp: user_defined_command_test: define myemptycommand
PASS -> UNRESOLVED: gdb.base/commands.exp: user_defined_command_test: display empty command in command list
PASS -> UNRESOLVED: gdb.base/commands.exp: user_defined_command_test: display user command
PASS -> UNRESOLVED: gdb.base/commands.exp: user_defined_command_test: display user-defined empty command
PASS -> UNRESOLVED: gdb.base/commands.exp: user_defined_command_test: end definition of user-defined command with empty body
PASS -> UNRESOLVED: gdb.base/commands.exp: user_defined_command_test: enter commands
PASS -> UNRESOLVED: gdb.base/commands.exp: user_defined_command_test: execute user-defined command
PASS -> UNRESOLVED: gdb.base/commands.exp: user_defined_command_test: execute user-defined empty command
PASS -> UNRESOLVED: gdb.base/commands.exp: user_defined_command_test: set foo
new UNRESOLVED: gdb.base/commands.exp: watchpoint_command_test: cannot run to factorial
new UNRESOLVED: gdb.base/commands.exp: watchpoint_command_test: delete all breakpoints in delete_breakpoints
FAIL -> UNRESOLVED: gdb.base/compare-sections.exp: after reload: compare-sections
FAIL -> UNRESOLVED: gdb.base/compare-sections.exp: after reload: compare-sections -r
new UNRESOLVED: gdb.base/compare-sections.exp: can't run to main
FAIL -> UNRESOLVED: gdb.base/compare-sections.exp: compare-sections .text
new UNRESOLVED: gdb.base/compare-sections.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/completion.exp: capture_command_output for complete info registers
new UNRESOLVED: gdb.base/completion.exp: capture_command_output for mt print reggroups
new UNRESOLVED: gdb.base/completion.exp: capture_command_output for mt print registers
new UNRESOLVED: gdb.base/completion.exp: capture_command_output for mt print user-registers
PASS -> UNRESOLVED: gdb.base/completion.exp: cd to ${srcdir}
PASS -> UNRESOLVED: gdb.base/completion.exp: complete break break
PASS -> UNRESOLVED: gdb.base/completion.exp: complete break break.c:ma
PASS -> UNRESOLVED: gdb.base/completion.exp: complete break need
PASS -> UNRESOLVED: gdb.base/completion.exp: complete ptype enum some_
PASS -> UNRESOLVED: gdb.base/completion.exp: complete ptype struct some_
PASS -> UNRESOLVED: gdb.base/completion.exp: complete ptype union some_
PASS -> UNRESOLVED: gdb.base/completion.exp: complete set cp-abi aut
PASS -> UNRESOLVED: gdb.base/completion.exp: complete set gnutarget aut
PASS -> UNRESOLVED: gdb.base/completion.exp: complete set height
PASS -> UNRESOLVED: gdb.base/completion.exp: complete set height u
PASS -> UNRESOLVED: gdb.base/completion.exp: complete set listsize
PASS -> UNRESOLVED: gdb.base/completion.exp: complete set listsize unl
PASS -> UNRESOLVED: gdb.base/completion.exp: complete set trace-buffer-size
PASS -> UNRESOLVED: gdb.base/completion.exp: complete set trace-buffer-size unl
PASS -> UNRESOLVED: gdb.base/completion.exp: complete target core
PASS -> UNRESOLVED: gdb.base/completion.exp: complete target exec
PASS -> UNRESOLVED: gdb.base/completion.exp: complete target tfile
PASS -> UNRESOLVED: gdb.base/completion.exp: complete-command 'file ./gdb.base/compl'
PASS -> UNRESOLVED: gdb.base/completion.exp: completion of field in anonymous union
PASS -> UNRESOLVED: gdb.base/completion.exp: directory completion
PASS -> UNRESOLVED: gdb.base/completion.exp: directory completion 2
PASS -> UNRESOLVED: gdb.base/completion.exp: field completion with invalid field
PASS -> UNRESOLVED: gdb.base/completion.exp: glob remaining of directory test
PASS -> UNRESOLVED: gdb.base/completion.exp: ptype completion of field in anonymous union
PASS -> UNRESOLVED: gdb.base/completion.exp: set breakpoint pending off
PASS -> UNRESOLVED: gdb.base/completion.exp: set max-completions 10
PASS -> UNRESOLVED: gdb.base/completion.exp: set max-completions 3
PASS -> UNRESOLVED: gdb.base/completion.exp: set max-completions 5
PASS -> UNRESOLVED: gdb.base/completion.exp: set max-completions unlimited
new UNRESOLVED: gdb.base/completion.exp: show editing
new UNRESOLVED: gdb.base/completion.exp: target ctf
PASS -> UNRESOLVED: gdb.base/completion.exp: test deprecated completion
PASS -> UNRESOLVED: gdb.base/completion.exp: test non-deprecated completion
PASS -> UNRESOLVED: gdb.base/completion.exp: whatis completion of field in anonymous union
new FAIL: gdb.base/complex-parts.exp: can't run to main
new UNRESOLVED: gdb.base/complex.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.base/cond-eval-mode.exp: can't run to main
new FAIL: gdb.base/condbreak-call-false.exp: can't run to main
new UNRESOLVED: gdb.base/condbreak.exp:
PASS -> UNRESOLVED: gdb.base/condbreak.exp: break *main if
PASS -> UNRESOLVED: gdb.base/condbreak.exp: break *main task 999 if
PASS -> UNRESOLVED: gdb.base/condbreak.exp: break *main thread 999 if
PASS -> UNRESOLVED: gdb.base/condbreak.exp: break break.c:47 if
PASS -> UNRESOLVED: gdb.base/condbreak.exp: break break.c:47 if 1==1
PASS -> UNRESOLVED: gdb.base/condbreak.exp: break main if
PASS -> UNRESOLVED: gdb.base/condbreak.exp: break main thread 999 if
PASS -> UNRESOLVED: gdb.base/condbreak.exp: break marker1 if
PASS -> UNRESOLVED: gdb.base/condbreak.exp: break marker1 if 1==1
PASS -> UNRESOLVED: gdb.base/condbreak.exp: break marker2 if
PASS -> UNRESOLVED: gdb.base/condbreak.exp: break marker3 if
PASS -> UNRESOLVED: gdb.base/condbreak.exp: break marker4
PASS -> UNRESOLVED: gdb.base/condbreak.exp: breakpoint function
PASS -> UNRESOLVED: gdb.base/condbreak.exp: breakpoint info
PASS -> UNRESOLVED: gdb.base/condbreak.exp: complete cond $v
PASS -> UNRESOLVED: gdb.base/condbreak.exp: complete cond 1
PASS -> UNRESOLVED: gdb.base/condbreak.exp: complete cond 1 values[0].a
PASS -> UNRESOLVED: gdb.base/condbreak.exp: delete 2
PASS -> UNRESOLVED: gdb.base/condbreak.exp: delete 3
PASS -> UNRESOLVED: gdb.base/condbreak.exp: run until breakpoint at marker1
PASS -> UNRESOLVED: gdb.base/condbreak.exp: run until breakpoint at marker2
PASS -> UNRESOLVED: gdb.base/condbreak.exp: run until breakpoint at marker3
PASS -> UNRESOLVED: gdb.base/condbreak.exp: run until breakpoint at marker4
PASS -> UNRESOLVED: gdb.base/condbreak.exp: run until breakpoint set at a line number
PASS -> UNRESOLVED: gdb.base/condbreak.exp: set variable $var = 1
new FAIL: gdb.base/consecutive-step-over.exp: can't run to main
new FAIL: gdb.base/continue-after-aborted-step-over.exp: displaced-stepping=off: run to main
new FAIL: gdb.base/continue-after-aborted-step-over.exp: displaced-stepping=on: run to main
new UNRESOLVED: gdb.base/cursal.exp: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/cursal.exp: list before run
PASS -> UNRESOLVED: gdb.base/dbx.exp: assign first
PASS -> UNRESOLVED: gdb.base/dbx.exp: cont 1
PASS -> UNRESOLVED: gdb.base/dbx.exp: cont 2
PASS -> UNRESOLVED: gdb.base/dbx.exp: file average.c:1
PASS -> UNRESOLVED: gdb.base/dbx.exp: func print_average
PASS -> UNRESOLVED: gdb.base/dbx.exp: func sum
PASS -> UNRESOLVED: gdb.base/dbx.exp: print first
PASS -> UNRESOLVED: gdb.base/dbx.exp: status
PASS -> UNRESOLVED: gdb.base/dbx.exp: step
PASS -> UNRESOLVED: gdb.base/dbx.exp: stop at average.c:30
PASS -> UNRESOLVED: gdb.base/dbx.exp: stop at main
PASS -> UNRESOLVED: gdb.base/dbx.exp: stop in average.c:30
PASS -> UNRESOLVED: gdb.base/dbx.exp: stop in main
PASS -> UNRESOLVED: gdb.base/dbx.exp: stop in sum
PASS -> UNRESOLVED: gdb.base/dbx.exp: whereis my_list
new FAIL: gdb.base/debug-expr.exp: run to main
new UNRESOLVED: gdb.base/define.exp:
PASS -> UNRESOLVED: gdb.base/define.exp: command abbreviations in define: additional end command
PASS -> UNRESOLVED: gdb.base/define.exp: command abbreviations in define: define user command: breakmain
PASS -> UNRESOLVED: gdb.base/define.exp: command abbreviations in define: info break shows echo command
PASS -> UNRESOLVED: gdb.base/define.exp: command abbreviations in define: run user command
PASS -> UNRESOLVED: gdb.base/define.exp: define do-define
PASS -> UNRESOLVED: gdb.base/define.exp: define hook undefined command aborted: bar
PASS -> UNRESOLVED: gdb.base/define.exp: define hook-stop command
PASS -> UNRESOLVED: gdb.base/define.exp: define target hook-testsuite
PASS -> UNRESOLVED: gdb.base/define.exp: define target hookpost-testsuite
PASS -> UNRESOLVED: gdb.base/define.exp: define target testsuite
new FAIL: gdb.base/define.exp: define tests suppressed
PASS -> UNRESOLVED: gdb.base/define.exp: define user command: ifnospace
PASS -> UNRESOLVED: gdb.base/define.exp: define user command: nextwh
PASS -> UNRESOLVED: gdb.base/define.exp: define user command: nextwhere
PASS -> UNRESOLVED: gdb.base/define.exp: define user command: user-bt
PASS -> UNRESOLVED: gdb.base/define.exp: define user command: whilenospace
PASS -> UNRESOLVED: gdb.base/define.exp: document target testsuite
PASS -> UNRESOLVED: gdb.base/define.exp: document user command: nextwhere
PASS -> UNRESOLVED: gdb.base/define.exp: help target
PASS -> UNRESOLVED: gdb.base/define.exp: help user command: nextwhere
PASS -> UNRESOLVED: gdb.base/define.exp: invoke do-define
PASS -> UNRESOLVED: gdb.base/define.exp: invoke do-printit
PASS -> UNRESOLVED: gdb.base/define.exp: preserve whitespace in help string
PASS -> UNRESOLVED: gdb.base/define.exp: re-document user command: nextwhere
PASS -> UNRESOLVED: gdb.base/define.exp: redefine user command aborted: nextwhere
PASS -> UNRESOLVED: gdb.base/define.exp: redocumenting builtin command disallowed
PASS -> UNRESOLVED: gdb.base/define.exp: reset gdb_prompt
PASS -> UNRESOLVED: gdb.base/define.exp: save gdb_prompt
PASS -> UNRESOLVED: gdb.base/define.exp: set gdb_prompt
PASS -> UNRESOLVED: gdb.base/define.exp: set up whitespace in help string
PASS -> UNRESOLVED: gdb.base/define.exp: show user target testsuite
PASS -> UNRESOLVED: gdb.base/define.exp: target testsuite
PASS -> UNRESOLVED: gdb.base/define.exp: target testsuite with hooks
PASS -> UNRESOLVED: gdb.base/define.exp: test ifnospace is parsed correctly
PASS -> UNRESOLVED: gdb.base/define.exp: test whilenospace is parsed correctly
PASS -> UNRESOLVED: gdb.base/define.exp: use hook-stop command
PASS -> UNRESOLVED: gdb.base/define.exp: use user command: nextwhere
PASS -> UNRESOLVED: gdb.base/del.exp: Remove last breakpoint
PASS -> UNRESOLVED: gdb.base/del.exp: breakpoint insertion
PASS -> UNRESOLVED: gdb.base/del.exp: info break after removing break on main
new UNRESOLVED: gdb.base/detach.exp: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/detach.exp: detach, one
PASS -> UNRESOLVED: gdb.base/detach.exp: detach, two
PASS -> UNRESOLVED: gdb.base/detach.exp: set should_exit, one
PASS -> UNRESOLVED: gdb.base/detach.exp: set should_exit, two
new FAIL: gdb.base/disabled-location.exp: can't run to main
new FAIL: gdb.base/display.exp: could not run to main - other tests will fail.
PASS -> UNRESOLVED: gdb.base/dmsym.exp: break test_minsym
PASS -> UNRESOLVED: gdb.base/dmsym.exp: continue
PASS -> UNRESOLVED: gdb.base/dmsym.exp: info line test_minsym
PASS -> UNRESOLVED: gdb.base/dmsym.exp: print val
new UNRESOLVED: gdb.base/dmsym.exp: setting breakpoint at dmsym_main.c:31
new FAIL: gdb.base/double-prompt-target-event-error.exp: ctrlc target event: continue: can't run to main
new FAIL: gdb.base/double-prompt-target-event-error.exp: ctrlc target event: wrapcont: can't run to main
new FAIL: gdb.base/dprintf-bp-same-addr.exp: agent: can't run to main
new FAIL: gdb.base/dprintf-bp-same-addr.exp: gdb: can't run to main
new FAIL: gdb.base/dprintf-next.exp: can't run to main
new FAIL: gdb.base/dprintf-non-stop.exp: can't run to main
PASS -> UNRESOLVED: gdb.base/dprintf-pending.exp: set pending dprintf
new FAIL: gdb.base/duplicate-bp.exp: del_1_stop_2: can't run to main
PASS -> UNRESOLVED: gdb.base/duplicate-bp.exp: del_1_stop_2: delete #1, stop at #2
PASS -> UNRESOLVED: gdb.base/duplicate-bp.exp: del_1_stop_2: delete $bp_num_1
new FAIL: gdb.base/duplicate-bp.exp: del_2_stop_1: can't run to main
PASS -> UNRESOLVED: gdb.base/duplicate-bp.exp: del_2_stop_1: delete #2, stop at #1
PASS -> UNRESOLVED: gdb.base/duplicate-bp.exp: del_2_stop_1: delete $bp_num_2
new FAIL: gdb.base/duplicate-bp.exp: dis_1_del_2_stop_3: can't run to main
PASS -> UNRESOLVED: gdb.base/duplicate-bp.exp: dis_1_del_2_stop_3: delete $bp_num_2
PASS -> UNRESOLVED: gdb.base/duplicate-bp.exp: dis_1_del_2_stop_3: disable #1, delete #2, stop at #3
PASS -> UNRESOLVED: gdb.base/duplicate-bp.exp: dis_1_del_2_stop_3: disable $bp_num_1
PASS -> UNRESOLVED: gdb.base/duplicate-bp.exp: dis_1_del_2_stop_3: step
new FAIL: gdb.base/duplicate-bp.exp: dis_1_del_3_stop_1: can't run to main
PASS -> UNRESOLVED: gdb.base/duplicate-bp.exp: dis_1_del_3_stop_1: delete $bp_num_3
PASS -> UNRESOLVED: gdb.base/duplicate-bp.exp: dis_1_del_3_stop_1: disable #1, delete #3, stop at #2
PASS -> UNRESOLVED: gdb.base/duplicate-bp.exp: dis_1_del_3_stop_1: disable $bp_num_1
PASS -> UNRESOLVED: gdb.base/duplicate-bp.exp: dis_1_del_3_stop_1: step
new FAIL: gdb.base/duplicate-bp.exp: dis_2_del_1_stop_3: can't run to main
PASS -> UNRESOLVED: gdb.base/duplicate-bp.exp: dis_2_del_1_stop_3: delete $bp_num_1
PASS -> UNRESOLVED: gdb.base/duplicate-bp.exp: dis_2_del_1_stop_3: disable #2, delete #1, stop at #3
PASS -> UNRESOLVED: gdb.base/duplicate-bp.exp: dis_2_del_1_stop_3: disable $bp_num_2
PASS -> UNRESOLVED: gdb.base/duplicate-bp.exp: dis_2_del_1_stop_3: step
new FAIL: gdb.base/duplicate-bp.exp: dis_2_del_3_stop_1: can't run to main
PASS -> UNRESOLVED: gdb.base/duplicate-bp.exp: dis_2_del_3_stop_1: delete $bp_num_3
PASS -> UNRESOLVED: gdb.base/duplicate-bp.exp: dis_2_del_3_stop_1: disable #2, delete #3, stop at #1
PASS -> UNRESOLVED: gdb.base/duplicate-bp.exp: dis_2_del_3_stop_1: disable $bp_num_2
PASS -> UNRESOLVED: gdb.base/duplicate-bp.exp: dis_2_del_3_stop_1: step
new FAIL: gdb.base/duplicate-bp.exp: dis_3_del_1_stop_2: can't run to main
PASS -> UNRESOLVED: gdb.base/duplicate-bp.exp: dis_3_del_1_stop_2: delete $bp_num_1
PASS -> UNRESOLVED: gdb.base/duplicate-bp.exp: dis_3_del_1_stop_2: disable #3, delete #1, stop at #2
PASS -> UNRESOLVED: gdb.base/duplicate-bp.exp: dis_3_del_1_stop_2: disable $bp_num_3
PASS -> UNRESOLVED: gdb.base/duplicate-bp.exp: dis_3_del_1_stop_2: step
new FAIL: gdb.base/duplicate-bp.exp: dis_3_del_2_stop_1: can't run to main
PASS -> UNRESOLVED: gdb.base/duplicate-bp.exp: dis_3_del_2_stop_1: delete $bp_num_2
PASS -> UNRESOLVED: gdb.base/duplicate-bp.exp: dis_3_del_2_stop_1: disable #3, delete #2, stop at #1
PASS -> UNRESOLVED: gdb.base/duplicate-bp.exp: dis_3_del_2_stop_1: disable $bp_num_3
PASS -> UNRESOLVED: gdb.base/duplicate-bp.exp: dis_3_del_2_stop_1: step
new UNRESOLVED: gdb.base/ena-dis-br.exp:
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: break 63
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: break main
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: break marker1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: break marker2
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: break marker3
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: break marker4
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: continue from enable count, first time
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: continue from enable count, second time
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: continue through enable count, now disabled
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: continue to auto-deleted break marker3
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: continue to auto-disabled break marker2
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: continue to break marker1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: continue to break marker1, 2nd time
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: continue to ignored & auto-deleted break marker1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: continue until exit at no stop
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: continue until exit at no stop at auto-disabled break marker2
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: continue until exit at no stop at ignored & auto-deleted break marker1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: continue until exit at no stop at ignored & disabled break marker1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: continue until exit at no stop at ignored break marker1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: continue with ignore count
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: continue with ignore count, not stopped at bpt
new UNRESOLVED: gdb.base/ena-dis-br.exp: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: delete break marker1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: disable $b1 fooo.1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: disable $b1.1 $b2.1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: disable $b3
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: disable $b4 $b3.1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: disable $b4.1 fooobar
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: disable break marker1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: disable break marker4
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: disable break with count
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: disabled $b1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: disabled $b1.1 and $b2.1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: disabled $b4 and $b3.1,remain enabled $b3
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: disabled $b4.1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: enable $b1 fooo.1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: enable $b1.1 $b2.1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: enable $b3
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: enable $b4 $b3.1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: enable $b4.1 fooobar
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: enable break marker1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: enable count missing arguments
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: enable count missing breakpoint number
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: enable del break marker1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: enable del break marker3
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: enable once break marker2
new UNRESOLVED: gdb.base/ena-dis-br.exp: enable/disable break tests suppressed
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: enabled $b1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: enabled $b1.1 and $b2.1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: enabled $b4 and $b3.1,remain disabled $b3
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: enabled $b4.1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: ignore break marker1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: ignore break marker1 -1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: ignore break marker1 0
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: ignore break marker1 1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: ignore break marker1 10
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: ignore break with missing ignore count
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: ignore non-existent break
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: info auto-deleted break marker2
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: info auto-deleted break marker3
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: info auto-disabled break marker2 after hitting breakpoint
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: info auto-disabled break marker2 before hitting breakpoint
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: info break marker1 after hitting breakpoint
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: info break marker1 before hitting breakpoint
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: info break marker4
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: info ignored & disabled break marker1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: info ignored break marker1
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: prepare to continue with ignore count
PASS -> UNRESOLVED: gdb.base/ena-dis-br.exp: step after continue with ignore count
PASS -> UNRESOLVED: gdb.base/ending-run.exp: Cleared 2 by line
PASS -> UNRESOLVED: gdb.base/ending-run.exp: Step to return
PASS -> UNRESOLVED: gdb.base/ending-run.exp: all set to continue
PASS -> UNRESOLVED: gdb.base/ending-run.exp: b ending-run.c:1
PASS -> UNRESOLVED: gdb.base/ending-run.exp: b ending-run.c:11, one
PASS -> UNRESOLVED: gdb.base/ending-run.exp: b ending-run.c:11, two
PASS -> UNRESOLVED: gdb.base/ending-run.exp: b ending-run.c:30
PASS -> UNRESOLVED: gdb.base/ending-run.exp: bpt at line before routine
PASS -> UNRESOLVED: gdb.base/ending-run.exp: clear worked
PASS -> UNRESOLVED: gdb.base/ending-run.exp: cleared bp at line before routine
PASS -> UNRESOLVED: gdb.base/ending-run.exp: cont
new UNRESOLVED: gdb.base/ending-run.exp: info line ending-run.c:11
PASS -> UNRESOLVED: gdb.base/ending-run.exp: step out of main
new FAIL: gdb.base/exec-invalid-sysroot.exp: couldn't run exec-invalid-sysroot
new FAIL: gdb.base/execl-update-breakpoints.exp: couldn't run to main
new UNRESOLVED: gdb.base/execution-termios.exp: continue: can't run to main
new UNRESOLVED: gdb.base/execution-termios.exp: continue: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/execution-termios.exp: finish: can't run to main
new UNRESOLVED: gdb.base/execution-termios.exp: finish: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/execution-termios.exp: infcall: can't run to main
new UNRESOLVED: gdb.base/execution-termios.exp: infcall: delete all breakpoints in delete_breakpoints
new FAIL: gdb.base/execution-termios.exp: next: can't run to main
PASS -> UNRESOLVED: gdb.base/expand-psymtabs.exp: expand psymtabs
PASS -> UNRESOLVED: gdb.base/filesym.exp: set breakpoint at filesym
PASS -> UNRESOLVED: gdb.base/find.exp: $_
PASS -> UNRESOLVED: gdb.base/find.exp: $numfound
PASS -> UNRESOLVED: gdb.base/find.exp: breakpoint function in file
PASS -> UNRESOLVED: gdb.base/find.exp: find 16-bit pattern
PASS -> UNRESOLVED: gdb.base/find.exp: find 32-bit pattern
PASS -> UNRESOLVED: gdb.base/find.exp: find 64-bit pattern
PASS -> UNRESOLVED: gdb.base/find.exp: find byte pattern with end address
PASS -> UNRESOLVED: gdb.base/find.exp: find int64_search_buf, +64/8*100, int64_search_buf
PASS -> UNRESOLVED: gdb.base/find.exp: find mixed-sized pattern
PASS -> UNRESOLVED: gdb.base/find.exp: find pattern straddling chunk boundary
PASS -> UNRESOLVED: gdb.base/find.exp: find string pattern
PASS -> UNRESOLVED: gdb.base/find.exp: max-count
PASS -> UNRESOLVED: gdb.base/find.exp: pattern found at end of range
PASS -> UNRESOLVED: gdb.base/find.exp: pattern not found at end of range
PASS -> UNRESOLVED: gdb.base/find.exp: search spanning large range
new UNRESOLVED: gdb.base/find.exp: set *
new UNRESOLVED: gdb.base/find.exp: set int16_search_buf[10] = 0x1234
new UNRESOLVED: gdb.base/find.exp: set int32_search_buf[10] = 0x12345678
new UNRESOLVED: gdb.base/find.exp: set int64_search_buf[10] = 0xfedcba9876543210LL
PASS -> UNRESOLVED: gdb.base/find.exp: size,max-count, /1/b
PASS -> UNRESOLVED: gdb.base/find.exp: size,max-count, /1b
PASS -> UNRESOLVED: gdb.base/find.exp: size,max-count, /b/1
PASS -> UNRESOLVED: gdb.base/find.exp: size,max-count, /b1
new FAIL: gdb.base/finish-pretty.exp: can't run to foo
new FAIL: gdb.base/fixsection.exp: can't run to main
new FAIL: gdb.base/foll-exec.exp: couldn't run foll-exec
new UNRESOLVED: gdb.base/foll-fork.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=off: can't run to main
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: all-stop: schedule-multiple=on: can't run to main
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=child: non-stop: can't run to main
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=parent: all-stop: schedule-multiple=off: can't run to main
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=parent: all-stop: schedule-multiple=on: can't run to main
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=parent: non-stop: can't run to main
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=child: all-stop: schedule-multiple=off: can't run to main
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=child: all-stop: schedule-multiple=on: can't run to main
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=child: non-stop: can't run to main
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=parent: all-stop: schedule-multiple=off: can't run to main
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=parent: all-stop: schedule-multiple=on: can't run to main
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=parent: non-stop: can't run to main
PASS -> UNRESOLVED: gdb.base/frame-selection.exp: backtrace at breakpoint
PASS -> UNRESOLVED: gdb.base/frame-selection.exp: continue to breakpoint: frame_2
PASS -> UNRESOLVED: gdb.base/frame-selection.exp: frame 0
PASS -> UNRESOLVED: gdb.base/frame-selection.exp: frame 1
PASS -> UNRESOLVED: gdb.base/frame-selection.exp: frame 2
PASS -> UNRESOLVED: gdb.base/frame-selection.exp: frame 3
PASS -> UNRESOLVED: gdb.base/frame-selection.exp: get_frame_address: frame 0
PASS -> UNRESOLVED: gdb.base/frame-selection.exp: get_frame_address: frame 1
PASS -> UNRESOLVED: gdb.base/frame-selection.exp: get_frame_address: frame 2
new UNRESOLVED: gdb.base/frame-selection.exp: setting breakpoint at frame_2
new FAIL: gdb.base/frameapply.exp: can't run to setup_done
PASS -> UNRESOLVED: gdb.base/freebpcmd.exp: send breakpoint commands
PASS -> UNRESOLVED: gdb.base/freebpcmd.exp: set breakpoint
PASS -> UNRESOLVED: gdb.base/fullname.exp: set breakpoint at main - built absolute
PASS -> UNRESOLVED: gdb.base/fullname.exp: set breakpoint at main - built other
PASS -> UNRESOLVED: gdb.base/fullname.exp: set breakpoint at main - built relative
PASS -> UNRESOLVED: gdb.base/fullname.exp: set breakpoint by full path after loading symbols - built absolute
PASS -> UNRESOLVED: gdb.base/fullname.exp: set breakpoint by full path after loading symbols - built other
PASS -> UNRESOLVED: gdb.base/fullname.exp: set breakpoint by full path after loading symbols - built relative
PASS -> FAIL: gdb.base/fullname.exp: set breakpoint by full path before loading symbols - built absolute
PASS -> FAIL: gdb.base/fullname.exp: set breakpoint by full path before loading symbols - built other
PASS -> FAIL: gdb.base/fullname.exp: set breakpoint by full path before loading symbols - built relative
PASS -> UNRESOLVED: gdb.base/fullpath-expand.exp: info source
PASS -> UNRESOLVED: gdb.base/fullpath-expand.exp: list func
PASS -> UNRESOLVED: gdb.base/fullpath-expand.exp: rbreak XXX/fullpath-expand-func.c:func
new FAIL: gdb.base/func-ptr.exp: can't run to main
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace after alloca
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call6a
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call6b
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call6c
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call6d
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call6e
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call6f
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call6g
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call6h
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call6i
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call6j
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call6k
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call7a
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call7b
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call7c
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call7d
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call7e
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call7f
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call7g
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call7h
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call7i
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call7j
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call7k
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace from call_after_alloca_subr
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace in indirectly called function
PASS -> UNRESOLVED: gdb.base/funcargs.exp: backtrace through call with trampolines
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call0a
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call0b
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call0c
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call0d
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call0e
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call1b
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call1c
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call1d
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call1e
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call2b
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call2c
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call2d
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call2e
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call2f
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call2g
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call2h
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call2i
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call3b
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call3c
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call4b
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call5b
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call6b
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call6c
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call6d
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call6e
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call6f
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call6g
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call6h
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call6i
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call6j
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call6k
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call7b
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call7c
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call7d
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call7e
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call7f
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call7g
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call7h
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call7i
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call7j
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to call7k
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to callc1b
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to callc2b
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to callcb
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to callcc
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to callcd
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to callce
PASS -> UNRESOLVED: gdb.base/funcargs.exp: continue to callcf
new UNRESOLVED: gdb.base/funcargs.exp: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/funcargs.exp: finish from indirectly called function
PASS -> UNRESOLVED: gdb.base/funcargs.exp: finish from marker_call_with_trampolines
PASS -> UNRESOLVED: gdb.base/funcargs.exp: next in localvars_after_alloca
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print *cp
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print *dp
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print *fp
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print *ip
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print *lp
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print *sp
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print *stp
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print *ucp
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print *uip
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print *ulp
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print *unp
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print *usp
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print c after run to call0a
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print c after run to call2a
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print c after runto localvars_after_alloca
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print c in call_after_alloca
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print c in localvars_after_alloca
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print c in localvars_in_indirect_call
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print d1 after run to call2a
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print d2 after run to call2a
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print f1 after run to call2a
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print f2 after run to call2a
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print i after run to call0a
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print i after run to call2a
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print i after runto localvars_after_alloca
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print i in call_after_alloca
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print i in localvars_after_alloca
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print i in localvars_in_indirect_call
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print l after run to call0a
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print l after run to call2a
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print l after runto localvars_after_alloca
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print l in call_after_alloca
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print l in localvars_after_alloca
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print l in localvars_in_indirect_call
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print s after run to call0a
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print s after run to call2a
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print s after runto localvars_after_alloca
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print s in call_after_alloca
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print s in localvars_after_alloca
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print s in localvars_in_indirect_call
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print st
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print uc
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print ui
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print ul
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print un
PASS -> UNRESOLVED: gdb.base/funcargs.exp: print us
PASS -> UNRESOLVED: gdb.base/funcargs.exp: recursive passing of structs by value
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call0a
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call0b
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call0c
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call0d
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call0e
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call1a
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call1b
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call1c
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call1d
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call1e
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call2a
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call2b
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call2c
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call2d
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call2e
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call2f
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call2g
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call2h
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call2i
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call3a
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call3b
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call3c
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call4a
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call4b
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call5a
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call5b
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call6a
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call6b
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call6c
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call6d
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call6e
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call6f
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call6g
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call6h
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call6i
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call6j
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call6k
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call7a
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call7b
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call7c
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call7d
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call7e
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call7f
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call7g
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call7h
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call7i
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call7j
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call7k
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at callc1a
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at callc1b
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at callc2a
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at callc2b
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at callca
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at callcb
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at callcc
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at callcd
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at callce
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at callcf
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at hitbottom
PASS -> UNRESOLVED: gdb.base/funcargs.exp: stepping back to main from function called with trampolines
PASS -> UNRESOLVED: gdb.base/funcargs.exp: stepping into function called with trampolines
PASS -> UNRESOLVED: gdb.base/funcargs.exp: stepping into indirectly called function
new FAIL: gdb.base/gcore-relro-pie.exp: can't run to break_here
new FAIL: gdb.base/gcore-tls-pie.exp: can't run to break_here
new UNRESOLVED: gdb.base/gdb-caching-proc.exp: break main
PASS -> FAIL: gdb.base/gdb-caching-proc.exp: is_address_zero_readable consistency
new UNRESOLVED: gdb.base/gdb-caching-proc.exp: x 0
PASS -> FAIL: gdb.base/gdb-sigterm.exp: 50 SIGTERM passes
new FAIL: gdb.base/gdb1090.exp: can't run to main
new FAIL: gdb.base/gdb11530.exp: run to main
new FAIL: gdb.base/gdb11531.exp: run to main
new FAIL: gdb.base/gdb1555.exp: can't run to main
PASS -> UNRESOLVED: gdb.base/gdbvars.exp: Print contents of new convenience variable of program variable
PASS -> UNRESOLVED: gdb.base/gdbvars.exp: Set a new convenience variable to a program variable
new FAIL: gdb.base/gnu_vector.exp: runto main
PASS -> UNRESOLVED: gdb.base/hashline1.exp: set breakpoint
PASS -> UNRESOLVED: gdb.base/hashline2.exp: set breakpoint
PASS -> UNRESOLVED: gdb.base/hashline3.exp: set breakpoint
new FAIL: gdb.base/hbreak-in-shr-unsupported.exp: can't run to main
new FAIL: gdb.base/hbreak-unmapped.exp: can't run to main
new UNRESOLVED: gdb.base/hbreak2.exp: break tests suppressed
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: continue to hardware breakpoint at }
new UNRESOLVED: gdb.base/hbreak2.exp: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: hardware break on default location
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: hardware break on non-existent source line
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: hardware breakpoint at start of multi line if conditional
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: hardware breakpoint at start of multi line while conditional
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: hardware breakpoint function
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: hardware breakpoint function in file
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: hardware breakpoint info
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: hardware breakpoint line number
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: hardware breakpoint line number in file
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: hardware breakpoint offset +1
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: hardware breakpoint quoted function
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: hardware breakpoint support
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: run until breakpoint set at a line number
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: run until file:function
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: run until file:linenum breakpoint
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: run until quoted breakpoint
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: set breakpoint pending off
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: set to-be-silent hardware break bp_location1
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: setting hardware breakpoint at }
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: step onto hardware breakpoint
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: temporary hardware breakpoint function
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: temporary hardware breakpoint function in file
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: temporary hardware breakpoint info
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: temporary hardware breakpoint line number #1
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: temporary hardware breakpoint line number #2
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: temporary hardware breakpoint line number in file #1
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: temporary hardware breakpoint line number in file #2
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: until bp_location1
PASS -> UNRESOLVED: gdb.base/hbreak2.exp: use `list' to establish default source file
new FAIL: gdb.base/hook-stop.exp: hook-stop kills inferior: can't run to main
new FAIL: gdb.base/hook-stop.exp: hook-stop runs before frame print: can't run to main
new FAIL: gdb.base/hook-stop.exp: hook-stop runs continue&: can't run to main
new FAIL: gdb.base/hook-stop.exp: hook-stop runs continue: can't run to main
new FAIL: gdb.base/hook-stop.exp: hook-stop runs next: can't run to main
PASS -> UNRESOLVED: gdb.base/included.exp: info variables integer
PASS -> UNRESOLVED: gdb.base/included.exp: list integer
PASS -> UNRESOLVED: gdb.base/included.exp: list main
PASS -> UNRESOLVED: gdb.base/included.exp: ptype integer
new FAIL: gdb.base/infcall-input.exp: couldn't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tc-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tc-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tc-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ti: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tl: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tll: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ts: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tdc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-ti: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tl: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tll: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-ts: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tfc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ti: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tl-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tl-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tl-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tl: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-ti: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tl: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tll: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-ts: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tldc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tll-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tll-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tll-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tll: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ts-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ts-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ts-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-ts: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tc-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tc-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tc-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-tc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-ti: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-tl: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-tll: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td-ts: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tdc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-ti: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tl: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tll: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf-ts: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tfc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ti-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ti: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tl-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tl-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tl-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tl: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-ti: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tl: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tll: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld-ts: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tldc: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tll-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tll-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tll-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-tll: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ts-td: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ts-tf: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ts-tld: can't run to main
new FAIL: gdb.base/infcall-nested-structs.exp: l=c: types-ts: can't run to main
PASS -> UNRESOLVED: gdb.base/infnan.exp: print a
new FAIL: gdb.base/info-fun.exp: n_flag=0: NO: can't run to main
new FAIL: gdb.base/info-os.exp: cannot run to main
new FAIL: gdb.base/info-program.exp: can't run to main
new FAIL: gdb.base/info-types.exp: l=c++: can't run to main
new FAIL: gdb.base/info-types.exp: l=c: can't run to main
PASS -> UNRESOLVED: gdb.base/info_minsym.exp: minsym functions do not match type
PASS -> UNRESOLVED: gdb.base/info_minsym.exp: minsym functions found
PASS -> UNRESOLVED: gdb.base/info_minsym.exp: minsym variables found
new FAIL: gdb.base/info_qt.exp: can't run to setup_done
PASS -> UNRESOLVED: gdb.base/infoline-reloc-main-from-zero.exp: info line main
PASS -> UNRESOLVED: gdb.base/infoline.exp: info line infoline.c:18
new FAIL: gdb.base/interrupt-daemon.exp: can't run to daemon_main function
new FAIL: gdb.base/interrupt-noterm.exp: can't run to main
new FAIL: gdb.base/jit-exec.exp: can't run to main
PASS -> FAIL: gdb.base/jit-simple.exp: shared: change addr: address changed
PASS -> UNRESOLVED: gdb.base/jit-simple.exp: shared: change addr: initial run: get address of __jit_debug_descriptor
PASS -> UNRESOLVED: gdb.base/jit-simple.exp: shared: change addr: initial run: maint info breakpoints shows jit breakpoint
new UNRESOLVED: gdb.base/jit-simple.exp: shared: change addr: second run: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/jit-simple.exp: shared: change addr: second run: get address of __jit_debug_descriptor
PASS -> UNRESOLVED: gdb.base/jit-simple.exp: shared: change addr: second run: maint info breakpoints shows jit breakpoint
PASS -> UNRESOLVED: gdb.base/jit-simple.exp: shared: same addr: initial run: get address of __jit_debug_descriptor
PASS -> UNRESOLVED: gdb.base/jit-simple.exp: shared: same addr: initial run: maint info breakpoints shows jit breakpoint
new UNRESOLVED: gdb.base/jit-simple.exp: shared: same addr: second run: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/jit-simple.exp: shared: same addr: second run: get address of __jit_debug_descriptor
PASS -> UNRESOLVED: gdb.base/jit-simple.exp: shared: same addr: second run: maint info breakpoints shows jit breakpoint
PASS -> FAIL: gdb.base/jit-simple.exp: standalone: change addr: address changed
PASS -> UNRESOLVED: gdb.base/jit-simple.exp: standalone: change addr: initial run: get address of __jit_debug_descriptor
PASS -> UNRESOLVED: gdb.base/jit-simple.exp: standalone: change addr: initial run: maint info breakpoints shows jit breakpoint
new UNRESOLVED: gdb.base/jit-simple.exp: standalone: change addr: second run: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/jit-simple.exp: standalone: change addr: second run: get address of __jit_debug_descriptor
PASS -> UNRESOLVED: gdb.base/jit-simple.exp: standalone: change addr: second run: maint info breakpoints shows jit breakpoint
PASS -> UNRESOLVED: gdb.base/jit-simple.exp: standalone: same addr: initial run: get address of __jit_debug_descriptor
PASS -> UNRESOLVED: gdb.base/jit-simple.exp: standalone: same addr: initial run: maint info breakpoints shows jit breakpoint
new UNRESOLVED: gdb.base/jit-simple.exp: standalone: same addr: second run: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/jit-simple.exp: standalone: same addr: second run: get address of __jit_debug_descriptor
PASS -> UNRESOLVED: gdb.base/jit-simple.exp: standalone: same addr: second run: maint info breakpoints shows jit breakpoint
new FAIL: gdb.base/jit-so.exp: one_jit_test-1: can't run to main
new FAIL: gdb.base/jit-so.exp: one_jit_test-2: can't run to main
PASS -> UNRESOLVED: gdb.base/jit-so.exp: test jit-reader-load filename completion
new FAIL: gdb.base/jit.exp: PIE: one_jit_test-1: can't run to main
new FAIL: gdb.base/jit.exp: one_jit_test-1: can't run to main
new FAIL: gdb.base/jit.exp: one_jit_test-2: can't run to main
new FAIL: gdb.base/label.exp: label tests suppressed
new FAIL: gdb.base/line-symtabs.exp: can't run to main
PASS -> UNRESOLVED: gdb.base/lineinc.exp: tolerate macro info with multiple #inclusions per line
PASS -> UNRESOLVED: gdb.base/list-ambiguous.exp: edit ambiguous_fun
PASS -> UNRESOLVED: gdb.base/list-ambiguous.exp: edit ambiguous_var
PASS -> UNRESOLVED: gdb.base/list-ambiguous.exp: list ,ambiguous_fun
PASS -> UNRESOLVED: gdb.base/list-ambiguous.exp: list ,ambiguous_var
PASS -> UNRESOLVED: gdb.base/list-ambiguous.exp: list ambiguous_fun
PASS -> UNRESOLVED: gdb.base/list-ambiguous.exp: list ambiguous_fun,
PASS -> UNRESOLVED: gdb.base/list-ambiguous.exp: list ambiguous_fun,ambiguous_fun
PASS -> UNRESOLVED: gdb.base/list-ambiguous.exp: list ambiguous_fun,main
PASS -> UNRESOLVED: gdb.base/list-ambiguous.exp: list ambiguous_var
PASS -> UNRESOLVED: gdb.base/list-ambiguous.exp: list ambiguous_var,
PASS -> UNRESOLVED: gdb.base/list-ambiguous.exp: list ambiguous_var,ambiguous_var
PASS -> UNRESOLVED: gdb.base/list-ambiguous.exp: list ambiguous_var,main
PASS -> UNRESOLVED: gdb.base/list-ambiguous.exp: list main,ambiguous_fun
PASS -> UNRESOLVED: gdb.base/list-ambiguous.exp: list main,ambiguous_var
new FAIL: gdb.base/list-missing-source.exp: can't run to main
new FAIL: gdb.base/list.exp: list - after stop: 10, 10: can't run to main
new FAIL: gdb.base/list.exp: list - after stop: 10, 1: can't run to main
new FAIL: gdb.base/list.exp: list - after stop: 10, 2: can't run to main
new FAIL: gdb.base/list.exp: list - after stop: 10, 3: can't run to main
new FAIL: gdb.base/list.exp: list after stop: 1, 10: can't run to main
new FAIL: gdb.base/list.exp: list after stop: 10, 10: can't run to main
new FAIL: gdb.base/list.exp: list after stop: 10, 1: can't run to main
new FAIL: gdb.base/list.exp: list after stop: 10, 2: can't run to main
new FAIL: gdb.base/list.exp: list after stop: 10, 3: can't run to main
PASS -> UNRESOLVED: gdb.base/list.exp: list default lines around main
PASS -> UNRESOLVED: gdb.base/list.exp: list line 1 with unlimited listsize
PASS -> UNRESOLVED: gdb.base/list.exp: setting listsize to 0 #6
PASS -> UNRESOLVED: gdb.base/list.exp: setting listsize to 1 #1
PASS -> UNRESOLVED: gdb.base/list.exp: setting listsize to 10 #7
PASS -> UNRESOLVED: gdb.base/list.exp: setting listsize to 100 #5
PASS -> UNRESOLVED: gdb.base/list.exp: setting listsize to 2 #2
PASS -> UNRESOLVED: gdb.base/list.exp: setting listsize to 3 #3
PASS -> UNRESOLVED: gdb.base/list.exp: setting listsize to 4 #4
new FAIL: gdb.base/load-command.exp: can't run to main
new FAIL: gdb.base/long-inferior-output.exp: run to main
new FAIL: gdb.base/long_long.exp: run to known_types
PASS -> UNRESOLVED: gdb.base/longest-types.exp: print &f->buf
new FAIL: gdb.base/longjmp.exp: can't run to main
new UNRESOLVED: gdb.base/macscp.exp: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/macscp.exp: info macro FROM_COMMANDLINE
PASS -> UNRESOLVED: gdb.base/macscp.exp: info macro WHERE after `list macscp2_2'
PASS -> UNRESOLVED: gdb.base/macscp.exp: info macro WHERE after `list macscp3_2'
PASS -> UNRESOLVED: gdb.base/macscp.exp: info macro WHERE after `list macscp_4_2_from_macscp2'
KFAIL -> UNRESOLVED: gdb.base/macscp.exp: info macro WHERE after `list macscp_4_2_from_macscp3'
PASS -> UNRESOLVED: gdb.base/macscp.exp: info macro WHERE after `list main'
PASS -> UNRESOLVED: gdb.base/macscp.exp: info macro __FILE__ before running
PASS -> UNRESOLVED: gdb.base/macscp.exp: info macro __LINE__ before running
PASS -> UNRESOLVED: gdb.base/macscp.exp: list macscp2_2 for WHERE
PASS -> UNRESOLVED: gdb.base/macscp.exp: list macscp3_2 for WHERE
PASS -> UNRESOLVED: gdb.base/macscp.exp: list macscp4_2_from_macscp2
PASS -> UNRESOLVED: gdb.base/macscp.exp: list macscp4_2_from_macscp3
PASS -> UNRESOLVED: gdb.base/macscp.exp: list main for WHERE
PASS -> UNRESOLVED: gdb.base/macscp.exp: list main for support check
new UNRESOLVED: gdb.base/macscp.exp: macro tests suppressed: couldn't run to main
new UNRESOLVED: gdb.base/macscp.exp: test macro information
new UNRESOLVED: gdb.base/maint.exp:
PASS -> UNRESOLVED: gdb.base/maint.exp: cd to mydir
PASS -> UNRESOLVED: gdb.base/maint.exp: cd to objdir
new UNRESOLVED: gdb.base/maint.exp: check index cache stats
new UNRESOLVED: gdb.base/maint.exp: check index cache status
PASS -> UNRESOLVED: gdb.base/maint.exp: check maint info sections output
PASS -> UNRESOLVED: gdb.base/maint.exp: help maint
PASS -> UNRESOLVED: gdb.base/maint.exp: help maint info
PASS -> UNRESOLVED: gdb.base/maint.exp: help maint print
PASS -> UNRESOLVED: gdb.base/maint.exp: maint check-symtabs
PASS -> UNRESOLVED: gdb.base/maint.exp: maint dump-me
PASS -> UNRESOLVED: gdb.base/maint.exp: maint expand-symtabs
PASS -> UNRESOLVED: gdb.base/maint.exp: maint info breakpoints
PASS -> UNRESOLVED: gdb.base/maint.exp: maint info line-table w/o a file name
PASS -> UNRESOLVED: gdb.base/maint.exp: maint info line-table with filename of current symtab
PASS -> UNRESOLVED: gdb.base/maint.exp: maint info line-table with filename of symtab that is not current
PASS -> UNRESOLVED: gdb.base/maint.exp: maint info line-table with filename of symtab that is not currently expanded
PASS -> UNRESOLVED: gdb.base/maint.exp: maint info line-table with invalid filename
PASS -> UNRESOLVED: gdb.base/maint.exp: maint info sections
PASS -> UNRESOLVED: gdb.base/maint.exp: maint info sections .text
PASS -> UNRESOLVED: gdb.base/maint.exp: maint info sections CODE
PASS -> UNRESOLVED: gdb.base/maint.exp: maint info sections DATA
PASS -> UNRESOLVED: gdb.base/maint.exp: maint info w/o args
PASS -> UNRESOLVED: gdb.base/maint.exp: maint internal-error
PASS -> UNRESOLVED: gdb.base/maint.exp: maint print dummy-frames
PASS -> UNRESOLVED: gdb.base/maint.exp: maint print msymbols
PASS -> FAIL: gdb.base/maint.exp: maint print objfiles: header
PASS -> FAIL: gdb.base/maint.exp: maint print objfiles: psymtabs
PASS -> FAIL: gdb.base/maint.exp: maint print objfiles: symtabs
new UNRESOLVED: gdb.base/maint.exp: maint print psymbols -pc
new UNRESOLVED: gdb.base/maint.exp: maint print psymbols -source
PASS -> UNRESOLVED: gdb.base/maint.exp: maint print symbols -pc
PASS -> UNRESOLVED: gdb.base/maint.exp: maint print symbols -source
PASS -> UNRESOLVED: gdb.base/maint.exp: maint print type
PASS -> UNRESOLVED: gdb.base/maint.exp: maint print w/o args
PASS -> UNRESOLVED: gdb.base/maint.exp: maint set per-command off
PASS -> UNRESOLVED: gdb.base/maint.exp: maint set per-command on
PASS -> UNRESOLVED: gdb.base/maint.exp: maint show dwarf unwinders
PASS -> UNRESOLVED: gdb.base/maint.exp: maint w/o args
PASS -> UNRESOLVED: gdb.base/maint.exp: pwd
new FAIL: gdb.base/max-depth.exp: l=c++: can't run to main
new FAIL: gdb.base/max-depth.exp: l=c: can't run to main
new FAIL: gdb.base/max-value-size.exp: can't run to main
PASS -> UNRESOLVED: gdb.base/memattr.exp: 0x30 0x0: 0x00 0x10: no-overlap
PASS -> UNRESOLVED: gdb.base/memattr.exp: 0x30 0x0: 0x20 0x0: overlap
PASS -> UNRESOLVED: gdb.base/memattr.exp: 0x30 0x0: 0x20 0x30: no-overlap
PASS -> UNRESOLVED: gdb.base/memattr.exp: 0x30 0x0: 0x20 0x50: overlap
PASS -> UNRESOLVED: gdb.base/memattr.exp: 0x30 0x0: 0x30 0x0: overlap
PASS -> UNRESOLVED: gdb.base/memattr.exp: 0x30 0x0: 0x30 0x50: overlap
PASS -> UNRESOLVED: gdb.base/memattr.exp: 0x30 0x0: 0x40 0x0: overlap
PASS -> UNRESOLVED: gdb.base/memattr.exp: 0x30 0x0: 0x40 0x50: overlap
PASS -> UNRESOLVED: gdb.base/memattr.exp: 0x30 0x60: 0x20 0x0: overlap
PASS -> UNRESOLVED: gdb.base/memattr.exp: 0x30 0x60: 0x20 0x30: no-overlap
PASS -> UNRESOLVED: gdb.base/memattr.exp: 0x30 0x60: 0x20 0x40: overlap
PASS -> UNRESOLVED: gdb.base/memattr.exp: 0x30 0x60: 0x20 0x70: overlap
PASS -> UNRESOLVED: gdb.base/memattr.exp: 0x30 0x60: 0x30 0x0: overlap
PASS -> UNRESOLVED: gdb.base/memattr.exp: 0x30 0x60: 0x30 0x40: overlap
PASS -> UNRESOLVED: gdb.base/memattr.exp: 0x30 0x60: 0x30 0x60: overlap
PASS -> UNRESOLVED: gdb.base/memattr.exp: 0x30 0x60: 0x40 0x0: overlap
PASS -> UNRESOLVED: gdb.base/memattr.exp: 0x30 0x60: 0x40 0x50: overlap
PASS -> UNRESOLVED: gdb.base/memattr.exp: 0x30 0x60: 0x50 0x60: overlap
PASS -> UNRESOLVED: gdb.base/memattr.exp: 0x30 0x60: 0x50 0x70: overlap
PASS -> UNRESOLVED: gdb.base/memattr.exp: 0x30 0x60: 0x60 0x70: no-overlap
PASS -> UNRESOLVED: gdb.base/memattr.exp: 0x30 0x60: 0x80 0x0: no-overlap
PASS -> UNRESOLVED: gdb.base/memattr.exp: create mem region 1
PASS -> UNRESOLVED: gdb.base/memattr.exp: create mem region 2
PASS -> UNRESOLVED: gdb.base/memattr.exp: create mem region 3
PASS -> UNRESOLVED: gdb.base/memattr.exp: create mem region 4
PASS -> UNRESOLVED: gdb.base/memattr.exp: create mem region 5
new UNRESOLVED: gdb.base/memattr.exp: delete mem
PASS -> UNRESOLVED: gdb.base/memattr.exp: delete mem 1
PASS -> UNRESOLVED: gdb.base/memattr.exp: delete mem 2 4
PASS -> UNRESOLVED: gdb.base/memattr.exp: delete mem 2-4
PASS -> UNRESOLVED: gdb.base/memattr.exp: delete non-existant region
PASS -> UNRESOLVED: gdb.base/memattr.exp: disable mem
PASS -> UNRESOLVED: gdb.base/memattr.exp: disable mem 1
PASS -> UNRESOLVED: gdb.base/memattr.exp: disable mem 2 4
PASS -> UNRESOLVED: gdb.base/memattr.exp: disable non-existant regions
PASS -> UNRESOLVED: gdb.base/memattr.exp: enable mem
PASS -> UNRESOLVED: gdb.base/memattr.exp: enable mem 1
PASS -> UNRESOLVED: gdb.base/memattr.exp: enable mem 2-4
new UNRESOLVED: gdb.base/memattr.exp: get address of mem1
new UNRESOLVED: gdb.base/memattr.exp: get address of mem2
new UNRESOLVED: gdb.base/memattr.exp: get address of mem3
new UNRESOLVED: gdb.base/memattr.exp: get address of mem4
new UNRESOLVED: gdb.base/memattr.exp: get address of mem5
new UNRESOLVED: gdb.base/memattr.exp: get end of mem1
new UNRESOLVED: gdb.base/memattr.exp: get end of mem2
new UNRESOLVED: gdb.base/memattr.exp: get end of mem3
new UNRESOLVED: gdb.base/memattr.exp: get end of mem4
new UNRESOLVED: gdb.base/memattr.exp: get end of mem5
PASS -> UNRESOLVED: gdb.base/memattr.exp: info mem
PASS -> UNRESOLVED: gdb.base/memattr.exp: mem 0x30 0x0 ro
PASS -> UNRESOLVED: gdb.base/memattr.exp: mem 0x30 0x60 ro
PASS -> UNRESOLVED: gdb.base/memattr.exp: mem 1 to 5 were disabled
PASS -> UNRESOLVED: gdb.base/memattr.exp: mem 1 to 5 were enabled
PASS -> UNRESOLVED: gdb.base/memattr.exp: mem 1 was deleted
PASS -> UNRESOLVED: gdb.base/memattr.exp: mem 1 was disabled
PASS -> UNRESOLVED: gdb.base/memattr.exp: mem 1 was enabled
PASS -> UNRESOLVED: gdb.base/memattr.exp: mem 2 and 4 were deleted
PASS -> UNRESOLVED: gdb.base/memattr.exp: mem 2 and 4 were disabled
PASS -> UNRESOLVED: gdb.base/memattr.exp: mem 2-4 were deleted
PASS -> UNRESOLVED: gdb.base/memattr.exp: mem 2-4 were enabled
PASS -> UNRESOLVED: gdb.base/memattr.exp: mem1 can be written
PASS -> UNRESOLVED: gdb.base/memattr.exp: mem1 cannot be read
PASS -> UNRESOLVED: gdb.base/memattr.exp: mem2 can be read
PASS -> UNRESOLVED: gdb.base/memattr.exp: mem2 cannot be written
PASS -> UNRESOLVED: gdb.base/msym-lang.exp: info func foo
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: detach 2
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: detach 3
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: detach 4
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: detach 5
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: did kill 10
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: did kill 11
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: did kill 12
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: did kill 13
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: did kill 14
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: did kill 15
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: did kill 16
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: did kill 6
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: did kill 7
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: did kill 8
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: did kill 9
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: follow child, print pids
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: follow parent, print pids
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: help set detach
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: inferior 1
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: inferior 10
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: inferior 11
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: inferior 12
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: inferior 13
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: inferior 14
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: inferior 15
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: inferior 2
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: inferior 3
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: inferior 4
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: inferior 5
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: inferior 6
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: inferior 7
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: inferior 8
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: inferior 9
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: info inferior 1
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: info inferior 10
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: info inferior 11
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: info inferior 12
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: info inferior 13
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: info inferior 14
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: info inferior 15
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: info inferior 16
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: info inferior 2
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: info inferior 3
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: info inferior 4
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: info inferior 5
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: info inferior 6
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: info inferior 7
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: info inferior 8
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: info inferior 9
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: kill 10
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: kill 11
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: kill 12
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: kill 13
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: kill 14
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: kill 15
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: kill 16
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: kill 6
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: kill 7
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: kill 8
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: kill 9
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: restart final
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: run to exit 1
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: run to exit 10
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: run to exit 11
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: run to exit 12
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: run to exit 13
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: run to exit 14
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: run to exit 15
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: run to exit 16
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: run to exit 2
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: run to exit 3
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: run to exit 4
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: run to exit 5
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: run to exit 6
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: run to exit 7
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: run to exit 8
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: run to exit 9
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: set detach off
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: set follow-fork child
new UNRESOLVED: gdb.base/multi-forks.exp: set follow-fork parent
new UNRESOLVED: gdb.base/multi-forks.exp: setting breakpoint at 40
PASS -> UNRESOLVED: gdb.base/multi-forks.exp: show detach default on
PASS -> UNRESOLVED: gdb.base/new-ui-echo.exp: extra console as driver: breakpoint hit reported on main console too
PASS -> FAIL: gdb.base/new-ui-echo.exp: extra console as driver: run to breakpoint on extra console
PASS -> FAIL: gdb.base/new-ui-echo.exp: extra console as driver: set breakpoint using extra console
PASS -> UNRESOLVED: gdb.base/new-ui-echo.exp: main console as driver: breakpoint hit reported on extra console too
PASS -> FAIL: gdb.base/new-ui-echo.exp: main console as driver: next on extra console
PASS -> FAIL: gdb.base/new-ui-echo.exp: main console as driver: print on extra console echoes
PASS -> UNRESOLVED: gdb.base/new-ui-echo.exp: main console as driver: print on main console echoes
PASS -> UNRESOLVED: gdb.base/new-ui-echo.exp: main console as driver: set breakpoint using main console
new FAIL: gdb.base/new-ui.exp: do_test_invalid_args: could not run to main
PASS -> UNRESOLVED: gdb.base/offsets.exp: print &big_struct test
new UNRESOLVED: gdb.base/opaque.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/options.exp: check for working compile command
new FAIL: gdb.base/options.exp: test-backtrace: cannot run to main
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: cmd complete "faas "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: cmd complete "faas -"
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: cmd complete "faas -- -"
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: cmd complete "faas -foo"
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: cmd complete "faas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -"
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -- -"
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -foo"
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply 1 -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -"
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -- -"
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -foo"
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply all"
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -"
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -- -"
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -foo"
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0 -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: cmd complete "frame apply level 0-"
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -"
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -- -"
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -foo"
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: cmd complete "tfaas -s "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: faas -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: faas -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: faas -foo
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply 1 -foo
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply all -foo
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0 -foo
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: frame apply level 0-
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: no-trailing-space: cmd complete "faas --"
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: no-trailing-space: cmd complete "frame apply 1 --"
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: no-trailing-space: cmd complete "frame apply all --"
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: no-trailing-space: cmd complete "frame apply level 0 --"
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: no-trailing-space: cmd complete "tfaas --"
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: no-trailing-space: faas --
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: no-trailing-space: frame apply 1 --
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: no-trailing-space: frame apply all --
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: no-trailing-space: frame apply level 0 --
new UNRESOLVED: gdb.base/options.exp: test-frame-apply: no-trailing-space: show editing
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: no-trailing-space: tfaas --
new UNRESOLVED: gdb.base/options.exp: test-frame-apply: set max-completions 0
new UNRESOLVED: gdb.base/options.exp: test-frame-apply: set max-completions 2
new UNRESOLVED: gdb.base/options.exp: test-frame-apply: show editing
new UNRESOLVED: gdb.base/options.exp: test-frame-apply: show max-completions
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: tfaas -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: tfaas -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: tfaas -foo
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "faas -- "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply 1 -- "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply all -- "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "frame apply level 0 -- "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: trailing-space: cmd complete "tfaas -- "
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: trailing-space: faas --
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: trailing-space: frame apply 1 --
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: trailing-space: frame apply all --
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: trailing-space: frame apply level 0 --
new UNRESOLVED: gdb.base/options.exp: test-frame-apply: trailing-space: set max-completions 0
new UNRESOLVED: gdb.base/options.exp: test-frame-apply: trailing-space: set max-completions 2
new UNRESOLVED: gdb.base/options.exp: test-frame-apply: trailing-space: show editing
new UNRESOLVED: gdb.base/options.exp: test-frame-apply: trailing-space: show max-completions
PASS -> UNRESOLVED: gdb.base/options.exp: test-frame-apply: trailing-space: tfaas --
PASS -> UNRESOLVED: gdb.base/options.exp: test-info-threads: cmd complete "info threads "
PASS -> UNRESOLVED: gdb.base/options.exp: test-info-threads: cmd complete "info threads -"
PASS -> UNRESOLVED: gdb.base/options.exp: test-info-threads: cmd complete "info threads I"
new UNRESOLVED: gdb.base/options.exp: test-info-threads: show editing
new FAIL: gdb.base/options.exp: test-print: cannot run to main
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: cmd complete "frame apply level 1-"
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: cmd complete "taas "
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: cmd complete "taas -"
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: cmd complete "taas -- -"
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: cmd complete "taas -c "
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: cmd complete "taas -foo"
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: cmd complete "taas"
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 "
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -"
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -- -"
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -c "
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply 1 -foo"
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all "
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -"
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -- -"
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -c "
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all -foo"
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: cmd complete "thread apply all"
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: no-trailing-space: cmd complete "taas --"
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: no-trailing-space: cmd complete "thread apply 1 --"
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: no-trailing-space: cmd complete "thread apply all --"
new UNRESOLVED: gdb.base/options.exp: test-thread-apply: no-trailing-space: show editing
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: no-trailing-space: taas --
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: no-trailing-space: thread apply 1 --
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: no-trailing-space: thread apply all --
new UNRESOLVED: gdb.base/options.exp: test-thread-apply: set max-completions 0
new UNRESOLVED: gdb.base/options.exp: test-thread-apply: set max-completions 2
new UNRESOLVED: gdb.base/options.exp: test-thread-apply: show editing
new UNRESOLVED: gdb.base/options.exp: test-thread-apply: show max-completions
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: taas -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: taas -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: taas -foo
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1 -foo
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply 1-
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -- -
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: thread apply all -foo
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "taas -- "
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply 1 -- "
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: trailing-space: cmd complete "thread apply all -- "
new UNRESOLVED: gdb.base/options.exp: test-thread-apply: trailing-space: set max-completions 0
new UNRESOLVED: gdb.base/options.exp: test-thread-apply: trailing-space: set max-completions 2
new UNRESOLVED: gdb.base/options.exp: test-thread-apply: trailing-space: show editing
new UNRESOLVED: gdb.base/options.exp: test-thread-apply: trailing-space: show max-completions
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: trailing-space: taas --
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: trailing-space: thread apply 1 --
PASS -> UNRESOLVED: gdb.base/options.exp: test-thread-apply: trailing-space: thread apply all --
new FAIL: gdb.base/paginate-after-ctrl-c-running.exp: ctrlc target running: can't run to main
new FAIL: gdb.base/paginate-bg-execution.exp: cancel with ctrl-c: can't run to main
new FAIL: gdb.base/paginate-bg-execution.exp: cancel with quit: can't run to main
new FAIL: gdb.base/paginate-bg-execution.exp: paginate: can't run to main
new FAIL: gdb.base/paginate-inferior-exit.exp: paginate: can't run to main
new UNRESOLVED: gdb.base/pending.exp:
PASS -> UNRESOLVED: gdb.base/pending.exp: Don't set pending breakpoint
PASS -> UNRESOLVED: gdb.base/pending.exp: Set commands for pending breakpoint
PASS -> UNRESOLVED: gdb.base/pending.exp: breakpoint function
PASS -> UNRESOLVED: gdb.base/pending.exp: condition 1 k == 1
PASS -> UNRESOLVED: gdb.base/pending.exp: continue to resolved breakpoint 1
PASS -> UNRESOLVED: gdb.base/pending.exp: continue to resolved breakpoint 2
PASS -> UNRESOLVED: gdb.base/pending.exp: continue to resolved breakpoint 3
new UNRESOLVED: gdb.base/pending.exp: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/pending.exp: disable 1
PASS -> UNRESOLVED: gdb.base/pending.exp: disable other breakpoints
PASS -> UNRESOLVED: gdb.base/pending.exp: multiple pending breakpoints
PASS -> UNRESOLVED: gdb.base/pending.exp: multiple pending breakpoints 2
PASS -> UNRESOLVED: gdb.base/pending.exp: pending disabled
PASS -> UNRESOLVED: gdb.base/pending.exp: pending disabled plus commands
PASS -> UNRESOLVED: gdb.base/pending.exp: pending plus condition
PASS -> UNRESOLVED: gdb.base/pending.exp: pending plus real breakpoint info
PASS -> UNRESOLVED: gdb.base/pending.exp: re-enabling pending breakpoint that can resolve instantly
PASS -> UNRESOLVED: gdb.base/pending.exp: set ignore count on pending breakpoint 3
PASS -> UNRESOLVED: gdb.base/pending.exp: set imaginary pending breakpoint
new UNRESOLVED: gdb.base/pending.exp: set pending breakpoint 2
new UNRESOLVED: gdb.base/pending.exp: set pending breakpoint 3
new UNRESOLVED: gdb.base/pending.exp: setting breakpoint at main
PASS -> FAIL: gdb.base/pending.exp: verify pending breakpoint after restart
new FAIL: gdb.base/pie-fork.exp: test_detach_on_fork_follow_child: can't run to main
PASS -> UNRESOLVED: gdb.base/pie-fork.exp: test_detach_on_fork_follow_child: continue
new FAIL: gdb.base/pie-fork.exp: test_detach_on_fork_follow_parent: can't run to main
PASS -> UNRESOLVED: gdb.base/pie-fork.exp: test_detach_on_fork_follow_parent: continue
new FAIL: gdb.base/pie-fork.exp: test_no_detach_on_fork: can't run to main
PASS -> UNRESOLVED: gdb.base/pie-fork.exp: test_no_detach_on_fork: continue
PASS -> UNRESOLVED: gdb.base/pie-fork.exp: test_no_detach_on_fork: thread 2.1
new FAIL: gdb.base/pr11022.exp: can't run to main
new FAIL: gdb.base/printcmds.exp: can't run to main
PASS -> UNRESOLVED: gdb.base/prologue-include.exp: breakpoint main
PASS -> UNRESOLVED: gdb.base/ptr-typedef.exp: print foo_ptr
PASS -> UNRESOLVED: gdb.base/ptr-typedef.exp: print foz_ptr
new UNRESOLVED: gdb.base/ptype.exp: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/ptype.exp: list charfoo
PASS -> UNRESOLVED: gdb.base/ptype.exp: list intfoo
PASS -> UNRESOLVED: gdb.base/ptype.exp: list main
PASS -> UNRESOLVED: gdb.base/ptype.exp: printing typedef'd struct
PASS -> UNRESOLVED: gdb.base/ptype.exp: printing typedef'd union
PASS -> UNRESOLVED: gdb.base/ptype.exp: ptype fffptr
PASS -> UNRESOLVED: gdb.base/ptype.exp: ptype ffptr
PASS -> UNRESOLVED: gdb.base/ptype.exp: ptype foo typedef after first list of charfoo
PASS -> UNRESOLVED: gdb.base/ptype.exp: ptype foo typedef after first list of intfoo
PASS -> UNRESOLVED: gdb.base/ptype.exp: ptype foo typedef after second list of charfoo
PASS -> UNRESOLVED: gdb.base/ptype.exp: ptype foo typedef after second list of intfoo
PASS -> UNRESOLVED: gdb.base/ptype.exp: ptype fptr
PASS -> UNRESOLVED: gdb.base/ptype.exp: ptype fptr2
PASS -> UNRESOLVED: gdb.base/ptype.exp: ptype func_type
PASS -> UNRESOLVED: gdb.base/ptype.exp: ptype inner int
PASS -> UNRESOLVED: gdb.base/ptype.exp: ptype inner structure
PASS -> UNRESOLVED: gdb.base/ptype.exp: ptype inner union
PASS -> UNRESOLVED: gdb.base/ptype.exp: ptype int
PASS -> UNRESOLVED: gdb.base/ptype.exp: ptype misordered enumeration
PASS -> UNRESOLVED: gdb.base/ptype.exp: ptype named enumeration member
PASS -> UNRESOLVED: gdb.base/ptype.exp: ptype named typedef'd enumf'd enum
PASS -> UNRESOLVED: gdb.base/ptype.exp: ptype nested structure
PASS -> UNRESOLVED: gdb.base/ptype.exp: ptype nested structure #2
PASS -> UNRESOLVED: gdb.base/ptype.exp: ptype nested union
PASS -> UNRESOLVED: gdb.base/ptype.exp: ptype new_fptr
PASS -> UNRESOLVED: gdb.base/ptype.exp: ptype old_fptr
PASS -> UNRESOLVED: gdb.base/ptype.exp: ptype outer int
PASS -> UNRESOLVED: gdb.base/ptype.exp: ptype outer structure
PASS -> UNRESOLVED: gdb.base/ptype.exp: ptype pv_char_array
PASS -> UNRESOLVED: gdb.base/ptype.exp: ptype short
PASS -> UNRESOLVED: gdb.base/ptype.exp: ptype t_char_array
PASS -> UNRESOLVED: gdb.base/ptype.exp: ptype the_highest
PASS -> UNRESOLVED: gdb.base/ptype.exp: ptype unnamed enumeration member #2
PASS -> UNRESOLVED: gdb.base/ptype.exp: ptype xptr
PASS -> UNRESOLVED: gdb.base/ptype.exp: whatis unnamed typedef'd enum
new FAIL: gdb.base/quit-live.exp: appear_how=run: extra_inferior=0: quit_how=quit: can't run to main
new FAIL: gdb.base/quit-live.exp: appear_how=run: extra_inferior=0: quit_how=sighup: can't run to main
new FAIL: gdb.base/quit-live.exp: appear_how=run: extra_inferior=0: quit_how=sigterm: can't run to main
new FAIL: gdb.base/quit-live.exp: appear_how=run: extra_inferior=1: quit_how=quit: can't run to main
new FAIL: gdb.base/quit-live.exp: appear_how=run: extra_inferior=1: quit_how=sighup: can't run to main
new FAIL: gdb.base/quit-live.exp: appear_how=run: extra_inferior=1: quit_how=sigterm: can't run to main
new FAIL: gdb.base/range-stepping.exp: can't run to main
PASS -> UNRESOLVED: gdb.base/realname-expand.exp: break realname-expand-real.c:func
PASS -> UNRESOLVED: gdb.base/realname-expand.exp: rbreak realname-expand-real.c:func
new FAIL: gdb.base/reggroups.exp: can't run to main
new UNRESOLVED: gdb.base/relativedebug.exp: continue
new UNRESOLVED: gdb.base/relativedebug.exp: info sharedlibrary
new UNRESOLVED: gdb.base/relativedebug.exp: pause found in backtrace
PASS -> FAIL: gdb.base/relocate.exp: functions have different addresses
PASS -> UNRESOLVED: gdb.base/relocate.exp: get address of function_bar
PASS -> UNRESOLVED: gdb.base/relocate.exp: get address of function_foo
PASS -> UNRESOLVED: gdb.base/relocate.exp: get address of global_bar
PASS -> UNRESOLVED: gdb.base/relocate.exp: get address of global_foo
PASS -> UNRESOLVED: gdb.base/relocate.exp: get address of static_bar
PASS -> UNRESOLVED: gdb.base/relocate.exp: get address of static_foo
PASS -> FAIL: gdb.base/relocate.exp: global variables have different addresses
PASS -> FAIL: gdb.base/relocate.exp: static variable foo is moved by offset
new FAIL: gdb.base/remote.exp: cannot run to main
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : breakpoint foo in first file
PASS -> FAIL: gdb.base/reread.exp: opts= "" "" : continue until exit at second pass
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : run to foo
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/reread.exp: opts= "" "" : second pass: run to foo
new UNRESOLVED: gdb.base/reread.exp: opts= "" "" : shell sleep 1
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : breakpoint foo in first file
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : continue until exit at second pass
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : run to foo
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
new FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : shell sleep 1
new FAIL: gdb.base/savedregs.exp: can't run to main
new UNRESOLVED: gdb.base/scope.exp: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sep.exp: breakpoint inside included file
PASS -> FAIL: gdb.base/sepdebug.exp: Temporary breakpoint function in file
PASS -> FAIL: gdb.base/sepdebug.exp: Temporary breakpoint info
PASS -> FAIL: gdb.base/sepdebug.exp: Temporary breakpoint line number in file #2
PASS -> FAIL: gdb.base/sepdebug.exp: break on default location, 1st time
PASS -> FAIL: gdb.base/sepdebug.exp: break on default location, 2nd time
PASS -> FAIL: gdb.base/sepdebug.exp: break on default location, 3rd time
PASS -> FAIL: gdb.base/sepdebug.exp: break on default location, 4th time
PASS -> FAIL: gdb.base/sepdebug.exp: break on non-existent source line
PASS -> UNRESOLVED: gdb.base/sepdebug.exp: breakpoint at start of multi line if conditional
PASS -> UNRESOLVED: gdb.base/sepdebug.exp: breakpoint at start of multi line while conditional
PASS -> UNRESOLVED: gdb.base/sepdebug.exp: breakpoint duplicate
PASS -> UNRESOLVED: gdb.base/sepdebug.exp: breakpoint function
PASS -> UNRESOLVED: gdb.base/sepdebug.exp: breakpoint function in file
PASS -> UNRESOLVED: gdb.base/sepdebug.exp: breakpoint info
PASS -> UNRESOLVED: gdb.base/sepdebug.exp: breakpoint line number
PASS -> UNRESOLVED: gdb.base/sepdebug.exp: breakpoint line number in file
PASS -> FAIL: gdb.base/sepdebug.exp: breakpoint offset +1
PASS -> UNRESOLVED: gdb.base/sepdebug.exp: breakpoint quoted function
PASS -> FAIL: gdb.base/sepdebug.exp: catch requires an event name
new FAIL: gdb.base/sepdebug.exp: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.base/sepdebug.exp: run until breakpoint set at a line number
PASS -> FAIL: gdb.base/sepdebug.exp: run until file:function
PASS -> FAIL: gdb.base/sepdebug.exp: run until file:linenum breakpoint
PASS -> UNRESOLVED: gdb.base/sepdebug.exp: run until function breakpoint
PASS -> FAIL: gdb.base/sepdebug.exp: run until quoted breakpoint
new UNRESOLVED: gdb.base/sepdebug.exp: sepdebug tests suppressed
PASS -> FAIL: gdb.base/sepdebug.exp: set breakpoint pending off
PASS -> FAIL: gdb.base/sepdebug.exp: set catch exec, never expected to trigger
PASS -> FAIL: gdb.base/sepdebug.exp: set catch fork, never expected to trigger
PASS -> FAIL: gdb.base/sepdebug.exp: set catch vfork, never expected to trigger
PASS -> FAIL: gdb.base/sepdebug.exp: set to-be-silent break bp_location1
PASS -> FAIL: gdb.base/sepdebug.exp: step onto breakpoint
PASS -> UNRESOLVED: gdb.base/sepdebug.exp: temporary breakpoint function
PASS -> FAIL: gdb.base/sepdebug.exp: temporary breakpoint line number #1
PASS -> FAIL: gdb.base/sepdebug.exp: temporary breakpoint line number #2
PASS -> FAIL: gdb.base/sepdebug.exp: temporary breakpoint line number in file #1
PASS -> FAIL: gdb.base/sepdebug.exp: until bp_location1
PASS -> UNRESOLVED: gdb.base/sepdebug.exp: use `list' to establish default source file
PASS -> UNRESOLVED: gdb.base/server-del-break.exp: break main
PASS -> UNRESOLVED: gdb.base/server-del-break.exp: info break
PASS -> UNRESOLVED: gdb.base/server-del-break.exp: server delete breakpoints
new FAIL: gdb.base/set-noassign.exp: can't run to main
new FAIL: gdb.base/setshow.exp: can't run to main
PASS -> UNRESOLVED: gdb.base/shlib-call.exp: breakpoint function shr2
PASS -> UNRESOLVED: gdb.base/shlib-call.exp: continue until exit
PASS -> UNRESOLVED: gdb.base/shlib-call.exp: next over shr1
PASS -> UNRESOLVED: gdb.base/shlib-call.exp: next to shr1
PASS -> UNRESOLVED: gdb.base/shlib-call.exp: print g
PASS -> UNRESOLVED: gdb.base/shlib-call.exp: print mainshr1
PASS -> UNRESOLVED: gdb.base/shlib-call.exp: print shr1
PASS -> UNRESOLVED: gdb.base/shlib-call.exp: run until breakpoint set at a function
new FAIL: gdb.base/shlib-call.exp: setting breakpoint at shr1
PASS -> UNRESOLVED: gdb.base/shlib-call.exp: step into mainshr1
PASS -> UNRESOLVED: gdb.base/shlib-call.exp: step out of shr2 to main
new FAIL: gdb.base/shreloc.exp: can't run to main
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to 33
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to 34
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to 35
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to 36
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to 37
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to 38
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to 39
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to 40
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to 41
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to 42
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to 43
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to 44
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to 45
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to 46
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to 47
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to 48
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to 49
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to 50
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to 51
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to 52
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to 53
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to 54
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to 55
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to 56
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to 57
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to 58
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to 59
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to 60
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to 61
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to 62
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to 63
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to ALRM
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to BUS
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to CHLD
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to CONT
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to DANGER
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to EMT
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to FPE
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to GRANT
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to HUP
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to ILL
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to IO
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to LOST
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to LWP
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to MSG
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to PHONE
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to PIPE
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to POLL
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to PRIO
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to PROF
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to PWR
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to QUIT
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to RETRACT
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to SAK
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to SEGV
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to SOUND
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to SYS
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to TERM
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to TSTP
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to TTIN
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to TTOU
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to URG
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to USR1
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to USR2
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to VTALRM
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to WAITING
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to WINCH
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to WIND
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to XCPU
PASS -> UNRESOLVED: gdb.base/sigall.exp: advance to XFSZ
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_33
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_34
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_35
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_36
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_37
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_38
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_39
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_40
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_41
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_42
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_43
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_44
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_45
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_46
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_47
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_48
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_49
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_50
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_51
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_52
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_53
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_54
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_55
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_56
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_57
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_58
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_59
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_60
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_61
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_62
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_63
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_ALRM
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_BUS
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_CHLD
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_CONT
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_DANGER
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_EMT
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_FPE
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_GRANT
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_HUP
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_ILL
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_IO
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_LOST
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_LWP
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_MSG
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_PHONE
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_PIPE
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_POLL
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_PRIO
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_PROF
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_PWR
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_QUIT
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_RETRACT
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_SAK
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_SEGV
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_SOUND
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_SYS
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_TERM
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_TSTP
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_TTIN
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_TTOU
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_URG
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_USR1
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_USR2
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_VTALRM
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_WAITING
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_WINCH
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_WIND
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_XCPU
PASS -> UNRESOLVED: gdb.base/sigall.exp: b gen_XFSZ
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_33
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_34
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_35
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_36
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_37
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_38
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_39
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_40
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_41
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_42
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_43
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_44
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_45
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_46
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_47
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_48
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_49
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_50
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_51
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_52
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_53
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_54
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_55
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_56
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_57
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_58
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_59
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_60
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_61
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_62
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_63
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_ABRT
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_ALRM
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_BUS
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_CHLD
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_CONT
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_DANGER
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_EMT
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_FPE
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_GRANT
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_HUP
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_ILL
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_IO
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_LOST
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_LWP
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_MSG
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_PHONE
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_PIPE
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_POLL
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_PRIO
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_PROF
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_PWR
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_QUIT
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_RETRACT
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_SAK
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_SEGV
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_SOUND
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_SYS
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_TERM
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_TSTP
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_TTIN
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_TTOU
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_URG
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_USR1
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_USR2
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_VTALRM
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_WAITING
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_WINCH
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_WIND
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_XCPU
PASS -> UNRESOLVED: gdb.base/sigall.exp: b handle_XFSZ
PASS -> UNRESOLVED: gdb.base/sigall.exp: continue until exit at continue to sigall exit
new UNRESOLVED: gdb.base/sigall.exp: get signal 33
new UNRESOLVED: gdb.base/sigall.exp: get signal 34
new UNRESOLVED: gdb.base/sigall.exp: get signal 35
new UNRESOLVED: gdb.base/sigall.exp: get signal 36
new UNRESOLVED: gdb.base/sigall.exp: get signal 37
new UNRESOLVED: gdb.base/sigall.exp: get signal 38
new UNRESOLVED: gdb.base/sigall.exp: get signal 39
new UNRESOLVED: gdb.base/sigall.exp: get signal 40
new UNRESOLVED: gdb.base/sigall.exp: get signal 41
new UNRESOLVED: gdb.base/sigall.exp: get signal 42
new UNRESOLVED: gdb.base/sigall.exp: get signal 43
new UNRESOLVED: gdb.base/sigall.exp: get signal 44
new UNRESOLVED: gdb.base/sigall.exp: get signal 45
new UNRESOLVED: gdb.base/sigall.exp: get signal 46
new UNRESOLVED: gdb.base/sigall.exp: get signal 47
new UNRESOLVED: gdb.base/sigall.exp: get signal 48
new UNRESOLVED: gdb.base/sigall.exp: get signal 49
new UNRESOLVED: gdb.base/sigall.exp: get signal 50
new UNRESOLVED: gdb.base/sigall.exp: get signal 51
new UNRESOLVED: gdb.base/sigall.exp: get signal 52
new UNRESOLVED: gdb.base/sigall.exp: get signal 53
new UNRESOLVED: gdb.base/sigall.exp: get signal 54
new UNRESOLVED: gdb.base/sigall.exp: get signal 55
new UNRESOLVED: gdb.base/sigall.exp: get signal 56
new UNRESOLVED: gdb.base/sigall.exp: get signal 57
new UNRESOLVED: gdb.base/sigall.exp: get signal 58
new UNRESOLVED: gdb.base/sigall.exp: get signal 59
new UNRESOLVED: gdb.base/sigall.exp: get signal 60
new UNRESOLVED: gdb.base/sigall.exp: get signal 61
new UNRESOLVED: gdb.base/sigall.exp: get signal 62
new UNRESOLVED: gdb.base/sigall.exp: get signal 63
PASS -> UNRESOLVED: gdb.base/sigall.exp: get signal ABRT
PASS -> UNRESOLVED: gdb.base/sigall.exp: get signal ALRM
PASS -> UNRESOLVED: gdb.base/sigall.exp: get signal BUS
PASS -> UNRESOLVED: gdb.base/sigall.exp: get signal CHLD
PASS -> UNRESOLVED: gdb.base/sigall.exp: get signal CONT
new UNRESOLVED: gdb.base/sigall.exp: get signal DANGER
new UNRESOLVED: gdb.base/sigall.exp: get signal EMT
PASS -> UNRESOLVED: gdb.base/sigall.exp: get signal FPE
new UNRESOLVED: gdb.base/sigall.exp: get signal GRANT
PASS -> UNRESOLVED: gdb.base/sigall.exp: get signal HUP
PASS -> UNRESOLVED: gdb.base/sigall.exp: get signal ILL
PASS -> UNRESOLVED: gdb.base/sigall.exp: get signal IO
new UNRESOLVED: gdb.base/sigall.exp: get signal LOST
new UNRESOLVED: gdb.base/sigall.exp: get signal LWP
new UNRESOLVED: gdb.base/sigall.exp: get signal MSG
new UNRESOLVED: gdb.base/sigall.exp: get signal PHONE
PASS -> UNRESOLVED: gdb.base/sigall.exp: get signal PIPE
new UNRESOLVED: gdb.base/sigall.exp: get signal POLL
new UNRESOLVED: gdb.base/sigall.exp: get signal PRIO
PASS -> UNRESOLVED: gdb.base/sigall.exp: get signal PROF
PASS -> UNRESOLVED: gdb.base/sigall.exp: get signal PWR
PASS -> UNRESOLVED: gdb.base/sigall.exp: get signal QUIT
new UNRESOLVED: gdb.base/sigall.exp: get signal RETRACT
new UNRESOLVED: gdb.base/sigall.exp: get signal SAK
PASS -> UNRESOLVED: gdb.base/sigall.exp: get signal SEGV
new UNRESOLVED: gdb.base/sigall.exp: get signal SOUND
PASS -> UNRESOLVED: gdb.base/sigall.exp: get signal SYS
PASS -> UNRESOLVED: gdb.base/sigall.exp: get signal TERM
PASS -> UNRESOLVED: gdb.base/sigall.exp: get signal TSTP
PASS -> UNRESOLVED: gdb.base/sigall.exp: get signal TTIN
PASS -> UNRESOLVED: gdb.base/sigall.exp: get signal TTOU
PASS -> UNRESOLVED: gdb.base/sigall.exp: get signal URG
PASS -> UNRESOLVED: gdb.base/sigall.exp: get signal USR1
PASS -> UNRESOLVED: gdb.base/sigall.exp: get signal USR2
PASS -> UNRESOLVED: gdb.base/sigall.exp: get signal VTALRM
new UNRESOLVED: gdb.base/sigall.exp: get signal WAITING
PASS -> UNRESOLVED: gdb.base/sigall.exp: get signal WINCH
new UNRESOLVED: gdb.base/sigall.exp: get signal WIND
PASS -> UNRESOLVED: gdb.base/sigall.exp: get signal XCPU
PASS -> UNRESOLVED: gdb.base/sigall.exp: get signal XFSZ
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIG33 stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIG34 stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIG35 stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIG36 stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIG37 stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIG38 stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIG39 stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIG40 stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIG41 stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIG42 stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIG43 stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIG44 stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIG45 stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIG46 stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIG47 stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIG48 stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIG49 stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIG50 stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIG51 stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIG52 stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIG53 stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIG54 stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIG55 stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIG56 stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIG57 stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIG58 stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIG59 stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIG60 stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIG61 stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIG62 stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIG63 stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGABRT stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGALRM stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGBUS stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGCHLD stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGCONT stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGDANGER stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGEMT stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGFPE stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGGRANT stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGHUP stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGILL stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGIO stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGLOST stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGLWP stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGMSG stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGPHONE stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGPIPE stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGPOLL stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGPRIO stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGPROF stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGPWR stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGQUIT stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGRETRACT stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGSAK stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGSEGV stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGSOUND stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGSYS stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGTERM stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGTSTP stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGTTIN stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGTTOU stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGURG stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGUSR1 stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGUSR2 stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGVTALRM stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGWAITING stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGWINCH stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGWIND stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGXCPU stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: handle SIGXFSZ stop print
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal 33
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal 34
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal 35
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal 36
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal 37
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal 38
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal 39
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal 40
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal 41
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal 42
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal 43
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal 44
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal 45
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal 46
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal 47
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal 48
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal 49
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal 50
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal 51
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal 52
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal 53
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal 54
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal 55
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal 56
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal 57
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal 58
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal 59
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal 60
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal 61
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal 62
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal 63
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal ABRT
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal ALRM
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal BUS
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal CHLD
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal CONT
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal DANGER
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal EMT
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal FPE
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal GRANT
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal HUP
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal ILL
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal IO
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal LOST
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal LWP
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal MSG
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal PHONE
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal PIPE
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal POLL
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal PRIO
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal PROF
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal PWR
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal QUIT
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal RETRACT
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal SAK
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal SEGV
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal SOUND
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal SYS
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal TERM
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal TSTP
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal TTIN
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal TTOU
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal URG
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal USR1
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal USR2
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal VTALRM
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal WAITING
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal WINCH
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal WIND
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal XCPU
PASS -> UNRESOLVED: gdb.base/sigall.exp: send signal XFSZ
new FAIL: gdb.base/sigaltstack.exp: can't run to main
new FAIL: gdb.base/sigbpt.exp: can't run to main
PASS -> UNRESOLVED: gdb.base/sigchld.exp: SIGCHLD blocked in inferior
PASS -> UNRESOLVED: gdb.base/sigchld.exp: set breakpoint at failure exit
PASS -> UNRESOLVED: gdb.base/sigchld.exp: set breakpoint at success exit
new FAIL: gdb.base/siginfo-addr.exp: can't run to main
new FAIL: gdb.base/siginfo-obj.exp: can't run to main
new FAIL: gdb.base/siginfo-thread.exp: can't run to main
new FAIL: gdb.base/siginfo.exp: can't run to main
new FAIL: gdb.base/signull.exp: can't run to main
new FAIL: gdb.base/sigrepeat.exp: can't run to main
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue over handler: advance to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue over handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue over handler: performing continue
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue over handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler entry: advance to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler entry: break handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler entry: performing continue
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler entry: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler, nothing in handler, continue from handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler, nothing in handler, continue from handler: break handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler, nothing in handler, continue from handler: continue to handler
new UNRESOLVED: gdb.base/sigstep.exp: continue to handler, nothing in handler, continue from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler, nothing in handler, continue from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler, nothing in handler, next from handler: break handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler, nothing in handler, next from handler: continue to handler
new UNRESOLVED: gdb.base/sigstep.exp: continue to handler, nothing in handler, next from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler, nothing in handler, next from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler, nothing in handler, step from handler: break handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler, nothing in handler, step from handler: continue to handler
new UNRESOLVED: gdb.base/sigstep.exp: continue to handler, nothing in handler, step from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler, nothing in handler, step from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler, si+advance in handler, continue from handler: advance in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler, si+advance in handler, continue from handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler, si+advance in handler, continue from handler: break handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler, si+advance in handler, continue from handler: continue to handler
new UNRESOLVED: gdb.base/sigstep.exp: continue to handler, si+advance in handler, continue from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler, si+advance in handler, continue from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler, si+advance in handler, continue from handler: si in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler, si+advance in handler, next from handler: advance in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler, si+advance in handler, next from handler: break handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler, si+advance in handler, next from handler: continue to handler
new UNRESOLVED: gdb.base/sigstep.exp: continue to handler, si+advance in handler, next from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler, si+advance in handler, next from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler, si+advance in handler, next from handler: si in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler, si+advance in handler, step from handler: advance in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler, si+advance in handler, step from handler: break handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler, si+advance in handler, step from handler: continue to handler
new UNRESOLVED: gdb.base/sigstep.exp: continue to handler, si+advance in handler, step from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler, si+advance in handler, step from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler, si+advance in handler, step from handler: si in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler: advance to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler: break handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler: performing continue
PASS -> UNRESOLVED: gdb.base/sigstep.exp: continue to handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, no handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, no handler: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, no handler: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, no handler: performing continue
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, no handler: set displaced-stepping off
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, no handler: set done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, no handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, no handler: set no_handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint, no handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint, no handler: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint, no handler: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint, no handler: performing continue
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint, no handler: set displaced-stepping off
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint, no handler: set done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint, no handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint, no handler: set no_handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint, no handler: watch $convenience
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint: performing continue
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint: set displaced-stepping off
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler, with sw-watchpoint: watch $convenience
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler: performing continue
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler: set displaced-stepping off
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, skip handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler entry: backtrace
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler entry: break handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler entry: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler entry: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler entry: performing continue
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler entry: set displaced-stepping off
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler entry: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler: backtrace
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler: break handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler: performing continue
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler: set displaced-stepping off
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, no handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, no handler: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, no handler: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, no handler: performing next
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, no handler: set displaced-stepping off
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, no handler: set done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, no handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, no handler: set no_handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint, no handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint, no handler: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint, no handler: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint, no handler: performing next
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint, no handler: set displaced-stepping off
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint, no handler: set done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint, no handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint, no handler: set no_handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint, no handler: watch $convenience
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint: performing next
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint: set displaced-stepping off
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler, with sw-watchpoint: watch $convenience
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler: performing next
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler: set displaced-stepping off
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, skip handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler entry: backtrace
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler entry: break handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler entry: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler entry: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler entry: performing next
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler entry: set displaced-stepping off
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler entry: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler: backtrace
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler: break handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler: performing next
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler: set displaced-stepping off
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, no handler: advanced
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, no handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, no handler: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, no handler: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, no handler: get next PC
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, no handler: performing nexti
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, no handler: set displaced-stepping off
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, no handler: set done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, no handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, no handler: set no_handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: advanced
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: get next PC
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: performing nexti
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: set displaced-stepping off
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: set done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: set no_handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: watch $convenience
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint: advanced
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint: get next PC
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint: performing nexti
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint: set displaced-stepping off
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler, with sw-watchpoint: watch $convenience
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler: advanced
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler: get next PC
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler: performing nexti
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler: set displaced-stepping off
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: nexti on breakpoint, skip handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, no handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, no handler: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, no handler: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, no handler: performing step
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, no handler: set displaced-stepping off
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, no handler: set done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, no handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, no handler: set no_handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint, no handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint, no handler: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint, no handler: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint, no handler: performing step
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint, no handler: set displaced-stepping off
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint, no handler: set done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint, no handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint, no handler: set no_handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint, no handler: watch $convenience
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint: performing step
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint: set displaced-stepping off
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler, with sw-watchpoint: watch $convenience
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler: performing step
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler: set displaced-stepping off
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, skip handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler entry: backtrace
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler entry: break handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler entry: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler entry: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler entry: performing step
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler entry: set displaced-stepping off
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler entry: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler: backtrace
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler: break handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler: performing step
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler: set displaced-stepping off
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, no handler: advanced
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, no handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, no handler: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, no handler: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, no handler: get next PC
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, no handler: performing stepi
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, no handler: set displaced-stepping off
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, no handler: set done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, no handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, no handler: set no_handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: advanced
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: get next PC
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: performing stepi
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: set displaced-stepping off
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: set done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: set no_handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: watch $convenience
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint: advanced
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint: get next PC
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint: performing stepi
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint: set displaced-stepping off
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, with sw-watchpoint: watch $convenience
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler: advanced
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler: get next PC
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler: performing stepi
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler: set displaced-stepping off
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, no handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, no handler: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, no handler: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, no handler: performing continue
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, no handler: set displaced-stepping on
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, no handler: set done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, no handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, no handler: set no_handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint, no handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint, no handler: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint, no handler: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint, no handler: performing continue
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint, no handler: set displaced-stepping on
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint, no handler: set done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint, no handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint, no handler: set no_handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint, no handler: watch $convenience
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint: performing continue
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint: set displaced-stepping on
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler, with sw-watchpoint: watch $convenience
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler: performing continue
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler: set displaced-stepping on
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, skip handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler entry: backtrace
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler entry: break handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler entry: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler entry: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler entry: performing continue
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler entry: set displaced-stepping on
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler entry: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler: backtrace
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler: break handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler: performing continue
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler: set displaced-stepping on
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, no handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, no handler: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, no handler: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, no handler: performing next
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, no handler: set displaced-stepping on
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, no handler: set done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, no handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, no handler: set no_handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint, no handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint, no handler: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint, no handler: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint, no handler: performing next
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint, no handler: set displaced-stepping on
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint, no handler: set done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint, no handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint, no handler: set no_handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint, no handler: watch $convenience
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint: performing next
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint: set displaced-stepping on
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler, with sw-watchpoint: watch $convenience
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler: performing next
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler: set displaced-stepping on
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, skip handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler entry: backtrace
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler entry: break handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler entry: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler entry: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler entry: performing next
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler entry: set displaced-stepping on
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler entry: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler: backtrace
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler: break handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler: performing next
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler: set displaced-stepping on
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, no handler: advanced
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, no handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, no handler: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, no handler: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, no handler: get next PC
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, no handler: performing nexti
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, no handler: set displaced-stepping on
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, no handler: set done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, no handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, no handler: set no_handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: advanced
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: get next PC
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: performing nexti
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: set displaced-stepping on
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: set done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: set no_handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint, no handler: watch $convenience
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint: advanced
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint: get next PC
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint: performing nexti
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint: set displaced-stepping on
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler, with sw-watchpoint: watch $convenience
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler: advanced
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler: get next PC
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler: performing nexti
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler: set displaced-stepping on
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: nexti on breakpoint, skip handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, no handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, no handler: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, no handler: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, no handler: performing step
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, no handler: set displaced-stepping on
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, no handler: set done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, no handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, no handler: set no_handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint, no handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint, no handler: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint, no handler: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint, no handler: performing step
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint, no handler: set displaced-stepping on
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint, no handler: set done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint, no handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint, no handler: set no_handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint, no handler: watch $convenience
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint: performing step
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint: set displaced-stepping on
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler, with sw-watchpoint: watch $convenience
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler: performing step
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler: set displaced-stepping on
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, skip handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler entry: backtrace
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler entry: break handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler entry: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler entry: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler entry: performing step
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler entry: set displaced-stepping on
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler entry: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler: backtrace
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler: break handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler: performing step
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler: set displaced-stepping on
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, no handler: advanced
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, no handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, no handler: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, no handler: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, no handler: get next PC
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, no handler: performing stepi
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, no handler: set displaced-stepping on
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, no handler: set done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, no handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, no handler: set no_handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: advanced
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: get next PC
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: performing stepi
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: set displaced-stepping on
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: set done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: set no_handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint, no handler: watch $convenience
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint: advanced
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint: get next PC
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint: performing stepi
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint: set displaced-stepping on
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler, with sw-watchpoint: watch $convenience
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler: advanced
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler: break infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler: continue to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler: get next PC
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler: performing stepi
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler: set displaced-stepping on
PASS -> UNRESOLVED: gdb.base/sigstep.exp: displaced=on: stepi on breakpoint, skip handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: finish from handleri: break handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: finish from handleri: continue to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: finish from handleri: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: finish from handleri: leave signal trampoline
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next over handler: advance to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next over handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next over handler: performing next
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next over handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler entry: advance to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler entry: break handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler entry: performing next
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler entry: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, nothing in handler, continue from handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, nothing in handler, continue from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: next to handler, nothing in handler, continue from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, nothing in handler, continue from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, nothing in handler, continue from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, nothing in handler, continue from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, nothing in handler, continue from handler: next to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, nothing in handler, next from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: next to handler, nothing in handler, next from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, nothing in handler, next from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, nothing in handler, next from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, nothing in handler, next from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, nothing in handler, next from handler: next to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, nothing in handler, step from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: next to handler, nothing in handler, step from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, nothing in handler, step from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, nothing in handler, step from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, nothing in handler, step from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, nothing in handler, step from handler: next to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, si+advance in handler, continue from handler: advance in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, si+advance in handler, continue from handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, si+advance in handler, continue from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: next to handler, si+advance in handler, continue from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, si+advance in handler, continue from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, si+advance in handler, continue from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, si+advance in handler, continue from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, si+advance in handler, continue from handler: next to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, si+advance in handler, continue from handler: si in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, si+advance in handler, next from handler: advance in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, si+advance in handler, next from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: next to handler, si+advance in handler, next from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, si+advance in handler, next from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, si+advance in handler, next from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, si+advance in handler, next from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, si+advance in handler, next from handler: next to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, si+advance in handler, next from handler: si in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, si+advance in handler, step from handler: advance in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, si+advance in handler, step from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: next to handler, si+advance in handler, step from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, si+advance in handler, step from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, si+advance in handler, step from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, si+advance in handler, step from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, si+advance in handler, step from handler: next to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler, si+advance in handler, step from handler: si in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler: advance to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler: break handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler: performing next
PASS -> UNRESOLVED: gdb.base/sigstep.exp: next to handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti from handleri: break handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti from handleri: continue to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti from handleri: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti from handleri: leave signal trampoline
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti over handler: advance to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti over handler: advanced
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti over handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti over handler: get next PC
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti over handler: performing nexti
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti over handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler entry: advance to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler entry: break handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler entry: performing nexti
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler entry: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, continue from handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, continue from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, continue from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, continue from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, continue from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, continue from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, continue from handler: nexti to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, next from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, next from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, next from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, next from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, next from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, next from handler: nexti to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, step from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, step from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, step from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, step from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, step from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, step from handler: nexti to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, continue from handler: advance in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, continue from handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, continue from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, continue from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, continue from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, continue from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, continue from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, continue from handler: nexti to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, continue from handler: si in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, next from handler: advance in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, next from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, next from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, next from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, next from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, next from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, next from handler: nexti to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, next from handler: si in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, step from handler: advance in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, step from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, step from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, step from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, step from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, step from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, step from handler: nexti to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, step from handler: si in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: return from handleri: break handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: return from handleri: continue to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: return from handleri: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: return from handleri: leave signal trampoline
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step over handler: advance to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step over handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step over handler: performing step
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step over handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler entry: advance to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler entry: break handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler entry: performing step
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler entry: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, nothing in handler, continue from handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, nothing in handler, continue from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: step to handler, nothing in handler, continue from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, nothing in handler, continue from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, nothing in handler, continue from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, nothing in handler, continue from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, nothing in handler, continue from handler: step to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, nothing in handler, next from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: step to handler, nothing in handler, next from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, nothing in handler, next from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, nothing in handler, next from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, nothing in handler, next from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, nothing in handler, next from handler: step to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, nothing in handler, step from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: step to handler, nothing in handler, step from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, nothing in handler, step from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, nothing in handler, step from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, nothing in handler, step from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, nothing in handler, step from handler: step to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, si+advance in handler, continue from handler: advance in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, si+advance in handler, continue from handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, si+advance in handler, continue from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: step to handler, si+advance in handler, continue from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, si+advance in handler, continue from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, si+advance in handler, continue from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, si+advance in handler, continue from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, si+advance in handler, continue from handler: si in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, si+advance in handler, continue from handler: step to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, si+advance in handler, next from handler: advance in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, si+advance in handler, next from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: step to handler, si+advance in handler, next from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, si+advance in handler, next from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, si+advance in handler, next from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, si+advance in handler, next from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, si+advance in handler, next from handler: si in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, si+advance in handler, next from handler: step to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, si+advance in handler, step from handler: advance in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, si+advance in handler, step from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: step to handler, si+advance in handler, step from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, si+advance in handler, step from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, si+advance in handler, step from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, si+advance in handler, step from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, si+advance in handler, step from handler: si in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler, si+advance in handler, step from handler: step to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler: advance to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler: break handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler: performing step
PASS -> UNRESOLVED: gdb.base/sigstep.exp: step to handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi from handleri: break handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi from handleri: continue to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi from handleri: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi from handleri: leave signal trampoline
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi over handler: advance to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi over handler: advanced
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi over handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi over handler: get next PC
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi over handler: performing stepi
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi over handler: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler entry: advance to infinite loop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler entry: break handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler entry: performing stepi
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler entry: set itimer = itimer_real
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, continue from handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, continue from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, continue from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, continue from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, continue from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, continue from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, continue from handler: stepi to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, next from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, next from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, next from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, next from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, next from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, next from handler: stepi to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, step from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, step from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, step from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, step from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, step from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, step from handler: stepi to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: advance in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: si in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: stepi to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, next from handler: advance in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, next from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, next from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, next from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, next from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, next from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, next from handler: si in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, next from handler: stepi to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, step from handler: advance in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, step from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, step from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, step from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, step from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, step from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, step from handler: si in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, step from handler: stepi to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: validate backtrace: backtrace for nexti
PASS -> UNRESOLVED: gdb.base/sigstep.exp: validate backtrace: break handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: validate backtrace: continue to stepi handler
PASS -> UNRESOLVED: gdb.base/skip-solib.exp: bt
PASS -> UNRESOLVED: gdb.base/skip-solib.exp: info skip for function multiply
new FAIL: gdb.base/skip-solib.exp: skip tests suppressed
PASS -> UNRESOLVED: gdb.base/skip-solib.exp: step
PASS -> UNRESOLVED: gdb.base/skip-solib.exp: step after ignoring solib file.
new FAIL: gdb.base/skip.exp: can't run to main
new FAIL: gdb.base/so-impl-ld.exp: implicit solibs tests suppressed
PASS -> UNRESOLVED: gdb.base/so-impl-ld.exp: step in solib call
PASS -> UNRESOLVED: gdb.base/so-impl-ld.exp: step into solib call
PASS -> UNRESOLVED: gdb.base/so-impl-ld.exp: step out of solib call
PASS -> UNRESOLVED: gdb.base/so-impl-ld.exp: step over solib call
new FAIL: gdb.base/solib-corrupted.exp: can't run to main
new FAIL: gdb.base/solib-disc.exp: can't run to main
new UNRESOLVED: gdb.base/solib-probes-nosharedlibrary.exp: could not run to initial instruction
new FAIL: gdb.base/solib-search.exp: can't run to main
new UNRESOLVED: gdb.base/solib-symbol.exp: can't run to main
new UNRESOLVED: gdb.base/solib-symbol.exp: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/solib-symbol.exp: foo2 in main
new FAIL: gdb.base/solib-vanish.exp: can't run to main
PASS -> UNRESOLVED: gdb.base/solib-weak.exp: run to breakpoint - lib1 debug, lib2 debug, lib1 first
PASS -> UNRESOLVED: gdb.base/solib-weak.exp: run to breakpoint - lib1 debug, lib2 debug, lib2 first
PASS -> UNRESOLVED: gdb.base/solib-weak.exp: run to breakpoint - lib1 debug, lib2 nodebug, lib1 first
PASS -> UNRESOLVED: gdb.base/solib-weak.exp: run to breakpoint - lib1 debug, lib2 nodebug, lib2 first
PASS -> UNRESOLVED: gdb.base/solib-weak.exp: run to breakpoint - lib1 nodebug, lib2 debug, lib1 first
PASS -> UNRESOLVED: gdb.base/solib-weak.exp: run to breakpoint - lib1 nodebug, lib2 debug, lib2 first
PASS -> UNRESOLVED: gdb.base/solib-weak.exp: run to breakpoint - lib1 nodebug, lib2 nodebug, lib1 first
PASS -> UNRESOLVED: gdb.base/solib-weak.exp: run to breakpoint - lib1 nodebug, lib2 nodebug, lib2 first
new UNRESOLVED: gdb.base/solib-weak.exp: setting breakpoint at bar
new FAIL: gdb.base/source-dir.exp: can't run to main
new FAIL: gdb.base/source-execution.exp: can't run to main
new FAIL: gdb.base/sss-bp-on-user-bp-2.exp: can't run to main
new FAIL: gdb.base/sss-bp-on-user-bp.exp: can't run to main
new FAIL: gdb.base/stack-checking.exp: can't run to main
new FAIL: gdb.base/stack-protector.exp: protection=-fno-stack-protector: can't run to main
new FAIL: gdb.base/stack-protector.exp: protection=-fstack-protector-all: can't run to main
new FAIL: gdb.base/stack-protector.exp: protection=-fstack-protector-strong: can't run to main
new FAIL: gdb.base/stack-protector.exp: protection=-fstack-protector: can't run to main
new FAIL: gdb.base/step-break.exp: can't run to main
PASS -> UNRESOLVED: gdb.base/step-bt.exp: backtrace after first instruction step
PASS -> UNRESOLVED: gdb.base/step-bt.exp: backtrace after second instruction step
PASS -> UNRESOLVED: gdb.base/step-bt.exp: breakpoint at first instruction of hello
PASS -> UNRESOLVED: gdb.base/step-bt.exp: step first instruction
PASS -> UNRESOLVED: gdb.base/step-bt.exp: step second instruction
new FAIL: gdb.base/step-line.exp: can't run to main
new FAIL: gdb.base/step-over-exit.exp: can't run to main
new FAIL: gdb.base/step-over-no-symbols.exp: displaced=auto: couldn't run to main
new FAIL: gdb.base/step-over-no-symbols.exp: displaced=off: couldn't run to main
new FAIL: gdb.base/step-over-no-symbols.exp: displaced=on: couldn't run to main
new FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: run to main
new FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: run to main
new FAIL: gdb.base/step-over-syscall.exp: run to main
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: run to main
new FAIL: gdb.base/step-test.exp: can't run to main
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for finish; return 1 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for finish; return 1 structs-td
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for finish; return 1 structs-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for finish; return 1 structs-ti
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for finish; return 1 structs-tl
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for finish; return 1 structs-tld
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for finish; return 1 structs-tll
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for finish; return 1 structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-tc-ti
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-tc-tl
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-tc-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-td-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-tf-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-tf-td
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-ti
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-ti-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-tl
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-tl-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-ts-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for finish; return 3 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for finish; return 3 structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for finish; return 4 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for finish; return 4 structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for finish; return 5 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for finish; return 6 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for finish; return 7 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for finish; return 8 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for return; return 1 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for return; return 1 structs-td
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for return; return 1 structs-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for return; return 1 structs-ti
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for return; return 1 structs-tl
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for return; return 1 structs-tld
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for return; return 1 structs-tll
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for return; return 1 structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-tc-ti
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-tc-tl
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-tc-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-td-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-tf-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-tf-td
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-ti
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-ti-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-tl
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-tl-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-ts-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for return; return 3 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for return; return 3 structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for return; return 4 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for return; return 4 structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for return; return 5 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for return; return 6 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for return; return 7 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: advance to fun<n> for return; return 8 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: call Fun<n>
PASS -> UNRESOLVED: gdb.base/structs.exp: continue to breakpoint: chartest-done
PASS -> UNRESOLVED: gdb.base/structs.exp: finish foo<n>; return 1 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: finish foo<n>; return 1 structs-td
PASS -> UNRESOLVED: gdb.base/structs.exp: finish foo<n>; return 1 structs-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: finish foo<n>; return 1 structs-ti
PASS -> UNRESOLVED: gdb.base/structs.exp: finish foo<n>; return 1 structs-tl
PASS -> UNRESOLVED: gdb.base/structs.exp: finish foo<n>; return 1 structs-tld
PASS -> UNRESOLVED: gdb.base/structs.exp: finish foo<n>; return 1 structs-tll
PASS -> UNRESOLVED: gdb.base/structs.exp: finish foo<n>; return 1 structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: finish foo<n>; return 2 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: finish foo<n>; return 2 structs-tc-ti
PASS -> UNRESOLVED: gdb.base/structs.exp: finish foo<n>; return 2 structs-tc-tl
PASS -> UNRESOLVED: gdb.base/structs.exp: finish foo<n>; return 2 structs-tc-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: finish foo<n>; return 2 structs-td-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: finish foo<n>; return 2 structs-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: finish foo<n>; return 2 structs-tf-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: finish foo<n>; return 2 structs-tf-td
PASS -> UNRESOLVED: gdb.base/structs.exp: finish foo<n>; return 2 structs-ti
PASS -> UNRESOLVED: gdb.base/structs.exp: finish foo<n>; return 2 structs-ti-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: finish foo<n>; return 2 structs-tl
PASS -> UNRESOLVED: gdb.base/structs.exp: finish foo<n>; return 2 structs-tl-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: finish foo<n>; return 2 structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: finish foo<n>; return 2 structs-ts-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: finish foo<n>; return 3 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: finish foo<n>; return 3 structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: finish foo<n>; return 4 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: finish foo<n>; return 4 structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: finish foo<n>; return 5 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: finish foo<n>; return 6 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: finish foo<n>; return 7 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: finish foo<n>; return 8 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p chartest
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 1 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 1 structs-td
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 1 structs-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 1 structs-ti
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 1 structs-tl
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 1 structs-tld
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 1 structs-tll
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 1 structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 10 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 11 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 12 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 13 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 14 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 15 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 16 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 17 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 2 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 2 structs-tc-td
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 2 structs-tc-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 2 structs-tc-ti
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 2 structs-tc-tl
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 2 structs-tc-tld
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 2 structs-tc-tll
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 2 structs-tc-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 2 structs-td
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 2 structs-td-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 2 structs-td-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 2 structs-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 2 structs-tf-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 2 structs-tf-td
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 2 structs-ti
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 2 structs-ti-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 2 structs-tl
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 2 structs-tl-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 2 structs-tld
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 2 structs-tld-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 2 structs-tll
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 2 structs-tll-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 2 structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 2 structs-ts-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 3 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 3 structs-tc-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 3 structs-tc-ti
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 3 structs-tc-tl
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 3 structs-tc-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 3 structs-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 3 structs-tf-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 3 structs-ti
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 3 structs-ti-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 3 structs-tl
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 3 structs-tl-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 3 structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 3 structs-ts-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 4 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 4 structs-tc-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 4 structs-tc-ti
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 4 structs-tc-tl
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 4 structs-tc-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 4 structs-tf-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 4 structs-ti-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 4 structs-tl-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 4 structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 4 structs-ts-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 5 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 5 structs-tc-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 5 structs-tf-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 5 structs-ti-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 5 structs-tl-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 5 structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 5 structs-ts-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 6 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 6 structs-tc-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 6 structs-tf-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 6 structs-ti-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 6 structs-tl-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 6 structs-ts-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 7 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 7 structs-ts-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 8 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 8 structs-ts-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c L<n>; call 9 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: p/c fun<n>
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo1; structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo1; structs-td
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo1; structs-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo1; structs-ti
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo1; structs-tl
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo1; structs-tld
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo1; structs-tll
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo1; structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-tc-td
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-tc-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-tc-ti
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-tc-tl
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-tc-tld
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-tc-tll
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-tc-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-td-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-td-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-tf-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-tf-td
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-ti-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-tl-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-tld-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-tll-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: ptype foo2; structs-ts-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: return foo<n>; return 1 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: return foo<n>; return 1 structs-td
PASS -> UNRESOLVED: gdb.base/structs.exp: return foo<n>; return 1 structs-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: return foo<n>; return 1 structs-ti
PASS -> UNRESOLVED: gdb.base/structs.exp: return foo<n>; return 1 structs-tl
PASS -> UNRESOLVED: gdb.base/structs.exp: return foo<n>; return 1 structs-tld
PASS -> UNRESOLVED: gdb.base/structs.exp: return foo<n>; return 1 structs-tll
PASS -> UNRESOLVED: gdb.base/structs.exp: return foo<n>; return 1 structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: return foo<n>; return 2 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: return foo<n>; return 2 structs-tc-ti
PASS -> UNRESOLVED: gdb.base/structs.exp: return foo<n>; return 2 structs-tc-tl
PASS -> UNRESOLVED: gdb.base/structs.exp: return foo<n>; return 2 structs-tc-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: return foo<n>; return 2 structs-td-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: return foo<n>; return 2 structs-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: return foo<n>; return 2 structs-tf-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: return foo<n>; return 2 structs-tf-td
PASS -> UNRESOLVED: gdb.base/structs.exp: return foo<n>; return 2 structs-ti
PASS -> UNRESOLVED: gdb.base/structs.exp: return foo<n>; return 2 structs-ti-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: return foo<n>; return 2 structs-tl
PASS -> UNRESOLVED: gdb.base/structs.exp: return foo<n>; return 2 structs-tl-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: return foo<n>; return 2 structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: return foo<n>; return 2 structs-ts-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: return foo<n>; return 3 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: return foo<n>; return 3 structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: return foo<n>; return 4 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: return foo<n>; return 4 structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: return foo<n>; return 5 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: return foo<n>; return 6 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: return foo<n>; return 7 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: return foo<n>; return 8 structs-tc
new UNRESOLVED: gdb.base/structs.exp: setting breakpoint at 318
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> finished; return 1 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> finished; return 1 structs-td
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> finished; return 1 structs-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> finished; return 1 structs-ti
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> finished; return 1 structs-tl
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> finished; return 1 structs-tld
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> finished; return 1 structs-tll
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> finished; return 1 structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> finished; return 2 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> finished; return 2 structs-tc-ti
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> finished; return 2 structs-tc-tl
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> finished; return 2 structs-tc-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> finished; return 2 structs-td-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> finished; return 2 structs-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> finished; return 2 structs-tf-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> finished; return 2 structs-tf-td
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> finished; return 2 structs-ti
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> finished; return 2 structs-ti-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> finished; return 2 structs-tl
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> finished; return 2 structs-tl-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> finished; return 2 structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> finished; return 2 structs-ts-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> finished; return 3 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> finished; return 3 structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> finished; return 4 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> finished; return 4 structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> finished; return 5 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> finished; return 6 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> finished; return 7 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> finished; return 8 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> returned; return 1 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> returned; return 1 structs-td
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> returned; return 1 structs-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> returned; return 1 structs-ti
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> returned; return 1 structs-tl
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> returned; return 1 structs-tld
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> returned; return 1 structs-tll
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> returned; return 1 structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> returned; return 2 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> returned; return 2 structs-tc-ti
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> returned; return 2 structs-tc-tl
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> returned; return 2 structs-tc-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> returned; return 2 structs-td-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> returned; return 2 structs-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> returned; return 2 structs-tf-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> returned; return 2 structs-tf-td
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> returned; return 2 structs-ti
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> returned; return 2 structs-ti-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> returned; return 2 structs-tl
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> returned; return 2 structs-tl-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> returned; return 2 structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> returned; return 2 structs-ts-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> returned; return 3 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> returned; return 3 structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> returned; return 4 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> returned; return 4 structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> returned; return 5 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> returned; return 6 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> returned; return 7 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: value foo<n> returned; return 8 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for finish; return 1 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for finish; return 1 structs-td
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for finish; return 1 structs-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for finish; return 1 structs-ti
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for finish; return 1 structs-tl
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for finish; return 1 structs-tld
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for finish; return 1 structs-tll
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for finish; return 1 structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-tc-ti
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-tc-tl
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-tc-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-td-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-tf-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-tf-td
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-ti
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-ti-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-tl
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-tl-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-ts-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for finish; return 3 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for finish; return 3 structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for finish; return 4 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for finish; return 4 structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for finish; return 5 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for finish; return 6 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for finish; return 7 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for finish; return 8 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for return; return 1 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for return; return 1 structs-td
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for return; return 1 structs-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for return; return 1 structs-ti
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for return; return 1 structs-tl
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for return; return 1 structs-tld
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for return; return 1 structs-tll
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for return; return 1 structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for return; return 2 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for return; return 2 structs-tc-ti
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for return; return 2 structs-tc-tl
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for return; return 2 structs-tc-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for return; return 2 structs-td-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for return; return 2 structs-tf
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for return; return 2 structs-tf-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for return; return 2 structs-tf-td
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for return; return 2 structs-ti
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for return; return 2 structs-ti-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for return; return 2 structs-tl
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for return; return 2 structs-tl-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for return; return 2 structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for return; return 2 structs-ts-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for return; return 3 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for return; return 3 structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for return; return 4 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for return; return 4 structs-ts
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for return; return 5 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for return; return 6 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for return; return 7 structs-tc
PASS -> UNRESOLVED: gdb.base/structs.exp: zed L<n> for return; return 8 structs-tc
new FAIL: gdb.base/structs2.exp: can't run to main
new FAIL: gdb.base/style-logging.exp: style tests failed
new FAIL: gdb.base/style.exp: style tests failed
new FAIL: gdb.base/sym-file.exp: can't run to main
new FAIL: gdb.base/symbol-alias.exp: can't run to main
PASS -> UNRESOLVED: gdb.base/symbol-without-target_section.exp: list main
PASS -> UNRESOLVED: gdb.base/symbol-without-target_section.exp: print symbol_without_target_section
new FAIL: gdb.base/symtab-search-order.exp: can't run to main
new FAIL: gdb.base/term.exp: can't run to break_here
new FAIL: gdb.base/type-opaque.exp: can't run to main
new FAIL: gdb.base/ui-redirect.exp: can't run to main
PASS -> UNRESOLVED: gdb.base/unload.exp: continue to shrfunc2
PASS -> UNRESOLVED: gdb.base/unload.exp: continuing to unloaded libfile
PASS -> UNRESOLVED: gdb.base/unload.exp: continuing to unloaded libfile2
PASS -> UNRESOLVED: gdb.base/unload.exp: pending breakpoint info on first run at shrfunc1
PASS -> UNRESOLVED: gdb.base/unload.exp: pending breakpoint info on second run at shrfunc1
PASS -> UNRESOLVED: gdb.base/unload.exp: pending breakpoint info on second run at shrfunc2
PASS -> UNRESOLVED: gdb.base/unload.exp: print y from libfile
PASS -> UNRESOLVED: gdb.base/unload.exp: print y from libfile2
new UNRESOLVED: gdb.base/unload.exp: setting breakpoint at unload.c:66
new UNRESOLVED: gdb.base/unload.exp: setting breakpoint at unload.c:93
new FAIL: gdb.base/until-nodebug.exp: can't run to main
new FAIL: gdb.base/until.exp: can't run to main
new FAIL: gdb.base/unwindonsignal.exp: can't run to main
new FAIL: gdb.base/utf8-identifiers.exp: couldn't run to done
PASS -> UNRESOLVED: gdb.base/vdso-warning.exp: core: save a corefile
PASS -> UNRESOLVED: gdb.base/vdso-warning.exp: run: no vdso without symbols is listed
PASS -> UNRESOLVED: gdb.base/vdso-warning.exp: setup: set environment LD_DEBUG=unused
new FAIL: gdb.base/vdso-warning.exp: setup: setting breakpoint at main
new FAIL: gdb.base/vla-optimized-out.exp: o1: can't run to f1
new FAIL: gdb.base/vla-optimized-out.exp: o3: can't run to f1
new FAIL: gdb.base/vla-optimized-out.exp: o3_strict: can't run to f1
PASS -> UNRESOLVED: gdb.base/vla-stub.exp: p *local_struct.ptr
PASS -> UNRESOLVED: gdb.base/vla-stub.exp: whatis *local_struct.ptr
PASS -> UNRESOLVED: gdb.base/vla-stub.exp: whatis local_struct.here
new UNRESOLVED: gdb.base/watch-bitfields.exp: regular watch against bitfields: delete all breakpoints in delete_breakpoints
new FAIL: gdb.base/watch-cond-infcall.exp: hw: run to main
new FAIL: gdb.base/watch-cond-infcall.exp: sw: run to main
new FAIL: gdb.base/watch-cond.exp: can't run to main
new FAIL: gdb.base/watch-non-mem.exp: can't run to main
new FAIL: gdb.base/watch-read.exp: run to main
new FAIL: gdb.base/watch-vfork.exp: run to main
new FAIL: gdb.base/watch_thread_num.exp: run to main
new FAIL: gdb.base/watchpoint-reuse-slot.exp: can't run to main
new UNRESOLVED: gdb.base/watchpoint-solib.exp:
PASS -> UNRESOLVED: gdb.base/watchpoint-solib.exp: continue to foo
PASS -> UNRESOLVED: gdb.base/watchpoint-solib.exp: continue to foo again
PASS -> UNRESOLVED: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> UNRESOLVED: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
PASS -> UNRESOLVED: gdb.base/watchpoint-solib.exp: set pending breakpoint
PASS -> UNRESOLVED: gdb.base/watchpoint-solib.exp: set watchpoint on g
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: run to main
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: awatch disallowed when can-set-hw-watchpoints cleared
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: continue with watch -location
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: continue with watch foo4
new UNRESOLVED: gdb.base/watchpoint.exp: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: delete watch -location
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: delete watch buf
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: delete watch foo2
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: delete watch foo4
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: delete watch ival3
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: delete watch w/condition and thread
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: delete watchpoint `$pc'
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: delete watchpoint `7 + count'
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: delete watchpoint `count + 6'
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: disable fast watches
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: marker1 is constant
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: no-hw: continue to breakpoint: func5 breakpoint here
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: no-hw: continue to breakpoint: func6 breakpoint here
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: no-hw: continue to breakpoint: func7 breakpoint here
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: no-hw: continue with watch -location
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: no-hw: continue with watch foo2
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: no-hw: continue with watch foo4
new UNRESOLVED: gdb.base/watchpoint.exp: no-hw: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: no-hw: delete watch -location
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: no-hw: delete watch buf
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: no-hw: delete watch foo2
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: no-hw: delete watch foo4
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: no-hw: delete watchpoint `$pc'
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: no-hw: delete watchpoint `7 + count'
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: no-hw: delete watchpoint `count + 6'
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: no-hw: disable watchpoint `$pc'
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: no-hw: marker1 is constant
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: no-hw: number is constant
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: no-hw: number with cast is constant
new UNRESOLVED: gdb.base/watchpoint.exp: no-hw: p *nullptr
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: no-hw: reenable watchpoint `$pc'
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: no-hw: set breakpoint at marker1
new UNRESOLVED: gdb.base/watchpoint.exp: no-hw: setting breakpoint at 151
new UNRESOLVED: gdb.base/watchpoint.exp: no-hw: setting breakpoint at 159
new UNRESOLVED: gdb.base/watchpoint.exp: no-hw: setting breakpoint at 167
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: no-hw: watch $pc
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: no-hw: watch -location .x
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: no-hw: watch 7 + count
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: no-hw: watch buf
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: no-hw: watch count + 6
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: no-hw: watch foo2
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: no-hw: watch foo4
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: no-hw: watchpoint `$pc' is enabled
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: number is constant
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: number with cast is constant
new UNRESOLVED: gdb.base/watchpoint.exp: p *nullptr
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: rwatch disallowed when can-set-hw-watchpoints cleared
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: set breakpoint at marker1
new UNRESOLVED: gdb.base/watchpoint.exp: set can-use-hw-watchpoints 1
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: set slow condition watch w/thread
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: set slow conditional watch
new UNRESOLVED: gdb.base/watchpoint.exp: setting breakpoint at 151
new UNRESOLVED: gdb.base/watchpoint.exp: setting breakpoint at 159
new UNRESOLVED: gdb.base/watchpoint.exp: setting breakpoint at 167
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: show disable fast watches
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: trigger slow conditional watch
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: watch $pc
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: watch -location .x
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: watch 7 + count
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: watch buf
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: watch count + 6
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: watch foo2
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: watch foo4
new FAIL: gdb.base/watchpoint.exp: watch tests suppressed
PASS -> UNRESOLVED: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
new UNRESOLVED: gdb.base/watchpoints.exp: disable 2
new UNRESOLVED: gdb.base/watchpoints.exp: watch ival1
new UNRESOLVED: gdb.base/watchpoints.exp: watch ival3
PASS -> UNRESOLVED: gdb.base/watchpoints.exp: watchpoint hit count is 1
PASS -> UNRESOLVED: gdb.base/watchpoints.exp: watchpoint hit count is 2
PASS -> UNRESOLVED: gdb.base/watchpoints.exp: watchpoint hit count is 3
PASS -> UNRESOLVED: gdb.base/watchpoints.exp: watchpoint hit count is 4
PASS -> UNRESOLVED: gdb.base/watchpoints.exp: watchpoint hit count is 5
PASS -> UNRESOLVED: gdb.base/watchpoints.exp: watchpoint hit, fifth time
PASS -> UNRESOLVED: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> UNRESOLVED: gdb.base/watchpoints.exp: watchpoint hit, fourth time
PASS -> UNRESOLVED: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> UNRESOLVED: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> UNRESOLVED: gdb.base/watchpoints.exp: watchpoint ival1 hit count is 2
PASS -> UNRESOLVED: gdb.base/watchpoints.exp: watchpoint ival1 hit count is 3
PASS -> UNRESOLVED: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> UNRESOLVED: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
new FAIL: gdb.base/whatis-ptype-typedefs.exp: lang=c++: can't run to main
new FAIL: gdb.base/whatis-ptype-typedefs.exp: lang=c: can't run to main
new FAIL: gdb.base/with.exp: run control: cannot run to main
PASS -> UNRESOLVED: gdb.base/write_mem.exp: x /xh main
new FAIL: gdb.compile/compile-tls.exp: can't run to main
PASS -> UNRESOLVED: gdb.cp/bool.exp: print return_false
PASS -> UNRESOLVED: gdb.cp/bool.exp: print return_true
PASS -> UNRESOLVED: gdb.cp/call-c.exp: b 42
PASS -> UNRESOLVED: gdb.cp/call-c.exp: continue to bp
PASS -> UNRESOLVED: gdb.cp/call-c.exp: print foo
PASS -> UNRESOLVED: gdb.cp/call-c.exp: print handle->func
PASS -> UNRESOLVED: gdb.cp/call-c.exp: print rf->func
PASS -> UNRESOLVED: gdb.cp/cmpd-minsyms.exp: set language c++
PASS -> UNRESOLVED: gdb.cp/cmpd-minsyms.exp: setting breakpoint at "int GDB<char>::even_harder<int>
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at 'GDB<int>::a
PASS -> UNRESOLVED: gdb.cp/cmpd-minsyms.exp: setting breakpoint at 'GDB<int>::b
PASS -> UNRESOLVED: gdb.cp/cmpd-minsyms.exp: setting breakpoint at 'GDB<int>::c
PASS -> UNRESOLVED: gdb.cp/cmpd-minsyms.exp: setting breakpoint at GDB<char>::harder
PASS -> UNRESOLVED: gdb.cp/cmpd-minsyms.exp: setting breakpoint at GDB<int>::harder
PASS -> UNRESOLVED: gdb.cp/cmpd-minsyms.exp: setting breakpoint at GDB<int>::operator ==
PASS -> UNRESOLVED: gdb.cp/cmpd-minsyms.exp: setting breakpoint at GDB<int>::operator==
PASS -> UNRESOLVED: gdb.cp/cmpd-minsyms.exp: setting breakpoint at GDB<int>::simple
PASS -> UNRESOLVED: gdb.cp/cp-relocate.exp: info functions
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: detect dm_operator_char_star
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: detect dm_operator_comma
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: detect dm_type_char_star
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: detect dm_type_foo_ref
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: detect dm_type_int_star
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: detect dm_type_long
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: detect dm_type_long_star
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: detect dm_type_short
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: detect dm_type_typedef
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: detect dm_type_unsigned_int
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: detect dm_type_unsigned_long
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: detect dm_type_unsigned_short
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: detect dm_type_void
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: detect dm_type_void_star
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator char\*
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator delete
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator int
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator new
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator!
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator!=
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator%
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator%=
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator&&
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator&
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator&=
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator+
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator++
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator+=
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator,
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator-
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator--
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator-=
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator->
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator->\*
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator/
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator/=
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator<
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator<<
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator<<=
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator<=
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator=
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator==
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator>
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator>=
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator>>
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator>>=
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator\*
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator\*=
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator\[\]
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator^
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator^=
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator|
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator|=
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator||
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: info function for "operator~
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: list foo::operator int*
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &'overload1arg
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &'overloadargs
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator char*
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator delete
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator int
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator new
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator new[]
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator!
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator!=
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator%
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator%=
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator&&
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator&
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator&=
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator*
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator*=
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator+
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator++
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator+=
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator,
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator-
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator--
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator-=
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator->
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator->*
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator/
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator/=
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator<
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator<<
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator<<=
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator<=
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator=
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator==
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator>
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator>=
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator>>
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator>>=
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator[]
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator^
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator^=
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator|
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator|=
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator||
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &foo::operator~
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &hairyfunc1
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &hairyfunc2
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &hairyfunc3
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &hairyfunc4
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &hairyfunc5
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &hairyfunc6
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: print &hairyfunc7
PASS -> UNRESOLVED: gdb.cp/cplusfuncs.exp: set language c++
new FAIL: gdb.cp/ena-dis-br-range.exp: run to marker
new FAIL: gdb.cp/except-multi-location.exp: static_lib=0: static_bin=0: can't run to main
new FAIL: gdb.cp/except-multi-location.exp: static_lib=0: static_bin=1: can't run to main
new FAIL: gdb.cp/except-multi-location.exp: static_lib=1: static_bin=0: can't run to main
new FAIL: gdb.cp/except-multi-location.exp: static_lib=1: static_bin=1: can't run to main
PASS -> UNRESOLVED: gdb.cp/exception.exp: Set temporary breakpoint at main
PASS -> UNRESOLVED: gdb.cp/exception.exp: catch catch
PASS -> UNRESOLVED: gdb.cp/exception.exp: catch rethrow
PASS -> UNRESOLVED: gdb.cp/exception.exp: catch throw
PASS -> UNRESOLVED: gdb.cp/exception.exp: info breakpoints
PASS -> UNRESOLVED: gdb.cp/expand-psymtabs-cxx.exp: after expand
PASS -> UNRESOLVED: gdb.cp/expand-psymtabs-cxx.exp: before expand
PASS -> UNRESOLVED: gdb.cp/expand-psymtabs-cxx.exp: force expand
PASS -> UNRESOLVED: gdb.cp/extern-c.exp: continue to breakpoint: c_func
PASS -> UNRESOLVED: gdb.cp/extern-c.exp: continue to breakpoint: c_funcs_1
PASS -> UNRESOLVED: gdb.cp/extern-c.exp: continue to breakpoint: c_funcs_2
PASS -> UNRESOLVED: gdb.cp/extern-c.exp: initialize counter
PASS -> UNRESOLVED: gdb.cp/extern-c.exp: rbreak c_funcs
PASS -> UNRESOLVED: gdb.cp/extern-c.exp: set commands on multiple breakpoints
PASS -> UNRESOLVED: gdb.cp/extern-c.exp: setting breakpoint at c_func
PASS -> UNRESOLVED: gdb.cp/extern-c.exp: verify counter at first breakpoint
PASS -> UNRESOLVED: gdb.cp/extern-c.exp: verify counter at second breakpoint
new UNRESOLVED: gdb.cp/formatted-ref.exp: find address of e1
new UNRESOLVED: gdb.cp/formatted-ref.exp: find address of i1
new UNRESOLVED: gdb.cp/formatted-ref.exp: find address of s1
PASS -> UNRESOLVED: gdb.cp/formatted-ref.exp: print s.x == 13
PASS -> UNRESOLVED: gdb.cp/formatted-ref.exp: print/x &e
PASS -> UNRESOLVED: gdb.cp/formatted-ref.exp: print/x &i
PASS -> UNRESOLVED: gdb.cp/formatted-ref.exp: print/x &s
PASS -> UNRESOLVED: gdb.cp/formatted-ref.exp: print/x *
PASS -> UNRESOLVED: gdb.cp/formatted-ref.exp: print/x e
PASS -> UNRESOLVED: gdb.cp/formatted-ref.exp: print/x i
PASS -> UNRESOLVED: gdb.cp/formatted-ref.exp: print/x s
new FAIL: gdb.cp/infcall-nodebug.exp: l=c++: s=debug: can't run to main
new FAIL: gdb.cp/infcall-nodebug.exp: l=c++: s=nodebug: can't run to main
new FAIL: gdb.cp/infcall-nodebug.exp: l=c: s=debug: can't run to main
new FAIL: gdb.cp/infcall-nodebug.exp: l=c: s=nodebug: can't run to main
new FAIL: gdb.cp/local-static.exp: c++: couldn't run to breakpoint
new FAIL: gdb.cp/local-static.exp: c: couldn't run to breakpoint
new UNRESOLVED: gdb.cp/mb-inline.exp: can't run to main for multi_line_foo tests.
new UNRESOLVED: gdb.cp/mb-inline.exp: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.cp/mb-inline.exp: disabled breakpoint 1.2
PASS -> UNRESOLVED: gdb.cp/mb-inline.exp: disabling location: disable
PASS -> UNRESOLVED: gdb.cp/mb-inline.exp: info break
PASS -> UNRESOLVED: gdb.cp/mb-inline.exp: run to breakpoint 2
PASS -> UNRESOLVED: gdb.cp/mb-inline.exp: set breakpoint
new UNRESOLVED: gdb.cp/mb-templates.exp: can't run to main for multi_line_foo tests.
new UNRESOLVED: gdb.cp/mb-templates.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.cp/mb-templates.exp: disable breakpoint: disable
new FAIL: gdb.cp/mb-templates.exp: disable breakpoint: run to breakpoint
new UNRESOLVED: gdb.cp/mb-templates.exp: disabling location: disable
new FAIL: gdb.cp/mb-templates.exp: disabling location: enable
new UNRESOLVED: gdb.cp/mb-templates.exp: disabling location: run to breakpoint
new UNRESOLVED: gdb.cp/mb-templates.exp: initial condition: run to breakpoint 2
PASS -> UNRESOLVED: gdb.cp/mb-templates.exp: initial condition: set breakpoint
new FAIL: gdb.cp/mb-templates.exp: instantiation: run to breakpoint
new FAIL: gdb.cp/mb-templates.exp: instantiation: run to breakpoint 2
new UNRESOLVED: gdb.cp/mb-templates.exp: instantiation: set breakpoint
new UNRESOLVED: gdb.cp/mb-templates.exp: kill
new UNRESOLVED: gdb.cp/mb-templates.exp: separate condition: run to breakpoint 2
new UNRESOLVED: gdb.cp/mb-templates.exp: separate condition: set breakpoint
new UNRESOLVED: gdb.cp/mb-templates.exp: separate condition: set condition
PASS -> UNRESOLVED: gdb.cp/minsym-fallback.exp: break C::f
PASS -> UNRESOLVED: gdb.cp/minsym-fallback.exp: break C::operator
PASS -> UNRESOLVED: gdb.cp/misc.exp:
PASS -> UNRESOLVED: gdb.cp/misc.exp: 1 + true
PASS -> UNRESOLVED: gdb.cp/misc.exp: 1 < 2 < 3
PASS -> UNRESOLVED: gdb.cp/misc.exp: 2 < 1 > 4
PASS -> UNRESOLVED: gdb.cp/misc.exp: 3 + false
PASS -> UNRESOLVED: gdb.cp/misc.exp: deduced language is C++, after full symbols
PASS -> UNRESOLVED: gdb.cp/misc.exp: expression using block qualifier
PASS -> UNRESOLVED: gdb.cp/misc.exp: print a bool array
PASS -> UNRESOLVED: gdb.cp/misc.exp: print a bool var
PASS -> UNRESOLVED: gdb.cp/misc.exp: print as bool
PASS -> UNRESOLVED: gdb.cp/misc.exp: print false
PASS -> UNRESOLVED: gdb.cp/misc.exp: print s.a for foo struct
PASS -> UNRESOLVED: gdb.cp/misc.exp: print true
PASS -> UNRESOLVED: gdb.cp/misc.exp: set a bool array elem
PASS -> UNRESOLVED: gdb.cp/misc.exp: set a bool var
PASS -> UNRESOLVED: gdb.cp/nsalias.exp:
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: list Outer::Inner::Innermost::foo
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: list Outer::Inner::foo
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: list Outer::Inner::innermost::foo
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: list Outer::foo
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: list Outer::inner::Innermost::foo
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: list Outer::inner::foo
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: list Outer::inner::innermost::foo
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: list oi1::Innermost::foo
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: list oi1::foo
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: list oi1::innermost::foo
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: list oi2::Innermost::foo
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: list oi2::foo
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: list oi2::innermost::foo
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: list oi3::Innermost::foo
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: list oi3::foo
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: list oi3::innermost::foo
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: list outer::Inner::Innermost::foo
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: list outer::Inner::foo
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: list outer::Inner::innermost::foo
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: list outer::foo
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: list outer::inner::Innermost::foo
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: list outer::inner::foo
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: list outer::inner::innermost::foo
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: print Outer::Inner::Innermost::x
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: print Outer::Inner::innermost::x
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: print Outer::Inner::x
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: print Outer::inner::Innermost::x
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: print Outer::inner::innermost::x
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: print Outer::inner::x
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: print Outer::x
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: print oi1::Innermost::x
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: print oi1::innermost::x
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: print oi1::x
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: print oi2::Innermost::x
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: print oi2::innermost::x
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: print oi2::x
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: print oi3::Innermost::x
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: print oi3::innermost::x
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: print oi3::x
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: print outer::Inner::Innermost::x
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: print outer::Inner::innermost::x
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: print outer::Inner::x
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: print outer::inner::Innermost::x
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: print outer::inner::innermost::x
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: print outer::inner::x
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: ptype Outer
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: ptype Outer::Inner
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: ptype Outer::Inner::Innermost
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: ptype Outer::Inner::innermost
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: ptype Outer::inner
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: ptype Outer::inner::Innermost
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: ptype Outer::inner::innermost
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: ptype oi1
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: ptype oi1::Innermost
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: ptype oi1::innermost
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: ptype oi2
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: ptype oi2::Innermost
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: ptype oi2::innermost
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: ptype oi3
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: ptype oi3::Innermost
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: ptype oi3::innermost
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: ptype outer::Inner
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: ptype outer::Inner::Innermost
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: ptype outer::Inner::innermost
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: ptype outer::inner
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: ptype outer::inner::Innermost
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: ptype outer::inner::innermost
new UNRESOLVED: gdb.cp/nsalias.exp: setting breakpoint at *Outer::Inner::Innermost::foo
new UNRESOLVED: gdb.cp/nsalias.exp: setting breakpoint at *Outer::Inner::foo
new UNRESOLVED: gdb.cp/nsalias.exp: setting breakpoint at *Outer::Inner::innermost::foo
new UNRESOLVED: gdb.cp/nsalias.exp: setting breakpoint at *Outer::foo
new UNRESOLVED: gdb.cp/nsalias.exp: setting breakpoint at *Outer::inner::Innermost::foo
new UNRESOLVED: gdb.cp/nsalias.exp: setting breakpoint at *Outer::inner::foo
new UNRESOLVED: gdb.cp/nsalias.exp: setting breakpoint at *Outer::inner::innermost::foo
new UNRESOLVED: gdb.cp/nsalias.exp: setting breakpoint at *oi1::Innermost::foo
new UNRESOLVED: gdb.cp/nsalias.exp: setting breakpoint at *oi1::foo
new UNRESOLVED: gdb.cp/nsalias.exp: setting breakpoint at *oi1::innermost::foo
new UNRESOLVED: gdb.cp/nsalias.exp: setting breakpoint at *oi2::Innermost::foo
new UNRESOLVED: gdb.cp/nsalias.exp: setting breakpoint at *oi2::foo
new UNRESOLVED: gdb.cp/nsalias.exp: setting breakpoint at *oi2::innermost::foo
new UNRESOLVED: gdb.cp/nsalias.exp: setting breakpoint at *oi3::Innermost::foo
new UNRESOLVED: gdb.cp/nsalias.exp: setting breakpoint at *oi3::foo
new UNRESOLVED: gdb.cp/nsalias.exp: setting breakpoint at *oi3::innermost::foo
new UNRESOLVED: gdb.cp/nsalias.exp: setting breakpoint at *outer::Inner::Innermost::foo
new UNRESOLVED: gdb.cp/nsalias.exp: setting breakpoint at *outer::Inner::foo
new UNRESOLVED: gdb.cp/nsalias.exp: setting breakpoint at *outer::Inner::innermost::foo
new UNRESOLVED: gdb.cp/nsalias.exp: setting breakpoint at *outer::foo
new UNRESOLVED: gdb.cp/nsalias.exp: setting breakpoint at *outer::inner::Innermost::foo
new UNRESOLVED: gdb.cp/nsalias.exp: setting breakpoint at *outer::inner::foo
new UNRESOLVED: gdb.cp/nsalias.exp: setting breakpoint at *outer::inner::innermost::foo
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: whatis Outer
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: whatis Outer::Inner
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: whatis Outer::Inner::Innermost
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: whatis Outer::Inner::innermost
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: whatis Outer::inner
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: whatis Outer::inner::Innermost
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: whatis Outer::inner::innermost
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: whatis oi1
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: whatis oi1::Innermost
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: whatis oi1::innermost
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: whatis oi2
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: whatis oi2::Innermost
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: whatis oi2::innermost
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: whatis oi3
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: whatis oi3::Innermost
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: whatis oi3::innermost
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: whatis outer::Inner
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: whatis outer::Inner::Innermost
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: whatis outer::Inner::innermost
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: whatis outer::inner
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: whatis outer::inner::Innermost
PASS -> UNRESOLVED: gdb.cp/nsalias.exp: whatis outer::inner::innermost
PASS -> FAIL: gdb.cp/overload-const.exp: setting breakpoint at myclass::func
PASS -> UNRESOLVED: gdb.cp/paren-type.exp: break C::f
new FAIL: gdb.cp/parse-lang.exp: setting breakpoint at C::m if v == 42
new UNRESOLVED: gdb.cp/parse-lang.exp: setting breakpoint at marker
new FAIL: gdb.cp/pr10687.exp: can't run to main
new FAIL: gdb.cp/pr9167.exp: can't run to main
PASS -> UNRESOLVED: gdb.cp/psmang.exp: break s::method1
PASS -> UNRESOLVED: gdb.cp/psmang.exp: break s::method2
PASS -> UNRESOLVED: gdb.cp/re-set-overloaded.exp: breakpoint resolved
new FAIL: gdb.cp/re-set-overloaded.exp: setting breakpoint at main
PASS -> UNRESOLVED: gdb.cp/ref-params.exp: print value of Child& in f2
PASS -> UNRESOLVED: gdb.cp/ref-params.exp: print value of Parent& in f1
PASS -> UNRESOLVED: gdb.cp/ref-params.exp: print value of a Child in main
PASS -> UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on
PASS -> UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on Child in main
PASS -> UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on Child& in f2
PASS -> UNRESOLVED: gdb.cp/ref-params.exp: print value of f2 on
PASS -> UNRESOLVED: gdb.cp/ref-params.exp: print value of f2 on Child in main
PASS -> UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print f1
PASS -> UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print mf1
PASS -> UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print mf2
PASS -> UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Child&& in f2
PASS -> UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Parent&& in f1
PASS -> UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f1 on
PASS -> UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f1 on Child&& in f2
PASS -> UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f2 on
new FAIL: gdb.cp/scope-err.exp: can't run to main
PASS -> FAIL: gdb.cp/subtypes.exp: setting breakpoint at Outer::Inner::doit
PASS -> UNRESOLVED: gdb.cp/subtypes.exp: setting breakpoint at foobar<char>
PASS -> UNRESOLVED: gdb.cp/subtypes.exp: setting breakpoint at foobar<int>
PASS -> UNRESOLVED: gdb.cp/subtypes.exp: setting breakpoint at main::Bar::doit
PASS -> UNRESOLVED: gdb.cp/subtypes.exp: setting breakpoint at main::Baz::doit
PASS -> UNRESOLVED: gdb.cp/subtypes.exp: setting breakpoint at main::Foo::doit
PASS -> UNRESOLVED: gdb.cp/templates.exp: b 770
PASS -> UNRESOLVED: gdb.cp/templates.exp: break Garply<Garply<char> >::garply
PASS -> UNRESOLVED: gdb.cp/templates.exp: breakpoint on a line with no real code
PASS -> UNRESOLVED: gdb.cp/templates.exp: constructor breakpoint
PASS -> UNRESOLVED: gdb.cp/templates.exp: continue to line 770
new UNRESOLVED: gdb.cp/templates.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/templates.exp: destructor_breakpoint
PASS -> UNRESOLVED: gdb.cp/templates.exp: print Foo<volatile char *>::foo
PASS -> UNRESOLVED: gdb.cp/templates.exp: print Foo<volatile char*>::foo
PASS -> UNRESOLVED: gdb.cp/templates.exp: print Garply<Garply<char> >::garply
PASS -> UNRESOLVED: gdb.cp/templates.exp: print destructor of template typedef
PASS -> UNRESOLVED: gdb.cp/templates.exp: print fint
PASS -> UNRESOLVED: gdb.cp/templates.exp: print fvpchar
PASS -> UNRESOLVED: gdb.cp/templates.exp: print method of template typedef
PASS -> UNRESOLVED: gdb.cp/templates.exp: ptype Bar
PASS -> UNRESOLVED: gdb.cp/templates.exp: ptype Baz
PASS -> UNRESOLVED: gdb.cp/templates.exp: ptype Foo
PASS -> UNRESOLVED: gdb.cp/templates.exp: ptype Garply<Garply<char> >
PASS -> UNRESOLVED: gdb.cp/templates.exp: ptype Garply<int>
PASS -> UNRESOLVED: gdb.cp/templates.exp: ptype Qux
PASS -> UNRESOLVED: gdb.cp/templates.exp: ptype Spec
PASS -> UNRESOLVED: gdb.cp/templates.exp: ptype T5<int>
PASS -> UNRESOLVED: gdb.cp/templates.exp: ptype arg
PASS -> UNRESOLVED: gdb.cp/templates.exp: ptype bazint
PASS -> UNRESOLVED: gdb.cp/templates.exp: ptype bazint2
PASS -> UNRESOLVED: gdb.cp/templates.exp: ptype bint
PASS -> UNRESOLVED: gdb.cp/templates.exp: ptype bint2
PASS -> UNRESOLVED: gdb.cp/templates.exp: ptype empty
PASS -> UNRESOLVED: gdb.cp/templates.exp: ptype fchar
PASS -> UNRESOLVED: gdb.cp/templates.exp: ptype fint
KFAIL -> UNRESOLVED: gdb.cp/templates.exp: ptype fvpchar
PASS -> UNRESOLVED: gdb.cp/templates.exp: ptype quxint
PASS -> UNRESOLVED: gdb.cp/templates.exp: ptype siip
PASS -> UNRESOLVED: gdb.cp/templates.exp: ptype t5i
PASS -> UNRESOLVED: gdb.cp/templates.exp: set print symbol off
PASS -> UNRESOLVED: gdb.cp/templates.exp: value method breakpoint
new UNRESOLVED: gdb.cp/typeid.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/typeid.exp: typeid
PASS -> UNRESOLVED: gdb.cp/using-crash.exp: reload file
new FAIL: gdb.cp/wide_char_types.exp: with program: lang=c++03: can't run to main
new FAIL: gdb.cp/wide_char_types.exp: with program: lang=c++11: can't run to main
new FAIL: gdb.cp/wide_char_types.exp: with program: lang=c: can't run to main
new UNRESOLVED: gdb.dlang/watch-loc.exp: disassemble _Dmain
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p first_label - first
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p second_label - second
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: p main_label - main
PASS -> UNRESOLVED: gdb.dwarf2/dw2-abs-hi-pc.exp: break hello
PASS -> UNRESOLVED: gdb.dwarf2/dw2-abs-hi-pc.exp: break world
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p g_label - g
PASS -> UNRESOLVED: gdb.dwarf2/dw2-basic.exp: list func_cu1
PASS -> UNRESOLVED: gdb.dwarf2/dw2-basic.exp: ptype func_cu1
PASS -> UNRESOLVED: gdb.dwarf2/dw2-compdir-oldgcc.exp: info source gcc42
PASS -> UNRESOLVED: gdb.dwarf2/dw2-compdir-oldgcc.exp: info source gcc43
PASS -> UNRESOLVED: gdb.dwarf2/dw2-compdir-oldgcc.exp: list gcc42
PASS -> UNRESOLVED: gdb.dwarf2/dw2-compdir-oldgcc.exp: list gcc43
PASS -> UNRESOLVED: gdb.dwarf2/dw2-compressed.exp: list func_cu1
PASS -> UNRESOLVED: gdb.dwarf2/dw2-compressed.exp: ptype func_cu1
PASS -> UNRESOLVED: gdb.dwarf2/dw2-dummy-cu.exp: info fun main
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: p func_label - func
PASS -> UNRESOLVED: gdb.dwarf2/dw2-intercu.exp: list func_cu1
PASS -> UNRESOLVED: gdb.dwarf2/dw2-intercu.exp: p one
PASS -> UNRESOLVED: gdb.dwarf2/dw2-intercu.exp: p two
PASS -> UNRESOLVED: gdb.dwarf2/dw2-intercu.exp: ptype func_cu1
PASS -> UNRESOLVED: gdb.dwarf2/dw2-intercu.exp: ptype one
PASS -> UNRESOLVED: gdb.dwarf2/dw2-intercu.exp: ptype two
PASS -> UNRESOLVED: gdb.dwarf2/dw2-intermix.exp: list func_cu1
PASS -> UNRESOLVED: gdb.dwarf2/dw2-intermix.exp: ptype func_cu1
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: p main_label - main
PASS -> UNRESOLVED: gdb.dwarf2/dw2-minsym-in-cu.exp: info fun func2
new UNRESOLVED: gdb.dwarf2/dw2-objfile-overlap.exp: setting breakpoint at *outer_before
PASS -> UNRESOLVED: gdb.dwarf2/dw2-op-stack-value.exp: x/wx &aa551234
PASS -> UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: console: set print object on
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: continue to func01
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: create varobj for ptr
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: get children of var1
PASS -> UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: mi: run to main
PASS -> UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: mi: set print object on
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access array member
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access integer member
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access pointer member
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: p func01_label - func01
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-ranges-base.exp: p frame2_label - frame2
new UNRESOLVED: gdb.dwarf2/dw2-ranges-base.exp: p frame3_label - frame3
new UNRESOLVED: gdb.dwarf2/dw2-ranges-base.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: hi-cold: p bar_label - bar
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: hi-cold: p baz_label - baz
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: hi-cold: p foo_cold_label - foo_cold
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: hi-cold: p foo_label - foo
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: hi-cold: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p bar_label - bar
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p baz_label - baz
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_cold_label - foo_cold
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_label - foo
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p bar_label - bar
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p baz_label - baz
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p foo_label - foo
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p foo_low_label - foo_low
PASS -> UNRESOLVED: gdb.dwarf2/dw2-ranges.exp: info line func
PASS -> UNRESOLVED: gdb.dwarf2/dw2-ranges.exp: info line func2
PASS -> UNRESOLVED: gdb.dwarf2/dw2-ranges.exp: info line main
PASS -> UNRESOLVED: gdb.dwarf2/dw2-ranges.exp: info line main2
PASS -> UNRESOLVED: gdb.dwarf2/dw2-ranges.exp: info line main3
PASS -> UNRESOLVED: gdb.dwarf2/dw2-regno-invalid.exp: p bregx
new UNRESOLVED: gdb.dwarf2/dwz.exp: p main_label - main
PASS -> UNRESOLVED: gdb.dwarf2/fission-mix.exp: break func2
PASS -> UNRESOLVED: gdb.dwarf2/fission-mix.exp: break main
PASS -> UNRESOLVED: gdb.dwarf2/fission-reread.exp: break main
PASS -> UNRESOLVED: gdb.dwarf2/fission-reread.exp: fission-reread - unload
PASS -> UNRESOLVED: gdb.dwarf2/fission-reread.exp: ptype baz
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/implref-array.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/implref-const.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/implref-global.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/implref-struct.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: p main_label - main
PASS -> FAIL: gdb.dwarf2/inlined_subroutine-inheritance.exp: setting breakpoint at bytes_repeat
PASS -> UNRESOLVED: gdb.dwarf2/mac-fileno.exp: list func_cu1
PASS -> UNRESOLVED: gdb.dwarf2/mac-fileno.exp: ptype func_cu1
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: p mymain_label - mymain
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: p main_label - main
PASS -> UNRESOLVED: gdb.dwarf2/pr11465.exp: p N::c.C
PASS -> UNRESOLVED: gdb.dwarf2/pr13961.exp: break main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/var-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/varval.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/void-type.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/void-type.exp: p main_label - main
PASS -> UNRESOLVED: gdb.linespec/break-ask.exp: break twodup absolute
PASS -> UNRESOLVED: gdb.linespec/break-asm-file.exp: delete 1
PASS -> UNRESOLVED: gdb.linespec/break-asm-file.exp: delete 2
PASS -> UNRESOLVED: gdb.linespec/break-asm-file.exp: set a break-point at a function only for a selected ASM file.
PASS -> UNRESOLVED: gdb.linespec/break-asm-file.exp: set a break-point at a global function only for a selected ASM file.
PASS -> UNRESOLVED: gdb.linespec/break-asm-file.exp: set a break-point at function in all instances for a selected ASM file.
new UNRESOLVED: gdb.linespec/cpcompletion.exp: ambiguous-prefix: "b -function ambiguous_prefix_" creates no bp locations: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.linespec/cpcompletion.exp: ambiguous-prefix: "b -function ambiguous_prefix_" creates no bp locations: matches
new UNRESOLVED: gdb.linespec/cpcompletion.exp: ambiguous-prefix: "b -function ambiguous_prefix_" creates no bp locations: set breakpoint
new UNRESOLVED: gdb.linespec/cpcompletion.exp: ambiguous-prefix: "b ambiguous_prefix_" creates no bp locations: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.linespec/cpcompletion.exp: ambiguous-prefix: "b ambiguous_prefix_" creates no bp locations: matches
new UNRESOLVED: gdb.linespec/cpcompletion.exp: ambiguous-prefix: "b ambiguous_prefix_" creates no bp locations: set breakpoint
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: ambiguous-prefix: cmd complete "b -function ambiguous_pre"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: ambiguous-prefix: cmd complete "b ambiguous_pre"
new UNRESOLVED: gdb.linespec/cpcompletion.exp: ambiguous-prefix: show editing
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: anon-ns: "b -function the_anon_ns_wrapper_ns::
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: anon-ns: "b the_anon_ns_wrapper_ns::
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: anon-ns: cmd complete "b "anon_ns_function"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: anon-ns: cmd complete "b 'anon_ns_function"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: anon-ns: cmd complete "b
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: anon-ns: cmd complete "b -function "anon_ns_function"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: anon-ns: cmd complete "b -function 'anon_ns_function"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: anon-ns: cmd complete "b -function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: anon-ns: cmd complete "b -function anon_ns_function"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: anon-ns: cmd complete "b -function the_anon_ns_wrapper_ns::
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: anon-ns: cmd complete "b anon_ns_function"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: anon-ns: cmd complete "b the_anon_ns_wrapper_ns::
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: anon-ns: compare "b "anon_ns_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: anon-ns: compare "b 'anon_ns_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: anon-ns: compare "b -function "anon_ns_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: anon-ns: compare "b -function 'anon_ns_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: anon-ns: compare "b -function anon_ns_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: anon-ns: compare "b -function the_anon_ns_wrapper_ns::
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: anon-ns: compare "b anon_ns_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: anon-ns: compare "b the_anon_ns_wrapper_ns::
new UNRESOLVED: gdb.linespec/cpcompletion.exp: anon-ns: show editing
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: cmd complete "b "not_overloaded_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: cmd complete "b "not_overloaded_fn"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: cmd complete "b "not_overloaded_fn
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: cmd complete "b 'not_overloaded_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: cmd complete "b 'not_overloaded_fn"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: cmd complete "b 'not_overloaded_fn
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: cmd complete "b -function "not_overloaded_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: cmd complete "b -function "not_overloaded_fn"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: cmd complete "b -function "not_overloaded_fn
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: cmd complete "b -function 'not_overloaded_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: cmd complete "b -function 'not_overloaded_fn"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: cmd complete "b -function 'not_overloaded_fn
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: compare "b "not_overloaded_fn
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: compare "b 'not_overloaded_fn
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: compare "b -function "not_overloaded_fn
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: compare "b -function 'not_overloaded_fn
new UNRESOLVED: gdb.linespec/cpcompletion.exp: append-end-quote-char-when-unambiguous: show editing
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: const-overload-quoted: cmd complete "b 'const_overload_fn
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: const-overload-quoted: cmd complete "b -function 'const_overload_fn
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: const-overload-quoted: compare "b 'const_overload_fn
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: const-overload-quoted: compare "b -function 'const_overload_fn
new UNRESOLVED: gdb.linespec/cpcompletion.exp: const-overload-quoted: show editing
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: const-overload: "b -function const_overload_fn
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: const-overload: "b const_overload_fn
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: const-overload: cmd complete "b -function const_overload_fn
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: const-overload: cmd complete "b -function const_overload_fn"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: const-overload: cmd complete "b const_overload_fn
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: const-overload: cmd complete "b const_overload_fn"
new UNRESOLVED: gdb.linespec/cpcompletion.exp: const-overload: compare "b -function const_overload_fn" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpcompletion.exp: const-overload: compare "b -function const_overload_fn" completion list with bp location list: info breakpoint
PASS -> FAIL: gdb.linespec/cpcompletion.exp: const-overload: compare "b -function const_overload_fn" completion list with bp location list: matches
new UNRESOLVED: gdb.linespec/cpcompletion.exp: const-overload: compare "b -function const_overload_fn" completion list with bp location list: set breakpoint
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: const-overload: compare "b -function const_overload_fn
new UNRESOLVED: gdb.linespec/cpcompletion.exp: const-overload: compare "b const_overload_fn" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpcompletion.exp: const-overload: compare "b const_overload_fn" completion list with bp location list: info breakpoint
PASS -> FAIL: gdb.linespec/cpcompletion.exp: const-overload: compare "b const_overload_fn" completion list with bp location list: matches
new UNRESOLVED: gdb.linespec/cpcompletion.exp: const-overload: compare "b const_overload_fn" completion list with bp location list: set breakpoint
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: const-overload: compare "b const_overload_fn
new UNRESOLVED: gdb.linespec/cpcompletion.exp: const-overload: show editing
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: fqn-2: "b -qualified struct_overload2_test::overload2_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: fqn-2: cmd complete "b -function struct_overload2_test::overload2_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: fqn-2: cmd complete "b -qualified struct_overload2_test::overload2_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: fqn-2: compare "b -function struct_overload2_test::overload2_function
new UNRESOLVED: gdb.linespec/cpcompletion.exp: fqn-2: show editing
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: fqn: cmd complete "b -qualified -function ns_overload2_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: fqn: cmd complete "b -qualified -function ns_overload2_test::
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: fqn: cmd complete "b -qualified -function overload2_func"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: fqn: cmd complete "b -qualified -source cpls.cc -function ns_overload2_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: fqn: cmd complete "b -qualified -source cpls.cc -function ns_overload2_test::
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: fqn: cmd complete "b -qualified -source cpls.cc -function overload2_func"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: fqn: cmd complete "b -qualified cpls.cc:ns_overload2_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: fqn: cmd complete "b -qualified cpls.cc:ns_overload2_test::
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: fqn: cmd complete "b -qualified cpls.cc:overload2_func"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: fqn: cmd complete "b -qualified ns_overload2_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: fqn: cmd complete "b -qualified ns_overload2_test::
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: fqn: cmd complete "b -qualified overload2_func"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: fqn: cmd complete "b -source cpls.cc -qualified -function ns_overload2_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: fqn: cmd complete "b -source cpls.cc -qualified -function ns_overload2_test::
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: fqn: cmd complete "b -source cpls.cc -qualified -function overload2_func"
new UNRESOLVED: gdb.linespec/cpcompletion.exp: fqn: show editing
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: "b "cpls.cc": "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: "b "cpls.cc": 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: "b "cpls.cc": function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: "b "cpls.cc":"function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: "b "cpls.cc":'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: "b "cpls.cc":function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: "b "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: "b 'cpls.cc': "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: "b 'cpls.cc': 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: "b 'cpls.cc': function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: "b 'cpls.cc':"function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: "b 'cpls.cc':'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: "b 'cpls.cc':function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: "b 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: "b -function "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: "b -function 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: "b -function function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: "b -source "cpls.cc" -function "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: "b -source "cpls.cc" -function 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: "b -source "cpls.cc" -function function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: "b -source 'cpls.cc' -function "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: "b -source 'cpls.cc' -function 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: "b -source 'cpls.cc' -function function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: "b -source cpls.cc -function "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: "b -source cpls.cc -function 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: "b -source cpls.cc -function function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: "b cpls.cc: "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: "b cpls.cc: 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: "b cpls.cc: function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: "b cpls.cc:"function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: "b cpls.cc:'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: "b cpls.cc:function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: "b function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b "cpls.cc": "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b "cpls.cc": 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b "cpls.cc": function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b "cpls.cc":"function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b "cpls.cc":'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b "cpls.cc":function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b 'cpls.cc': "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b 'cpls.cc': 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b 'cpls.cc': function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b 'cpls.cc':"function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b 'cpls.cc':'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b 'cpls.cc':function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b -function "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b -function 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b -function function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b -source "cpls.cc" -function "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b -source "cpls.cc" -function 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b -source "cpls.cc" -function function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b -source 'cpls.cc' -function "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b -source 'cpls.cc' -function 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b -source 'cpls.cc' -function function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b -source cpls.cc -function "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b -source cpls.cc -function 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b -source cpls.cc -function function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b cpls.cc: "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b cpls.cc: 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b cpls.cc: function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b cpls.cc:"function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b cpls.cc:'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b cpls.cc:function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: cmd complete "b function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: compare "b "cpls.cc": "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: compare "b "cpls.cc": 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: compare "b "cpls.cc": function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: compare "b "cpls.cc":"function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: compare "b "cpls.cc":'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: compare "b "cpls.cc":function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: compare "b "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: compare "b 'cpls.cc': "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: compare "b 'cpls.cc': 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: compare "b 'cpls.cc': function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: compare "b 'cpls.cc':"function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: compare "b 'cpls.cc':'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: compare "b 'cpls.cc':function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: compare "b 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: compare "b -function "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: compare "b -function 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: compare "b -function function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: compare "b -source "cpls.cc" -function "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: compare "b -source "cpls.cc" -function 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: compare "b -source "cpls.cc" -function function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: compare "b -source 'cpls.cc' -function "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: compare "b -source 'cpls.cc' -function 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: compare "b -source 'cpls.cc' -function function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: compare "b -source cpls.cc -function "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: compare "b -source cpls.cc -function 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: compare "b -source cpls.cc -function function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: compare "b cpls.cc: "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: compare "b cpls.cc: 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: compare "b cpls.cc: function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: compare "b cpls.cc:"function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: compare "b cpls.cc:'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: compare "b cpls.cc:function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: compare "b function_with_labels
new UNRESOLVED: gdb.linespec/cpcompletion.exp: function-labels: show editing
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: if-expression: cmd complete "b -function function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: if-expression: cmd complete "b -function non_existing_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: if-expression: cmd complete "b function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: if-expression: cmd complete "b non_existing_function
new UNRESOLVED: gdb.linespec/cpcompletion.exp: if-expression: show editing
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b "cpls2.cc": "
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b "cpls2.cc": ""
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b "cpls2.cc": '"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b "cpls2.cc":"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b "cpls2.cc":""
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b "cpls2.cc":'"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b 'cpls2.cc': "
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b 'cpls2.cc': ""
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b 'cpls2.cc': '"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b 'cpls2.cc':"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b 'cpls2.cc':""
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b 'cpls2.cc':'"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b -source "cpls2.cc" -function "
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b -source "cpls2.cc" -function ""
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b -source "cpls2.cc" -function '"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b -source 'cpls2.cc' -function "
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b -source 'cpls2.cc' -function ""
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b -source 'cpls2.cc' -function '"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b -source cpls2.cc -function "
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b -source cpls2.cc -function ""
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b -source cpls2.cc -function '"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b cpls2.cc: "
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b cpls2.cc: ""
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b cpls2.cc: '"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b cpls2.cc:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b cpls2.cc:""
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: cmd complete "b cpls2.cc:'"
new UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: show editing
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b "cpls2.cc": "file_constrained_test_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b "cpls2.cc": 'file_constrained_test_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b "cpls2.cc": file_constrained_test_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b "cpls2.cc":"file_constrained_test_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b "cpls2.cc":'file_constrained_test_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b "cpls2.cc":file_constrained_test_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b 'cpls2.cc': "file_constrained_test_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b 'cpls2.cc': 'file_constrained_test_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b 'cpls2.cc': file_constrained_test_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b 'cpls2.cc':"file_constrained_test_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b 'cpls2.cc':'file_constrained_test_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b 'cpls2.cc':file_constrained_test_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b -source "cpls2.cc" -function "file_constrained_test_cpls2_function"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b -source "cpls2.cc" -function 'file_constrained_test_cpls2_function"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b -source "cpls2.cc" -function file_constrained_test_cpls2_function"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b -source 'cpls2.cc' -function "file_constrained_test_cpls2_function"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b -source 'cpls2.cc' -function 'file_constrained_test_cpls2_function"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b -source 'cpls2.cc' -function file_constrained_test_cpls2_function"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b -source cpls2.cc -function "file_constrained_test_cpls2_function"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b -source cpls2.cc -function 'file_constrained_test_cpls2_function"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b -source cpls2.cc -function file_constrained_test_cpls2_function"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b cpls2.cc: "file_constrained_test_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b cpls2.cc: 'file_constrained_test_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b cpls2.cc: file_constrained_test_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b cpls2.cc:"file_constrained_test_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b cpls2.cc:'file_constrained_test_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: cmd complete "b cpls2.cc:file_constrained_test_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b "cpls2.cc": "file_constrained_test_cpls2_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b "cpls2.cc": 'file_constrained_test_cpls2_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b "cpls2.cc": file_constrained_test_cpls2_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b "cpls2.cc":"file_constrained_test_cpls2_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b "cpls2.cc":'file_constrained_test_cpls2_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b "cpls2.cc":file_constrained_test_cpls2_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b 'cpls2.cc': "file_constrained_test_cpls2_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b 'cpls2.cc': 'file_constrained_test_cpls2_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b 'cpls2.cc': file_constrained_test_cpls2_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b 'cpls2.cc':"file_constrained_test_cpls2_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b 'cpls2.cc':'file_constrained_test_cpls2_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b 'cpls2.cc':file_constrained_test_cpls2_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b -source "cpls2.cc" -function "file_constrained_test_cpls2_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b -source "cpls2.cc" -function 'file_constrained_test_cpls2_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b -source "cpls2.cc" -function file_constrained_test_cpls2_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b -source 'cpls2.cc' -function "file_constrained_test_cpls2_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b -source 'cpls2.cc' -function 'file_constrained_test_cpls2_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b -source 'cpls2.cc' -function file_constrained_test_cpls2_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b -source cpls2.cc -function "file_constrained_test_cpls2_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b -source cpls2.cc -function 'file_constrained_test_cpls2_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b -source cpls2.cc -function file_constrained_test_cpls2_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b cpls2.cc: "file_constrained_test_cpls2_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b cpls2.cc: 'file_constrained_test_cpls2_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b cpls2.cc: file_constrained_test_cpls2_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b cpls2.cc:"file_constrained_test_cpls2_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b cpls2.cc:'file_constrained_test_cpls2_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: compare "b cpls2.cc:file_constrained_test_cpls2_function
new UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unambiguous: show editing
new UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unconstrained: "b file_constrained_test_cpls" creates no bp locations: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unconstrained: "b file_constrained_test_cpls" creates no bp locations: matches
new UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unconstrained: "b file_constrained_test_cpls" creates no bp locations: set breakpoint
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unconstrained: cmd complete "b file_constrained_test"
new UNRESOLVED: gdb.linespec/cpcompletion.exp: in-source-file-unconstrained: show editing
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function "ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function "ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function "ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function "ns2_incomplete_scope_colon_test::s"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function "ns_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function "ns_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function "ns_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function "ns_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function "struct_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function "struct_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function "struct_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function "struct_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function 'ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function 'ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function 'ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function 'ns2_incomplete_scope_colon_test::s"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function 'ns_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function 'ns_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function 'ns_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function 'ns_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function 'struct_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function 'struct_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function 'struct_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function 'struct_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function ns2_incomplete_scope_colon_test::s"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function ns_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function ns_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function ns_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function ns_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function struct_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function struct_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function struct_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b  -function struct_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":"ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":"ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":"ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":"ns2_incomplete_scope_colon_test::s"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":"ns_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":"ns_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":"ns_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":"ns_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":"struct_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":"struct_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":"struct_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":"struct_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":'ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":'ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":'ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":'ns2_incomplete_scope_colon_test::s"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":'ns_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":'ns_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":'ns_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":'ns_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":'struct_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":'struct_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":'struct_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":'struct_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":ns2_incomplete_scope_colon_test::s"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":ns_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":ns_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":ns_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":ns_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":struct_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":struct_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":struct_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "cpls.cc":struct_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "ns2_incomplete_scope_colon_test::s"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "ns_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "ns_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "ns_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "ns_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "struct_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "struct_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "struct_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b "struct_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':"ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':"ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':"ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':"ns2_incomplete_scope_colon_test::s"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':"ns_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':"ns_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':"ns_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':"ns_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':"struct_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':"struct_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':"struct_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':"struct_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':'ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':'ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':'ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':'ns2_incomplete_scope_colon_test::s"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':'ns_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':'ns_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':'ns_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':'ns_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':'struct_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':'struct_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':'struct_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':'struct_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':ns2_incomplete_scope_colon_test::s"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':ns_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':ns_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':ns_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':ns_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':struct_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':struct_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':struct_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'cpls.cc':struct_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'ns2_incomplete_scope_colon_test::s"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'ns_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'ns_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'ns_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'ns_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'struct_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'struct_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'struct_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b 'struct_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function "ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function "ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function "ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function "ns2_incomplete_scope_colon_test::s"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function "ns_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function "ns_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function "ns_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function "ns_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function "struct_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function "struct_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function "struct_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function "struct_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function 'ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function 'ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function 'ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function 'ns2_incomplete_scope_colon_test::s"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function 'ns_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function 'ns_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function 'ns_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function 'ns_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function 'struct_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function 'struct_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function 'struct_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function 'struct_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function ns2_incomplete_scope_colon_test::s"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function ns_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function ns_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function ns_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function ns_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function struct_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function struct_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function struct_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source "cpls.cc" -function struct_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function "ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function "ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function "ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function "ns2_incomplete_scope_colon_test::s"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function "ns_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function "ns_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function "ns_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function "ns_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function "struct_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function "struct_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function "struct_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function "struct_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function 'ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function 'ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function 'ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function 'ns2_incomplete_scope_colon_test::s"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function 'ns_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function 'ns_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function 'ns_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function 'ns_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function 'struct_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function 'struct_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function 'struct_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function 'struct_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function ns2_incomplete_scope_colon_test::s"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function ns_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function ns_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function ns_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function ns_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function struct_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function struct_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function struct_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source 'cpls.cc' -function struct_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function "ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function "ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function "ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function "ns2_incomplete_scope_colon_test::s"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function "ns_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function "ns_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function "ns_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function "ns_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function "struct_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function "struct_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function "struct_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function "struct_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function 'ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function 'ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function 'ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function 'ns2_incomplete_scope_colon_test::s"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function 'ns_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function 'ns_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function 'ns_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function 'ns_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function 'struct_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function 'struct_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function 'struct_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function 'struct_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function ns2_incomplete_scope_colon_test::s"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function ns_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function ns_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function ns_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function ns_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function struct_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function struct_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function struct_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b -source cpls.cc -function struct_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:"ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:"ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:"ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:"ns2_incomplete_scope_colon_test::s"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:"ns_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:"ns_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:"ns_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:"ns_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:"struct_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:"struct_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:"struct_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:"struct_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:'ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:'ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:'ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:'ns2_incomplete_scope_colon_test::s"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:'ns_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:'ns_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:'ns_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:'ns_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:'struct_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:'struct_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:'struct_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:'struct_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:ns2_incomplete_scope_colon_test::s"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:ns_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:ns_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:ns_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:ns_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:struct_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:struct_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:struct_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b cpls.cc:struct_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b ns2_incomplete_scope_colon_test::s"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b ns_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b ns_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b ns_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b ns_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b struct_incomplete_scope_colon_test"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b struct_incomplete_scope_colon_test:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b struct_incomplete_scope_colon_test::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: cmd complete "b struct_incomplete_scope_colon_test::i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b  -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b  -function "ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b  -function "struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b  -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b  -function 'ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b  -function 'struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b  -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b  -function ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b  -function struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b "cpls.cc":"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b "cpls.cc":"ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b "cpls.cc":"struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b "cpls.cc":'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b "cpls.cc":'ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b "cpls.cc":'struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b "cpls.cc":ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b "cpls.cc":ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b "cpls.cc":struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b "ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b "struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b 'cpls.cc':"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b 'cpls.cc':"ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b 'cpls.cc':"struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b 'cpls.cc':'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b 'cpls.cc':'ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b 'cpls.cc':'struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b 'cpls.cc':ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b 'cpls.cc':ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b 'cpls.cc':struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b 'ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b 'struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source "cpls.cc" -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source "cpls.cc" -function "ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source "cpls.cc" -function "struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source "cpls.cc" -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source "cpls.cc" -function 'ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source "cpls.cc" -function 'struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source "cpls.cc" -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source "cpls.cc" -function ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source "cpls.cc" -function struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source 'cpls.cc' -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source 'cpls.cc' -function "ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source 'cpls.cc' -function "struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source 'cpls.cc' -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source 'cpls.cc' -function 'ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source 'cpls.cc' -function 'struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source 'cpls.cc' -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source 'cpls.cc' -function ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source 'cpls.cc' -function struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source cpls.cc -function "ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source cpls.cc -function "ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source cpls.cc -function "struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source cpls.cc -function 'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source cpls.cc -function 'ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source cpls.cc -function 'struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source cpls.cc -function ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source cpls.cc -function ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b -source cpls.cc -function struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b cpls.cc:"ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b cpls.cc:"ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b cpls.cc:"struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b cpls.cc:'ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b cpls.cc:'ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b cpls.cc:'struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b cpls.cc:ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b cpls.cc:ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b cpls.cc:struct_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b ns2_incomplete_scope_colon_test::struct_in_ns2_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b ns_incomplete_scope_colon_test::incomplete_scope_colon_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: compare "b struct_incomplete_scope_colon_test::incomplete_scope_colon_test
new UNRESOLVED: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: show editing
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b "cpls.cc": "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b "cpls.cc": "unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b "cpls.cc": 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b "cpls.cc": 'unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b "cpls.cc": function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b "cpls.cc": unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b "cpls.cc":"function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b "cpls.cc":"unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b "cpls.cc":'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b "cpls.cc":'unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b "cpls.cc":function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b "cpls.cc":unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b "unknown_file.cc": "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b "unknown_file.cc": "unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b "unknown_file.cc": 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b "unknown_file.cc": 'unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b "unknown_file.cc": function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b "unknown_file.cc": unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b "unknown_file.cc":"function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b "unknown_file.cc":"unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b "unknown_file.cc":'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b "unknown_file.cc":'unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b "unknown_file.cc":function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b "unknown_file.cc":unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b "unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b 'cpls.cc': "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b 'cpls.cc': "unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b 'cpls.cc': 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b 'cpls.cc': 'unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b 'cpls.cc': function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b 'cpls.cc': unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b 'cpls.cc':"function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b 'cpls.cc':"unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b 'cpls.cc':'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b 'cpls.cc':'unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b 'cpls.cc':function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b 'cpls.cc':unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b 'unknown_file.cc': "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b 'unknown_file.cc': "unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b 'unknown_file.cc': 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b 'unknown_file.cc': 'unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b 'unknown_file.cc': function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b 'unknown_file.cc': unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b 'unknown_file.cc':"function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b 'unknown_file.cc':"unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b 'unknown_file.cc':'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b 'unknown_file.cc':'unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b 'unknown_file.cc':function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b 'unknown_file.cc':unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b 'unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -function "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -function "unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -function 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -function 'unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -function function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -function unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -source "cpls.cc" -function "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -source "cpls.cc" -function "unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -source "cpls.cc" -function 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -source "cpls.cc" -function 'unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -source "cpls.cc" -function function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -source "cpls.cc" -function unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -source "unknown_file.cc" -function "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -source "unknown_file.cc" -function "unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -source "unknown_file.cc" -function 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -source "unknown_file.cc" -function 'unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -source "unknown_file.cc" -function function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -source "unknown_file.cc" -function unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -source 'cpls.cc' -function "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -source 'cpls.cc' -function "unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -source 'cpls.cc' -function 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -source 'cpls.cc' -function 'unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -source 'cpls.cc' -function function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -source 'cpls.cc' -function unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -source 'unknown_file.cc' -function "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -source 'unknown_file.cc' -function "unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -source 'unknown_file.cc' -function 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -source 'unknown_file.cc' -function 'unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -source 'unknown_file.cc' -function function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -source 'unknown_file.cc' -function unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -source cpls.cc -function "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -source cpls.cc -function "unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -source cpls.cc -function 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -source cpls.cc -function 'unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -source cpls.cc -function function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -source cpls.cc -function unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -source unknown_file.cc -function "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -source unknown_file.cc -function "unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -source unknown_file.cc -function 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -source unknown_file.cc -function 'unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -source unknown_file.cc -function function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b -source unknown_file.cc -function unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b cpls.cc: "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b cpls.cc: "unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b cpls.cc: 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b cpls.cc: 'unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b cpls.cc: function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b cpls.cc: unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b cpls.cc:"function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b cpls.cc:"unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b cpls.cc:'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b cpls.cc:'unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b cpls.cc:function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b cpls.cc:unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b unknown_file.cc: "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b unknown_file.cc: "unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b unknown_file.cc: 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b unknown_file.cc: 'unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b unknown_file.cc: function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b unknown_file.cc: unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b unknown_file.cc:"function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b unknown_file.cc:"unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b unknown_file.cc:'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b unknown_file.cc:'unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b unknown_file.cc:function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b unknown_file.cc:unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: cmd complete "b unknown_function
new UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-function: show editing
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b "cpls.cc": "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b "cpls.cc": "unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b "cpls.cc": 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b "cpls.cc": 'unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b "cpls.cc": function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b "cpls.cc": unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b "cpls.cc":"function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b "cpls.cc":"unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b "cpls.cc":'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b "cpls.cc":'unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b "cpls.cc":function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b "cpls.cc":unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b "unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b 'cpls.cc': "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b 'cpls.cc': "unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b 'cpls.cc': 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b 'cpls.cc': 'unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b 'cpls.cc': function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b 'cpls.cc': unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b 'cpls.cc':"function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b 'cpls.cc':"unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b 'cpls.cc':'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b 'cpls.cc':'unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b 'cpls.cc':function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b 'cpls.cc':unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b 'unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b -function "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b -function "unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b -function 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b -function 'unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b -function function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b -function unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b -source "cpls.cc" -function "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b -source "cpls.cc" -function "unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b -source "cpls.cc" -function 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b -source "cpls.cc" -function 'unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b -source "cpls.cc" -function function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b -source "cpls.cc" -function unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b -source 'cpls.cc' -function "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b -source 'cpls.cc' -function "unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b -source 'cpls.cc' -function 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b -source 'cpls.cc' -function 'unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b -source 'cpls.cc' -function function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b -source 'cpls.cc' -function unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b -source cpls.cc -function "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b -source cpls.cc -function "unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b -source cpls.cc -function 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b -source cpls.cc -function 'unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b -source cpls.cc -function function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b -source cpls.cc -function unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b cpls.cc: "function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b cpls.cc: "unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b cpls.cc: 'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b cpls.cc: 'unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b cpls.cc: function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b cpls.cc: unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b cpls.cc:"function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b cpls.cc:"unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b cpls.cc:'function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b cpls.cc:'unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b cpls.cc:function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b cpls.cc:unknown_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b function_with_labels
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: cmd complete "b unknown_function
new UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-label: show editing
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-unknown-file: cmd complete "b "unknown_file.cc": "
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-unknown-file: cmd complete "b 'unknown_file.cc': "
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-unknown-file: cmd complete "b unknown_file.cc: "
new UNRESOLVED: gdb.linespec/cpcompletion.exp: keywords-after-unknown-file: show editing
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: no-data-symbols: cmd complete "b -function code_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: no-data-symbols: cmd complete "b code_"
new UNRESOLVED: gdb.linespec/cpcompletion.exp: no-data-symbols: show editing
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: operator<: cmd complete "b -function opera"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: operator<: cmd complete "b -function operat"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: operator<: cmd complete "b -function operato"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: operator<: cmd complete "b -function operator"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: operator<: cmd complete "b -function operator<"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: operator<: cmd complete "b -function operator<
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: operator<: cmd complete "b opera"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: operator<: cmd complete "b operat"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: operator<: cmd complete "b operato"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: operator<: cmd complete "b operator"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: operator<: cmd complete "b operator<"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: operator<: cmd complete "b operator<
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: operator<: compare "b -function operator<
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: operator<: compare "b operator<
new UNRESOLVED: gdb.linespec/cpcompletion.exp: operator<: show editing
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-2: all: cmd complete "b -function overload2_func"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-2: all: cmd complete "b overload2_func"
new UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-2: all: compare "b -function overload2_function" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-2: all: compare "b -function overload2_function" completion list with bp location list: info breakpoint
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: all: compare "b -function overload2_function" completion list with bp location list: matches
new UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-2: all: compare "b -function overload2_function" completion list with bp location list: set breakpoint
new UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-2: all: compare "b overload2_function" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-2: all: compare "b overload2_function" completion list with bp location list: info breakpoint
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: all: compare "b overload2_function" completion list with bp location list: matches
new UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-2: all: compare "b overload2_function" completion list with bp location list: set breakpoint
new UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-2: all: show editing
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-2: restrict scope 2: cmd complete "b
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-2: restrict scope 2: cmd complete "b -function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-2: restrict scope 2: compare "b
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-2: restrict scope 2: compare "b -function
new UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-2: restrict scope 2: show editing
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-2: restrict scope: cmd complete "b -function ns_overload2_test::overload2_func"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-2: restrict scope: cmd complete "b ns_overload2_test::overload2_func"
new UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-2: restrict scope: compare "b -function ns_overload2_test::overload2_function" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-2: restrict scope: compare "b -function ns_overload2_test::overload2_function" completion list with bp location list: info breakpoint
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: restrict scope: compare "b -function ns_overload2_test::overload2_function" completion list with bp location list: matches
new UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-2: restrict scope: compare "b -function ns_overload2_test::overload2_function" completion list with bp location list: set breakpoint
new UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-2: restrict scope: compare "b ns_overload2_test::overload2_function" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-2: restrict scope: compare "b ns_overload2_test::overload2_function" completion list with bp location list: info breakpoint
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: restrict scope: compare "b ns_overload2_test::overload2_function" completion list with bp location list: matches
new UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-2: restrict scope: compare "b ns_overload2_test::overload2_function" completion list with bp location list: set breakpoint
new UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-2: restrict scope: show editing
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-2: unique completion: "b -function ns_overload2_test::
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-2: unique completion: "b ns_overload2_test::
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-2: unique completion: cmd complete "b -function ns_overload2_test::
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-2: unique completion: cmd complete "b ns_overload2_test::
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-2: unique completion: compare "b -function ns_overload2_test::
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-2: unique completion: compare "b ns_overload2_test::
new UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-2: unique completion: show editing
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-3: all overloads: cmd complete "b -function overload3_func"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-3: all overloads: cmd complete "b overload3_func"
new UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-3: all overloads: compare "b -function overload3_function" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-3: all overloads: compare "b -function overload3_function" completion list with bp location list: info breakpoint
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-3: all overloads: compare "b -function overload3_function" completion list with bp location list: matches
new UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-3: all overloads: compare "b -function overload3_function" completion list with bp location list: set breakpoint
new UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-3: all overloads: compare "b overload3_function" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-3: all overloads: compare "b overload3_function" completion list with bp location list: info breakpoint
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-3: all overloads: compare "b overload3_function" completion list with bp location list: matches
new UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-3: all overloads: compare "b overload3_function" completion list with bp location list: set breakpoint
new UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-3: all overloads: show editing
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-3: restrict overload: cmd complete "b -function overload3_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-3: restrict overload: cmd complete "b overload3_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-3: restrict overload: compare "b -function overload3_function
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-3: restrict overload: compare "b overload3_function
new UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-3: restrict overload: show editing
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-3: restrict scope: cmd complete "b -function struct_overload3_test::overload3_func"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-3: restrict scope: cmd complete "b struct_overload3_test::overload3_func"
new UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-3: restrict scope: compare "b -function struct_overload3_test::overload3_function" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-3: restrict scope: compare "b -function struct_overload3_test::overload3_function" completion list with bp location list: info breakpoint
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-3: restrict scope: compare "b -function struct_overload3_test::overload3_function" completion list with bp location list: matches
new UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-3: restrict scope: compare "b -function struct_overload3_test::overload3_function" completion list with bp location list: set breakpoint
new UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-3: restrict scope: compare "b struct_overload3_test::overload3_function" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-3: restrict scope: compare "b struct_overload3_test::overload3_function" completion list with bp location list: info breakpoint
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-3: restrict scope: compare "b struct_overload3_test::overload3_function" completion list with bp location list: matches
new UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-3: restrict scope: compare "b struct_overload3_test::overload3_function" completion list with bp location list: set breakpoint
new UNRESOLVED: gdb.linespec/cpcompletion.exp: overload-3: restrict scope: show editing
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: overload: cmd complete "b -function overload_ambiguous_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: overload: cmd complete "b -function overload_ambiguous_test
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: overload: cmd complete "b overload_ambiguous_test
new UNRESOLVED: gdb.linespec/cpcompletion.exp: overload: compare "b -function overload_ambiguous_test" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpcompletion.exp: overload: compare "b -function overload_ambiguous_test" completion list with bp location list: info breakpoint
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload: compare "b -function overload_ambiguous_test" completion list with bp location list: matches
new UNRESOLVED: gdb.linespec/cpcompletion.exp: overload: compare "b -function overload_ambiguous_test" completion list with bp location list: set breakpoint
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: overload: compare "b -function overload_ambiguous_test
new UNRESOLVED: gdb.linespec/cpcompletion.exp: overload: compare "b overload_ambiguous_test" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpcompletion.exp: overload: compare "b overload_ambiguous_test" completion list with bp location list: info breakpoint
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload: compare "b overload_ambiguous_test" completion list with bp location list: matches
new UNRESOLVED: gdb.linespec/cpcompletion.exp: overload: compare "b overload_ambiguous_test" completion list with bp location list: set breakpoint
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: overload: compare "b overload_ambiguous_test
new UNRESOLVED: gdb.linespec/cpcompletion.exp: overload: show editing
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b "cpls-"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b "cpls-hyphen"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b "cpls2."
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b "cpls2.c"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b "cpls2.cc"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b "nonexistingfilename.cc "
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b "nonexistingfilename.cc"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b "nonexistingfilename.cc" "
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b "nonexistingfilename.cc""
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b 'cpls-"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b 'cpls-hyphen"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b 'cpls2."
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b 'cpls2.c"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b 'cpls2.cc"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b 'nonexistingfilename.cc "
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b 'nonexistingfilename.cc"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b 'nonexistingfilename.cc' "
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b 'nonexistingfilename.cc'"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b cpls-"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b cpls-hyphen"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b cpls2."
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b cpls2.c"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b cpls2.cc"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b nonexistingfilename.cc "
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: cmd complete "b nonexistingfilename.cc"
new UNRESOLVED: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: show editing
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-overload: cmd complete "b -function template_overload_fn"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-overload: cmd complete "b template_overload_fn"
new UNRESOLVED: gdb.linespec/cpcompletion.exp: template-overload: compare "b -function template_overload_fn" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpcompletion.exp: template-overload: compare "b -function template_overload_fn" completion list with bp location list: info breakpoint
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-overload: compare "b -function template_overload_fn" completion list with bp location list: matches
new UNRESOLVED: gdb.linespec/cpcompletion.exp: template-overload: compare "b -function template_overload_fn" completion list with bp location list: set breakpoint
new UNRESOLVED: gdb.linespec/cpcompletion.exp: template-overload: compare "b -function template_struct<int>::template_overload_fn" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpcompletion.exp: template-overload: compare "b -function template_struct<int>::template_overload_fn" completion list with bp location list: info breakpoint
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-overload: compare "b -function template_struct<int>::template_overload_fn" completion list with bp location list: matches
new UNRESOLVED: gdb.linespec/cpcompletion.exp: template-overload: compare "b -function template_struct<int>::template_overload_fn" completion list with bp location list: set breakpoint
new UNRESOLVED: gdb.linespec/cpcompletion.exp: template-overload: compare "b template_overload_fn" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpcompletion.exp: template-overload: compare "b template_overload_fn" completion list with bp location list: info breakpoint
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-overload: compare "b template_overload_fn" completion list with bp location list: matches
new UNRESOLVED: gdb.linespec/cpcompletion.exp: template-overload: compare "b template_overload_fn" completion list with bp location list: set breakpoint
new UNRESOLVED: gdb.linespec/cpcompletion.exp: template-overload: compare "b template_struct<int>::template_overload_fn" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpcompletion.exp: template-overload: compare "b template_struct<int>::template_overload_fn" completion list with bp location list: info breakpoint
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-overload: compare "b template_struct<int>::template_overload_fn" completion list with bp location list: matches
new UNRESOLVED: gdb.linespec/cpcompletion.exp: template-overload: compare "b template_struct<int>::template_overload_fn" completion list with bp location list: set breakpoint
new UNRESOLVED: gdb.linespec/cpcompletion.exp: template-overload: show editing
new UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: "b -function template2_fn" creates no bp locations: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: "b -function template2_fn" creates no bp locations: matches
new UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: "b -function template2_fn" creates no bp locations: set breakpoint
new UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: "b template2_fn" creates no bp locations: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: "b template2_fn" creates no bp locations: matches
new UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: "b template2_fn" creates no bp locations: set breakpoint
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_re"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_t"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_ty"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_typ"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<in"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> "
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> t"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> te"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> tem"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> temp"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> templ"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> templa"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> templat"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_s"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_st"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_str"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_stru"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struc"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<t"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<te"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<tem"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<temp"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<templ"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<templa"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<templat"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_r"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_re"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_t"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_ty"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_typ"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<in"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> "
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::t"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::te"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::tem"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::temp"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::templ"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::templa"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::templat"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_f"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<in"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, "
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, in"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, int"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, int>"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, int>
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int,"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int> template2_struct<template2_ret_type<int>"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_ret_type<int>"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_st"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_str"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_stru"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struc"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<t"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<te"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<tem"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<temp"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<templ"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<templa"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<templat"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_r"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_re"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_t"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_ty"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_typ"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<in"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> "
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::t"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::te"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::tem"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::temp"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::templ"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::templa"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::templat"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::template"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::template2"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::template2_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::template2_f"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::template2_fn"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::template2_fn<"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::template2_fn<i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::template2_fn<in"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::template2_fn<int"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::template2_fn<int, "
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::template2_fn<int, i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::template2_fn<int, in"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::template2_fn<int, int"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::template2_fn<int, int>"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::template2_fn<int, int>
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int> >::template2_fn<int,"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b -function template2_struct<template2_ret_type<int>"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_re"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_t"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_ty"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_typ"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<in"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> "
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> t"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> te"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> tem"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> temp"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> templ"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> templa"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> templat"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_s"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_st"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_str"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_stru"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struc"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<t"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<te"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<tem"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<temp"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<templ"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<templa"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<templat"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_r"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_re"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_t"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_ty"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_typ"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<in"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> "
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::t"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::te"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::tem"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::temp"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::templ"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::templa"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::templat"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_f"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<in"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, "
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, in"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, int"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, int>"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, int>
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int,"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int> template2_struct<template2_ret_type<int>"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_ret_type<int>"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_st"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_str"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_stru"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struc"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<t"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<te"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<tem"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<temp"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<templ"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<templa"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<templat"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_r"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_re"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_t"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_ty"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_typ"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<in"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> "
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >:"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::t"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::te"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::tem"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::temp"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::templ"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::templa"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::templat"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::template"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::template2"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::template2_"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::template2_f"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::template2_fn"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::template2_fn<"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::template2_fn<i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::template2_fn<in"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::template2_fn<int"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::template2_fn<int, "
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::template2_fn<int, i"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::template2_fn<int, in"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::template2_fn<int, int"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::template2_fn<int, int>"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::template2_fn<int, int>
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int> >::template2_fn<int,"
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: cmd complete "b template2_struct<template2_ret_type<int>"
new UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b -function template2_fn<int, int>" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b -function template2_fn<int, int>" completion list with bp location list: info breakpoint
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b -function template2_fn<int, int>" completion list with bp location list: matches
new UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b -function template2_fn<int, int>" completion list with bp location list: set breakpoint
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b -function template2_fn<int, int>
new UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, int>" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, int>" completion list with bp location list: info breakpoint
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, int>" completion list with bp location list: matches
new UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, int>" completion list with bp location list: set breakpoint
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b -function template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, int>
new UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b -function template2_struct<template2_ret_type<int> >::template2_fn<int, int>" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b -function template2_struct<template2_ret_type<int> >::template2_fn<int, int>" completion list with bp location list: info breakpoint
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b -function template2_struct<template2_ret_type<int> >::template2_fn<int, int>" completion list with bp location list: matches
new UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b -function template2_struct<template2_ret_type<int> >::template2_fn<int, int>" completion list with bp location list: set breakpoint
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b -function template2_struct<template2_ret_type<int> >::template2_fn<int, int>
new UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b template2_fn<int, int>" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b template2_fn<int, int>" completion list with bp location list: info breakpoint
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b template2_fn<int, int>" completion list with bp location list: matches
new UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b template2_fn<int, int>" completion list with bp location list: set breakpoint
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b template2_fn<int, int>
new UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, int>" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, int>" completion list with bp location list: info breakpoint
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, int>" completion list with bp location list: matches
new UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, int>" completion list with bp location list: set breakpoint
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b template2_ret_type<int> template2_struct<template2_ret_type<int> >::template2_fn<int, int>
new UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b template2_struct<template2_ret_type<int> >::template2_fn<int, int>" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b template2_struct<template2_ret_type<int> >::template2_fn<int, int>" completion list with bp location list: info breakpoint
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b template2_struct<template2_ret_type<int> >::template2_fn<int, int>" completion list with bp location list: matches
new UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b template2_struct<template2_ret_type<int> >::template2_fn<int, int>" completion list with bp location list: set breakpoint
PASS -> UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: compare "b template2_struct<template2_ret_type<int> >::template2_fn<int, int>
new UNRESOLVED: gdb.linespec/cpcompletion.exp: template-ret-type: show editing
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: abi tag in parameters: cmd complete "b -function test_abi_tag_in_para"
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: abi tag in parameters: cmd complete "b -function test_abi_tag_in_params
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: abi tag in parameters: cmd complete "b test_abi_tag_in_para"
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: abi tag in parameters: cmd complete "b test_abi_tag_in_params
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: abi tag in parameters: compare "b -function test_abi_tag_in_params
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: abi tag in parameters: compare "b test_abi_tag_in_params
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: abi tag in parameters: show editing
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: breakpoints on overloaded functions: compare "b -function test_abi_tag_ovld_function" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: breakpoints on overloaded functions: compare "b -function test_abi_tag_ovld_function" completion list with bp location list: info breakpoint
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: breakpoints on overloaded functions: compare "b -function test_abi_tag_ovld_function" completion list with bp location list: matches
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: breakpoints on overloaded functions: compare "b -function test_abi_tag_ovld_function" completion list with bp location list: set breakpoint
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: breakpoints on overloaded functions: compare "b -function test_abi_tag_ovld_function[abi:tag1]" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: breakpoints on overloaded functions: compare "b -function test_abi_tag_ovld_function[abi:tag1]" completion list with bp location list: info breakpoint
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: breakpoints on overloaded functions: compare "b -function test_abi_tag_ovld_function[abi:tag1]" completion list with bp location list: matches
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: breakpoints on overloaded functions: compare "b -function test_abi_tag_ovld_function[abi:tag1]" completion list with bp location list: set breakpoint
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: breakpoints on overloaded functions: compare "b test_abi_tag_ovld_function" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: breakpoints on overloaded functions: compare "b test_abi_tag_ovld_function" completion list with bp location list: info breakpoint
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: breakpoints on overloaded functions: compare "b test_abi_tag_ovld_function" completion list with bp location list: matches
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: breakpoints on overloaded functions: compare "b test_abi_tag_ovld_function" completion list with bp location list: set breakpoint
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: breakpoints on overloaded functions: compare "b test_abi_tag_ovld_function[abi:tag1]" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: breakpoints on overloaded functions: compare "b test_abi_tag_ovld_function[abi:tag1]" completion list with bp location list: info breakpoint
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: breakpoints on overloaded functions: compare "b test_abi_tag_ovld_function[abi:tag1]" completion list with bp location list: matches
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: breakpoints on overloaded functions: compare "b test_abi_tag_ovld_function[abi:tag1]" completion list with bp location list: set breakpoint
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: cmd complete "b -function test_abi_tag_function[abi:unknown]
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions different abi: cmd complete "b -function test_abi_tag_ovld2_f"
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions different abi: cmd complete "b -function test_abi_tag_ovld2_function["
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions different abi: cmd complete "b -function test_abi_tag_ovld2_function[abi:tag1"
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions different abi: cmd complete "b -function test_abi_tag_ovld2_function[abi:tag2"
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions different abi: cmd complete "b test_abi_tag_ovld2_f"
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions different abi: cmd complete "b test_abi_tag_ovld2_function["
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions different abi: cmd complete "b test_abi_tag_ovld2_function[abi:tag1"
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions different abi: cmd complete "b test_abi_tag_ovld2_function[abi:tag2"
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions different abi: show editing
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions: cmd complete "b -function test_abi_tag_ovld_f"
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions: cmd complete "b -function test_abi_tag_ovld_function["
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions: cmd complete "b test_abi_tag_ovld_f"
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions: cmd complete "b test_abi_tag_ovld_function["
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions: show editing
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of struct prefixes with tags: cmd complete "b -function test_abi_tag_struc"
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of struct prefixes with tags: cmd complete "b -function test_abi_tag_struct::t"
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of struct prefixes with tags: cmd complete "b -function test_abi_tag_struct["
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of struct prefixes with tags: cmd complete "b -function test_abi_tag_struct[abi:tag1]::t"
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of struct prefixes with tags: cmd complete "b -function test_abi_tag_struct[abi:tag1]::test_abi_tag_struct["
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of struct prefixes with tags: cmd complete "b test_abi_tag_struc"
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of struct prefixes with tags: cmd complete "b test_abi_tag_struct::t"
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of struct prefixes with tags: cmd complete "b test_abi_tag_struct["
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of struct prefixes with tags: cmd complete "b test_abi_tag_struct[abi:tag1]::t"
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of struct prefixes with tags: cmd complete "b test_abi_tag_struct[abi:tag1]::test_abi_tag_struct["
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of struct prefixes with tags: show editing
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints wrong ABI tag: "b -function test_abi_tag_function [abi:tag2]
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints wrong ABI tag: "b -function test_abi_tag_function [abi:tag2]" creates no bp locations: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints wrong ABI tag: "b -function test_abi_tag_function [abi:tag2]" creates no bp locations: matches
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints wrong ABI tag: "b -function test_abi_tag_function [abi:tag2]" creates no bp locations: set breakpoint
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints wrong ABI tag: "b -function test_abi_tag_function[abi:tag2]" creates no bp locations: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints wrong ABI tag: "b -function test_abi_tag_function[abi:tag2]" creates no bp locations: matches
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints wrong ABI tag: "b -function test_abi_tag_function[abi:tag2]" creates no bp locations: set breakpoint
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints wrong ABI tag: "b -function test_abi_tag_function[abi:tag2]
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints wrong ABI tag: "b test_abi_tag_function [abi:tag2]
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints wrong ABI tag: "b test_abi_tag_function [abi:tag2]" creates no bp locations: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints wrong ABI tag: "b test_abi_tag_function [abi:tag2]" creates no bp locations: matches
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints wrong ABI tag: "b test_abi_tag_function [abi:tag2]" creates no bp locations: set breakpoint
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints wrong ABI tag: "b test_abi_tag_function[abi:tag2]" creates no bp locations: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints wrong ABI tag: "b test_abi_tag_function[abi:tag2]" creates no bp locations: matches
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints wrong ABI tag: "b test_abi_tag_function[abi:tag2]" creates no bp locations: set breakpoint
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints wrong ABI tag: "b test_abi_tag_function[abi:tag2]
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints wrong ABI tag: cmd complete "b -function test_abi_tag_function [abi:tag2]
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints wrong ABI tag: cmd complete "b -function test_abi_tag_function [abi:tag2]"
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints wrong ABI tag: cmd complete "b -function test_abi_tag_function[abi:tag2]"
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints wrong ABI tag: cmd complete "b -function test_abi_tag_function[abi:tag2]
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints wrong ABI tag: cmd complete "b test_abi_tag_function [abi:tag2]
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints wrong ABI tag: cmd complete "b test_abi_tag_function [abi:tag2]"
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints wrong ABI tag: cmd complete "b test_abi_tag_function[abi:tag2]"
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints wrong ABI tag: cmd complete "b test_abi_tag_function[abi:tag2]
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints wrong ABI tag: show editing
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b -function test_abi_tag_function
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b -function test_abi_tag_function [abi:tag1]
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b -function test_abi_tag_function [abi:tag1]" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b -function test_abi_tag_function [abi:tag1]" completion list with bp location list: info breakpoint
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b -function test_abi_tag_function [abi:tag1]" completion list with bp location list: matches
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b -function test_abi_tag_function [abi:tag1]" completion list with bp location list: set breakpoint
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b -function test_abi_tag_function" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b -function test_abi_tag_function" completion list with bp location list: info breakpoint
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b -function test_abi_tag_function" completion list with bp location list: matches
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b -function test_abi_tag_function" completion list with bp location list: set breakpoint
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b -function test_abi_tag_function[abi:tag1]" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b -function test_abi_tag_function[abi:tag1]" completion list with bp location list: info breakpoint
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b -function test_abi_tag_function[abi:tag1]" completion list with bp location list: matches
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b -function test_abi_tag_function[abi:tag1]" completion list with bp location list: set breakpoint
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b -function test_abi_tag_function[abi:tag1]
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b test_abi_tag_function
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b test_abi_tag_function [abi:tag1]
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b test_abi_tag_function [abi:tag1]" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b test_abi_tag_function [abi:tag1]" completion list with bp location list: info breakpoint
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b test_abi_tag_function [abi:tag1]" completion list with bp location list: matches
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b test_abi_tag_function [abi:tag1]" completion list with bp location list: set breakpoint
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b test_abi_tag_function" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b test_abi_tag_function" completion list with bp location list: info breakpoint
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b test_abi_tag_function" completion list with bp location list: matches
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b test_abi_tag_function" completion list with bp location list: set breakpoint
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b test_abi_tag_function[abi:tag1]" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b test_abi_tag_function[abi:tag1]" completion list with bp location list: info breakpoint
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b test_abi_tag_function[abi:tag1]" completion list with bp location list: matches
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b test_abi_tag_function[abi:tag1]" completion list with bp location list: set breakpoint
PASS -> UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: set breakpoints: compare "b test_abi_tag_function[abi:tag1]
new UNRESOLVED: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: show editing
new UNRESOLVED: gdb.linespec/cpls-ops.exp: arrow-operator: show editing
new UNRESOLVED: gdb.linespec/cpls-ops.exp: assignment-operator: show editing
new UNRESOLVED: gdb.linespec/cpls-ops.exp: conversion-operator: show editing
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-delete: "b -function test_op_delete::operator" creates no bp locations: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-delete: "b -function test_op_delete::operator" creates no bp locations: set breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-delete: "b test_op_delete::operator" creates no bp locations: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-delete: "b test_op_delete::operator" creates no bp locations: set breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-delete: compare "b -function test_op_delete::operator delete" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-delete: compare "b -function test_op_delete::operator delete" completion list with bp location list: info breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-delete: compare "b -function test_op_delete::operator delete" completion list with bp location list: set breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-delete: compare "b test_op_delete::operator delete" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-delete: compare "b test_op_delete::operator delete" completion list with bp location list: info breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-delete: compare "b test_op_delete::operator delete" completion list with bp location list: set breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-delete: show editing
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-delete[]: "b -function test_op_delete_array::operator" creates no bp locations: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-delete[]: "b -function test_op_delete_array::operator" creates no bp locations: set breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-delete[]: "b test_op_delete_array::operator" creates no bp locations: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-delete[]: "b test_op_delete_array::operator" creates no bp locations: set breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-delete[]: compare "b -function test_op_delete_array::operator delete[]" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-delete[]: compare "b -function test_op_delete_array::operator delete[]" completion list with bp location list: info breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-delete[]: compare "b -function test_op_delete_array::operator delete[]" completion list with bp location list: set breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-delete[]: compare "b test_op_delete_array::operator delete[]" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-delete[]: compare "b test_op_delete_array::operator delete[]" completion list with bp location list: info breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-delete[]: compare "b test_op_delete_array::operator delete[]" completion list with bp location list: set breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-delete[]: show editing
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-new: "b -function test_op_new::operator" creates no bp locations: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-new: "b -function test_op_new::operator" creates no bp locations: set breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-new: "b test_op_new::operator" creates no bp locations: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-new: "b test_op_new::operator" creates no bp locations: set breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-new: compare "b -function test_op_new::operator new" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-new: compare "b -function test_op_new::operator new" completion list with bp location list: info breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-new: compare "b -function test_op_new::operator new" completion list with bp location list: set breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-new: compare "b test_op_new::operator new" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-new: compare "b test_op_new::operator new" completion list with bp location list: info breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-new: compare "b test_op_new::operator new" completion list with bp location list: set breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-new: show editing
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-new[]: "b -function test_op_new_array::operator" creates no bp locations: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-new[]: "b -function test_op_new_array::operator" creates no bp locations: set breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-new[]: "b test_op_new_array::operator" creates no bp locations: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-new[]: "b test_op_new_array::operator" creates no bp locations: set breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-new[]: compare "b -function test_op_new_array::operator new[]" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-new[]: compare "b -function test_op_new_array::operator new[]" completion list with bp location list: info breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-new[]: compare "b -function test_op_new_array::operator new[]" completion list with bp location list: set breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-new[]: compare "b test_op_new_array::operator new[]" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-new[]: compare "b test_op_new_array::operator new[]" completion list with bp location list: info breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-new[]: compare "b test_op_new_array::operator new[]" completion list with bp location list: set breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator-new[]: show editing
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: "b -function test_op_array::operator" creates no bp locations: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: "b -function test_op_array::operator" creates no bp locations: set breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: "b test_op_array::operator" creates no bp locations: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: "b test_op_array::operator" creates no bp locations: set breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: compare "b -function test_op_array::operator[]" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: compare "b -function test_op_array::operator[]" completion list with bp location list: info breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: compare "b -function test_op_array::operator[]" completion list with bp location list: set breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: compare "b -function test_op_array::operator[]<int>" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: compare "b -function test_op_array::operator[]<int>" completion list with bp location list: info breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: compare "b -function test_op_array::operator[]<int>" completion list with bp location list: set breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: compare "b test_op_array::operator[]" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: compare "b test_op_array::operator[]" completion list with bp location list: info breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: compare "b test_op_array::operator[]" completion list with bp location list: set breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: compare "b test_op_array::operator[]<int>" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: compare "b test_op_array::operator[]<int>" completion list with bp location list: info breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: compare "b test_op_array::operator[]<int>" completion list with bp location list: set breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: show editing
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator[]-unique: "b -function test_unique_op_array::operator" creates no bp locations: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator[]-unique: "b -function test_unique_op_array::operator" creates no bp locations: set breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator[]-unique: "b test_unique_op_array::operator" creates no bp locations: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator[]-unique: "b test_unique_op_array::operator" creates no bp locations: set breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator[]-unique: compare "b -function test_unique_op_array::operator []" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator[]-unique: compare "b -function test_unique_op_array::operator []" completion list with bp location list: info breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator[]-unique: compare "b -function test_unique_op_array::operator []" completion list with bp location list: set breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator[]-unique: compare "b -function test_unique_op_array::operator[]" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator[]-unique: compare "b -function test_unique_op_array::operator[]" completion list with bp location list: info breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator[]-unique: compare "b -function test_unique_op_array::operator[]" completion list with bp location list: set breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator[]-unique: compare "b test_unique_op_array::operator []" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator[]-unique: compare "b test_unique_op_array::operator []" completion list with bp location list: info breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator[]-unique: compare "b test_unique_op_array::operator []" completion list with bp location list: set breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator[]-unique: compare "b test_unique_op_array::operator[]" completion list with bp location list: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator[]-unique: compare "b test_unique_op_array::operator[]" completion list with bp location list: info breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator[]-unique: compare "b test_unique_op_array::operator[]" completion list with bp location list: set breakpoint
new UNRESOLVED: gdb.linespec/cpls-ops.exp: operator[]-unique: show editing
new UNRESOLVED: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: show editing
new UNRESOLVED: gdb.linespec/cpls-ops.exp: ops-valid-unique: no-whitespace: show editing
new UNRESOLVED: gdb.linespec/cpls-ops.exp: ops-valid-unique: show editing
new UNRESOLVED: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: show editing
new FAIL: gdb.linespec/keywords.exp: can't run to main
PASS -> UNRESOLVED: gdb.linespec/linespec.exp: add inferior for linespec tests
PASS -> UNRESOLVED: gdb.linespec/linespec.exp: clear breakpoint using dir/file:line
PASS -> UNRESOLVED: gdb.linespec/linespec.exp: complete condition
PASS -> UNRESOLVED: gdb.linespec/linespec.exp: multi-location break using duplicate function name
PASS -> UNRESOLVED: gdb.linespec/linespec.exp: multi-location break using duplicate function name and label
PASS -> UNRESOLVED: gdb.linespec/linespec.exp: multi-location break using file:line
PASS -> UNRESOLVED: gdb.linespec/linespec.exp: set breakpoint at all instances of NameSpace::overload
PASS -> UNRESOLVED: gdb.linespec/linespec.exp: set breakpoint at lspec.cc instance of NameSpace::overload
PASS -> UNRESOLVED: gdb.linespec/linespec.exp: set breakpoint at main in both inferiors
PASS -> UNRESOLVED: gdb.linespec/linespec.exp: set breakpoint at non-existent lspec.cc instance of NameSpace::overload
PASS -> UNRESOLVED: gdb.linespec/linespec.exp: set breakpoint at specific instance of NameSpace::overload
PASS -> UNRESOLVED: gdb.linespec/linespec.exp: set breakpoint in body.h
PASS -> UNRESOLVED: gdb.linespec/linespec.exp: set breakpoint in f1
PASS -> UNRESOLVED: gdb.linespec/linespec.exp: set breakpoint on non-existent function
PASS -> UNRESOLVED: gdb.linespec/linespec.exp: set the new inferior file for linespec tests
new UNRESOLVED: gdb.linespec/linespec.exp: show editing
PASS -> UNRESOLVED: gdb.linespec/linespec.exp: single-location break using dir/file:line
PASS -> UNRESOLVED: gdb.linespec/linespec.exp: switch to inferior 2 for linespec tests
PASS -> UNRESOLVED: gdb.linespec/ls-dollar.exp: break $dollar_func
PASS -> UNRESOLVED: gdb.linespec/ls-dollar.exp: break ls-dollar.cc:$theline
PASS -> UNRESOLVED: gdb.linespec/ls-dollar.exp: list ls-dollar.cc:$theline
PASS -> UNRESOLVED: gdb.linespec/ls-dollar.exp: set var $theline = 20
new FAIL: gdb.linespec/ls-errs.exp: lang=C++: can't run to main
new FAIL: gdb.linespec/ls-errs.exp: lang=C: can't run to main
new FAIL: gdb.linespec/thread.exp: can't run to main
new UNRESOLVED: gdb.mi/dw2-ref-missing-frame.exp:
PASS -> UNRESOLVED: gdb.mi/dw2-ref-missing-frame.exp: breakpoint at func_loopfb_marker
PASS -> UNRESOLVED: gdb.mi/dw2-ref-missing-frame.exp: breakpoint at func_nofb_marker
PASS -> UNRESOLVED: gdb.mi/dw2-ref-missing-frame.exp: test func_loopfb_var
PASS -> UNRESOLVED: gdb.mi/dw2-ref-missing-frame.exp: test func_nofb_marker
new UNRESOLVED: gdb.mi/gdb2549.exp:
PASS -> UNRESOLVED: gdb.mi/gdb2549.exp: breakpoint at main
PASS -> UNRESOLVED: gdb.mi/gdb2549.exp: register values d
PASS -> UNRESOLVED: gdb.mi/gdb2549.exp: register values f
PASS -> UNRESOLVED: gdb.mi/gdb2549.exp: register values o
PASS -> UNRESOLVED: gdb.mi/gdb2549.exp: register values t
PASS -> UNRESOLVED: gdb.mi/gdb2549.exp: register values x
new UNRESOLVED: gdb.mi/gdb669.exp:
PASS -> UNRESOLVED: gdb.mi/gdb669.exp: -thread-list-ids
PASS -> UNRESOLVED: gdb.mi/gdb669.exp: breakpoint at main
PASS -> FAIL: gdb.mi/gdb669.exp: finding MI result string
PASS -> FAIL: gdb.mi/gdb669.exp: finding number of threads in MI output
PASS -> UNRESOLVED: gdb.mi/gdb669.exp: info threads
PASS -> UNRESOLVED: gdb.mi/gdb669.exp: next, try 0
PASS -> UNRESOLVED: gdb.mi/gdb669.exp: next, try 1
PASS -> UNRESOLVED: gdb.mi/gdb669.exp: next, try 2
PASS -> UNRESOLVED: gdb.mi/gdb669.exp: next, try 3
new UNRESOLVED: gdb.mi/gdb701.exp:
PASS -> UNRESOLVED: gdb.mi/gdb701.exp: breakpoint at main
PASS -> UNRESOLVED: gdb.mi/gdb701.exp: create fooPtr
PASS -> UNRESOLVED: gdb.mi/gdb701.exp: list children of fooPtr
PASS -> UNRESOLVED: gdb.mi/gdb701.exp: list children of fooPtr.x
PASS -> UNRESOLVED: gdb.mi/gdb701.exp: list children of fooPtr.y
PASS -> UNRESOLVED: gdb.mi/gdb701.exp: list children of fooPtr.z
PASS -> UNRESOLVED: gdb.mi/gdb701.exp: step over "foo = 0"
new UNRESOLVED: gdb.mi/gdb792.exp:
PASS -> UNRESOLVED: gdb.mi/gdb792.exp: breakpoint at main
PASS -> UNRESOLVED: gdb.mi/gdb792.exp: create var for class A
PASS -> UNRESOLVED: gdb.mi/gdb792.exp: create var for class C which has baseclass A
PASS -> UNRESOLVED: gdb.mi/gdb792.exp: list children of A.private
PASS -> UNRESOLVED: gdb.mi/gdb792.exp: list children of A.protected
PASS -> UNRESOLVED: gdb.mi/gdb792.exp: list children of A.protected.b
PASS -> UNRESOLVED: gdb.mi/gdb792.exp: list children of A.protected.b.private
PASS -> UNRESOLVED: gdb.mi/gdb792.exp: list children of A.protected.b.public
PASS -> UNRESOLVED: gdb.mi/gdb792.exp: list children of A.public
PASS -> UNRESOLVED: gdb.mi/gdb792.exp: list children of class A
PASS -> UNRESOLVED: gdb.mi/gdb792.exp: list children of class C
PASS -> UNRESOLVED: gdb.mi/mi-async-run.exp: expect interrupt
PASS -> UNRESOLVED: gdb.mi/mi-async-run.exp: send interrupt command
new UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main:
KFAIL -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: break-insert -r operation
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: break-insert -t operation
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: breakpoint at nonexistent function
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: breakpoint commands: check that commands are cleared
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: breakpoint commands: check that commands are set
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: breakpoint commands: clear commands
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: breakpoint commands: insert breakpoint at basics.c:callee2
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: breakpoint commands: set commands
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: breakpoint with garbage after location
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: conditional breakpoint with garbage after location
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: create varobj for function call
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: delete temp breakpoints
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with ignore count at callme
KFAIL -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp .*llee
KFAIL -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee
KFAIL -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee2
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: insert temp breakpoint at "<fullfilename>":$line_callee4_head
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: insert temp breakpoint at basics.c:$line_callee3_head
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: insert temp breakpoint at basics.c:callee2
KFAIL -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: list of breakpoints
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: run to breakpoint with ignore count
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: test disabled creation
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: test disabled creation: cleanup
PASS -> UNRESOLVED: gdb.mi/mi-break.exp: mi-mode=main: update varobj for function call
new UNRESOLVED: gdb.mi/mi-breakpoint-changed.exp: test_insert_delete_modify:
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-changed.exp: test_insert_delete_modify: change command
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-changed.exp: test_pending_resolved: pending resolved: breakpoint on pendfunc1 resolved
new UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=0:
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=0: -break-disable 2.2
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=0: -break-enable 2.2
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=0: -break-info
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=0: break add
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=0: breakpoint at main
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=0: dis 2.2
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=0: en 2.2
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=0: insert breakpoint with MI command
new UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=1:
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=1: -break-disable 2.2
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=1: -break-enable 2.2
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=1: -break-info
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=1: break add
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=1: breakpoint at main
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=1: dis 2.2
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=1: en 2.2
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=1: insert breakpoint with MI command
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=1: send -fix-multi-location-breakpoint-output
new UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=0:
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=0: -break-disable 2.2
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=0: -break-enable 2.2
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=0: -break-info
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=0: break add
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=0: breakpoint at main
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=0: dis 2.2
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=0: en 2.2
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=0: insert breakpoint with MI command
new UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=1:
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=1: -break-disable 2.2
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=1: -break-enable 2.2
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=1: -break-info
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=1: break add
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=1: breakpoint at main
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=1: dis 2.2
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=1: en 2.2
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=1: insert breakpoint with MI command
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=1: send -fix-multi-location-breakpoint-output
new UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=0:
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=0: -break-disable 2.2
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=0: -break-enable 2.2
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=0: -break-info
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=0: break add
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=0: breakpoint at main
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=0: dis 2.2
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=0: en 2.2
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=0: insert breakpoint with MI command
new UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=1:
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=1: -break-disable 2.2
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=1: -break-enable 2.2
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=1: -break-info
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=1: break add
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=1: breakpoint at main
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=1: dis 2.2
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=1: en 2.2
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=1: insert breakpoint with MI command
PASS -> UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=1: send -fix-multi-location-breakpoint-output
new UNRESOLVED: gdb.mi/mi-catch-cpp-exceptions.exp:
PASS -> UNRESOLVED: gdb.mi/mi-catch-cpp-exceptions.exp: breakpoint at main
new UNRESOLVED: gdb.mi/mi-catch-cpp-exceptions.exp: check for stap probe in libstdc++
new UNRESOLVED: gdb.mi/mi-catch-load.exp:
PASS -> UNRESOLVED: gdb.mi/mi-catch-load.exp: breakpoint at main
PASS -> UNRESOLVED: gdb.mi/mi-catch-load.exp: catch-load: auto-solib-add on
PASS -> UNRESOLVED: gdb.mi/mi-catch-load.exp: catch-load: catch load
new UNRESOLVED: gdb.mi/mi-catch-load.exp: catch-load: continue
PASS -> UNRESOLVED: gdb.mi/mi-catch-load.exp: catch-unload: auto-solib-add on
PASS -> UNRESOLVED: gdb.mi/mi-catch-load.exp: catch-unload: catch unload
new UNRESOLVED: gdb.mi/mi-catch-load.exp: catch-unload: continue
new UNRESOLVED: gdb.mi/mi-cli.exp:
PASS -> UNRESOLVED: gdb.mi/mi-cli.exp: -break-insert -t basics.c:$line_main_callme_2
PASS -> UNRESOLVED: gdb.mi/mi-cli.exp: -break-insert -t basics.c:$line_main_hello
PASS -> UNRESOLVED: gdb.mi/mi-cli.exp: -exec-continue to line $line_main_callme_2
new UNRESOLVED: gdb.mi/mi-cli.exp: -exec-continue to line $line_main_hello
new UNRESOLVED: gdb.mi/mi-cli.exp: -exec-step to line $line_callee4_next_step
PASS -> UNRESOLVED: gdb.mi/mi-cli.exp: -interpreter-exec console "break callee4"
PASS -> UNRESOLVED: gdb.mi/mi-cli.exp: -interpreter-exec console "delete 2"
PASS -> UNRESOLVED: gdb.mi/mi-cli.exp: -interpreter-exec console "down"
PASS -> UNRESOLVED: gdb.mi/mi-cli.exp: -interpreter-exec console "frame 2"
PASS -> UNRESOLVED: gdb.mi/mi-cli.exp: -interpreter-exec console "help set args"
PASS -> UNRESOLVED: gdb.mi/mi-cli.exp: -interpreter-exec console "info break"
PASS -> UNRESOLVED: gdb.mi/mi-cli.exp: -interpreter-exec console "list"
PASS -> UNRESOLVED: gdb.mi/mi-cli.exp: -interpreter-exec console "list" at basics.c:$line_main_callme_2
PASS -> UNRESOLVED: gdb.mi/mi-cli.exp: -interpreter-exec console "list" at basics.c:$line_main_return
PASS -> UNRESOLVED: gdb.mi/mi-cli.exp: -interpreter-exec console "set $pc=0x0"
PASS -> UNRESOLVED: gdb.mi/mi-cli.exp: -interpreter-exec console "set args foobar"
PASS -> UNRESOLVED: gdb.mi/mi-cli.exp: -interpreter-exec console "set listsize 1"
PASS -> UNRESOLVED: gdb.mi/mi-cli.exp: -interpreter-exec console "set listsize 10"
PASS -> UNRESOLVED: gdb.mi/mi-cli.exp: -interpreter-exec console "show args"
PASS -> UNRESOLVED: gdb.mi/mi-cli.exp: -interpreter-exec console "up"
PASS -> UNRESOLVED: gdb.mi/mi-cli.exp: -stack-select-frame 0
PASS -> UNRESOLVED: gdb.mi/mi-cli.exp: 34 next: CLI output
PASS -> UNRESOLVED: gdb.mi/mi-cli.exp: 34 next: run
PASS -> UNRESOLVED: gdb.mi/mi-cli.exp: 34 next: stop
PASS -> FAIL: gdb.mi/mi-cli.exp: CLI finish: check CLI output
PASS -> UNRESOLVED: gdb.mi/mi-cli.exp: CLI finish: check MI output
new UNRESOLVED: gdb.mi/mi-cli.exp: CLI finish: collect CLI output
new UNRESOLVED: gdb.mi/mi-cli.exp: CLI finish: send CLI command
PASS -> UNRESOLVED: gdb.mi/mi-cli.exp: breakpoint at main
PASS -> FAIL: gdb.mi/mi-cli.exp: breakpoint hit produces CLI output
PASS -> UNRESOLVED: gdb.mi/mi-cli.exp: check *stopped from CLI command
PASS -> UNRESOLVED: gdb.mi/mi-cli.exp: check *stopped from CLI command 2
new UNRESOLVED: gdb.mi/mi-cli.exp: collect CLI output for -exec-step
new UNRESOLVED: gdb.mi/mi-cli.exp: collect CLI output for breakpoint hit
PASS -> UNRESOLVED: gdb.mi/mi-cli.exp: continue to callee4
PASS -> UNRESOLVED: gdb.mi/mi-cli.exp: temporary breakpoint output hit in MI
new UNRESOLVED: gdb.mi/mi-complete.exp:
PASS -> UNRESOLVED: gdb.mi/mi-complete.exp: -complete "b mai"
PASS -> UNRESOLVED: gdb.mi/mi-complete.exp: -complete "b push_ba", wildmatching
PASS -> UNRESOLVED: gdb.mi/mi-complete.exp: -complete bogus
PASS -> UNRESOLVED: gdb.mi/mi-complete.exp: -complete br
PASS -> UNRESOLVED: gdb.mi/mi-complete.exp: -complete br, max-completions 0
PASS -> UNRESOLVED: gdb.mi/mi-complete.exp: -complete br, max-completions 1
PASS -> UNRESOLVED: gdb.mi/mi-complete.exp: -info-gdb-mi-command complete
PASS -> UNRESOLVED: gdb.mi/mi-complete.exp: breakpoint at main
PASS -> UNRESOLVED: gdb.mi/mi-complete.exp: set max-completions 0
PASS -> UNRESOLVED: gdb.mi/mi-complete.exp: set max-completions 1
new UNRESOLVED: gdb.mi/mi-condbreak-call-thr-state.exp: mt:
PASS -> UNRESOLVED: gdb.mi/mi-condbreak-call-thr-state.exp: mt: breakpoint at test
PASS -> UNRESOLVED: gdb.mi/mi-condbreak-call-thr-state.exp: mt: insert conditional breakpoint
PASS -> UNRESOLVED: gdb.mi/mi-condbreak-call-thr-state.exp: mt: insert end breakpoint
PASS -> UNRESOLVED: gdb.mi/mi-condbreak-call-thr-state.exp: mt: no spurious *running notifications
PASS -> UNRESOLVED: gdb.mi/mi-condbreak-call-thr-state.exp: mt: successfully compiled posix threads test case
new UNRESOLVED: gdb.mi/mi-condbreak-call-thr-state.exp: st:
PASS -> UNRESOLVED: gdb.mi/mi-condbreak-call-thr-state.exp: st: breakpoint at test
PASS -> UNRESOLVED: gdb.mi/mi-condbreak-call-thr-state.exp: st: insert conditional breakpoint
PASS -> UNRESOLVED: gdb.mi/mi-condbreak-call-thr-state.exp: st: insert end breakpoint
PASS -> UNRESOLVED: gdb.mi/mi-condbreak-call-thr-state.exp: st: no spurious *running notifications
new UNRESOLVED: gdb.mi/mi-console.exp:
PASS -> UNRESOLVED: gdb.mi/mi-console.exp: Testing console output
PASS -> UNRESOLVED: gdb.mi/mi-console.exp: breakpoint at main
PASS -> UNRESOLVED: gdb.mi/mi-console.exp: finished step over hello
new UNRESOLVED: gdb.mi/mi-detach.exp:
PASS -> UNRESOLVED: gdb.mi/mi-detach.exp: breakpoint at main
FAIL -> UNRESOLVED: gdb.mi/mi-detach.exp: detach
new UNRESOLVED: gdb.mi/mi-disassemble.exp:
PASS -> UNRESOLVED: gdb.mi/mi-disassemble.exp: breakpoint at main
PASS -> UNRESOLVED: gdb.mi/mi-disassemble.exp: data-disassemble bogus address, -a
PASS -> UNRESOLVED: gdb.mi/mi-disassemble.exp: data-disassemble bogus address, -s -e
PASS -> UNRESOLVED: gdb.mi/mi-disassemble.exp: data-disassemble bogus filename
PASS -> UNRESOLVED: gdb.mi/mi-disassemble.exp: data-disassemble file & line, assembly only
PASS -> UNRESOLVED: gdb.mi/mi-disassemble.exp: data-disassemble file & line, assembly with opcodes
PASS -> UNRESOLVED: gdb.mi/mi-disassemble.exp: data-disassemble file, line assembly mixed
PASS -> UNRESOLVED: gdb.mi/mi-disassemble.exp: data-disassemble file, line assembly mixed with opcodes
PASS -> UNRESOLVED: gdb.mi/mi-disassemble.exp: data-disassemble file, line, number
PASS -> UNRESOLVED: gdb.mi/mi-disassemble.exp: data-disassemble file, line, number assembly mixed
PASS -> UNRESOLVED: gdb.mi/mi-disassemble.exp: data-disassemble file, line, number assembly only
PASS -> UNRESOLVED: gdb.mi/mi-disassemble.exp: data-disassemble from pc to pc+12 assembly only
PASS -> UNRESOLVED: gdb.mi/mi-disassemble.exp: data-disassemble from pc to pc+12 assembly with opcodes
PASS -> UNRESOLVED: gdb.mi/mi-disassemble.exp: data-disassemble function around pc assembly only
PASS -> UNRESOLVED: gdb.mi/mi-disassemble.exp: data-disassemble function callee4 assembly only
PASS -> UNRESOLVED: gdb.mi/mi-disassemble.exp: data-disassemble mix different args
PASS -> UNRESOLVED: gdb.mi/mi-disassemble.exp: data-disassemble range assembly mixed
PASS -> UNRESOLVED: gdb.mi/mi-disassemble.exp: data-disassemble range assembly mixed with opcodes
PASS -> UNRESOLVED: gdb.mi/mi-disassemble.exp: data-disassemble wrong mode arg
new UNRESOLVED: gdb.mi/mi-dprintf-pending.exp:
PASS -> UNRESOLVED: gdb.mi/mi-dprintf-pending.exp: mi dprintf
PASS -> UNRESOLVED: gdb.mi/mi-dprintf-pending.exp: mi dprintf stop
PASS -> UNRESOLVED: gdb.mi/mi-dprintf-pending.exp: mi insert breakpoint bp_location1
new UNRESOLVED: gdb.mi/mi-dprintf.exp:
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: breakpoint at main
new UNRESOLVED: gdb.mi/mi-dprintf.exp: call:
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: call: mi 1st dprintf
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: call: mi 1st dprintf stop
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: call: mi 2nd dprintf
new UNRESOLVED: gdb.mi/mi-dprintf.exp: call: mi 2nd dprintf continue
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: call: mi 2nd dprintf stop
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: explicit breakpoint at mi-dprintf.c:30
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: explicit dprintf at main
new UNRESOLVED: gdb.mi/mi-dprintf.exp: fprintf:
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: fprintf: mi 1st dprintf
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: fprintf: mi 1st dprintf stop
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: fprintf: mi 2nd dprintf
new UNRESOLVED: gdb.mi/mi-dprintf.exp: fprintf: mi 2nd dprintf continue
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: fprintf: mi 2nd dprintf stop
new UNRESOLVED: gdb.mi/mi-dprintf.exp: gdb:
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: gdb: mi 1st dprintf
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: gdb: mi 1st dprintf stop
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: gdb: mi 2nd dprintf
new UNRESOLVED: gdb.mi/mi-dprintf.exp: gdb: mi 2nd dprintf continue
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: gdb: mi 2nd dprintf stop
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: invalid explicit dprintf
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: mi info dprintf
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: mi insert breakpoint bp_location1
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: mi insert breakpoint main
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: mi insert breakpoint without format string
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: mi insert dprintf dp_location1
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: mi insert dprintf foo
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: mi insert second breakpoint without format string
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: mi insert without location
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: mi set dprintf channel
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: mi set dprintf style to an unrecognized type
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: mi set dprintf style to call
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: mi set dprintf-channel stderr
PASS -> UNRESOLVED: gdb.mi/mi-dprintf.exp: set dprintf style to agent
new UNRESOLVED: gdb.mi/mi-eval.exp:
PASS -> UNRESOLVED: gdb.mi/mi-eval.exp: breakpoint at callee4
PASS -> UNRESOLVED: gdb.mi/mi-eval.exp: eval &A
PASS -> UNRESOLVED: gdb.mi/mi-eval.exp: eval A
PASS -> UNRESOLVED: gdb.mi/mi-eval.exp: eval A + 3
PASS -> UNRESOLVED: gdb.mi/mi-eval.exp: eval A+3
PASS -> UNRESOLVED: gdb.mi/mi-eval.exp: next at callee4
new UNRESOLVED: gdb.mi/mi-exit-code.exp: first run:
PASS -> UNRESOLVED: gdb.mi/mi-exit-code.exp: first run: -list-thread-groups after exit shows exit-code
PASS -> UNRESOLVED: gdb.mi/mi-exit-code.exp: first run: -list-thread-groups during run shows no exit-code
PASS -> UNRESOLVED: gdb.mi/mi-exit-code.exp: first run: breakpoint at main
new UNRESOLVED: gdb.mi/mi-exit-code.exp: first run: continuing to inferior exit
PASS -> UNRESOLVED: gdb.mi/mi-exit-code.exp: first run: exit normally
PASS -> FAIL: gdb.mi/mi-file-transfer.exp: compare binary file
PASS -> FAIL: gdb.mi/mi-file-transfer.exp: compare intermediate binary file
PASS -> UNRESOLVED: gdb.mi/mi-file-transfer.exp: deleted binary file
PASS -> UNRESOLVED: gdb.mi/mi-file-transfer.exp: get binary file
PASS -> UNRESOLVED: gdb.mi/mi-file-transfer.exp: put binary file
PASS -> UNRESOLVED: gdb.mi/mi-file.exp: Getting a list of source files.
PASS -> UNRESOLVED: gdb.mi/mi-file.exp: request path info of current source file
new UNRESOLVED: gdb.mi/mi-fill-memory.exp:
PASS -> UNRESOLVED: gdb.mi/mi-fill-memory.exp: breakpoint at main
PASS -> UNRESOLVED: gdb.mi/mi-fill-memory.exp: memory successfully filled
PASS -> UNRESOLVED: gdb.mi/mi-fill-memory.exp: memory successfully written
PASS -> UNRESOLVED: gdb.mi/mi-fill-memory.exp: next at main
PASS -> UNRESOLVED: gdb.mi/mi-fill-memory.exp: no arguments
PASS -> UNRESOLVED: gdb.mi/mi-fill-memory.exp: one argument missing
PASS -> UNRESOLVED: gdb.mi/mi-fill-memory.exp: pattern correctly read from memory
new UNRESOLVED: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test:
PASS -> UNRESOLVED: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: breakpoint at main
PASS -> UNRESOLVED: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: breakpoint hit in callee3
PASS -> UNRESOLVED: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: create varobj for $pc in frame 0
PASS -> UNRESOLVED: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: create varobj for $pc in frame 1
PASS -> UNRESOLVED: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: create varobj for $pc in frame 2
PASS -> UNRESOLVED: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: create varobj for $pc in frame 3
PASS -> UNRESOLVED: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: create varobj for 'global_zero + $pc' in frame 0
PASS -> UNRESOLVED: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: create varobj for 'global_zero + $pc' in frame 1
PASS -> UNRESOLVED: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: create varobj for 'global_zero + $pc' in frame 2
PASS -> UNRESOLVED: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: create varobj for 'global_zero + $pc' in frame 3
PASS -> UNRESOLVED: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: insert breakpoint at basics.c:callee3
PASS -> UNRESOLVED: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: next instruction in callee3
PASS -> UNRESOLVED: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: varobj var1 has changed
PASS -> UNRESOLVED: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: varobj var2 has changed
PASS -> UNRESOLVED: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: varobj var3 has not changed
PASS -> UNRESOLVED: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: varobj var4 has not changed
PASS -> UNRESOLVED: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: varobj var5 has not changed
PASS -> UNRESOLVED: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: varobj var6 has not changed
PASS -> UNRESOLVED: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: varobj var7 has not changed
PASS -> UNRESOLVED: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: varobj var8 has not changed
new UNRESOLVED: gdb.mi/mi-frame-regs.exp: do_floating_varobj_test:
PASS -> UNRESOLVED: gdb.mi/mi-frame-regs.exp: do_floating_varobj_test: -var-update for frame 1
PASS -> UNRESOLVED: gdb.mi/mi-frame-regs.exp: do_floating_varobj_test: breakpoint at main
PASS -> UNRESOLVED: gdb.mi/mi-frame-regs.exp: do_floating_varobj_test: breakpoint hit in callee1
PASS -> UNRESOLVED: gdb.mi/mi-frame-regs.exp: do_floating_varobj_test: create varobj for pc in frame 0
PASS -> UNRESOLVED: gdb.mi/mi-frame-regs.exp: do_floating_varobj_test: insert breakpoint at basics.c:callee1
PASS -> UNRESOLVED: gdb.mi/mi-fullname-deleted.exp: compare_filenames_for_search does match
PASS -> UNRESOLVED: gdb.mi/mi-fullname-deleted.exp: compare_filenames_for_search does not match
PASS -> UNRESOLVED: gdb.mi/mi-fullname-deleted.exp: fullname present
PASS -> UNRESOLVED: gdb.mi/mi-fullname-deleted.exp: substituted fullname
new UNRESOLVED: gdb.mi/mi-inheritance-syntax-error.exp:
PASS -> UNRESOLVED: gdb.mi/mi-inheritance-syntax-error.exp: -var-info-path-expression var1.A
PASS -> UNRESOLVED: gdb.mi/mi-inheritance-syntax-error.exp: breakpoint at C::testLocation
PASS -> UNRESOLVED: gdb.mi/mi-inheritance-syntax-error.exp: create var for THIS
PASS -> UNRESOLVED: gdb.mi/mi-inheritance-syntax-error.exp: list children of THIS
new UNRESOLVED: gdb.mi/mi-linespec-err-cp.exp:
PASS -> UNRESOLVED: gdb.mi/mi-linespec-err-cp.exp: breakpoint at main
PASS -> UNRESOLVED: gdb.mi/mi-linespec-err-cp.exp: breakpoint hit
PASS -> UNRESOLVED: gdb.mi/mi-linespec-err-cp.exp: set breakpoint
new UNRESOLVED: gdb.mi/mi-logging.exp:
PASS -> UNRESOLVED: gdb.mi/mi-logging.exp: breakpoint at main
new UNRESOLVED: gdb.mi/mi-memory-changed.exp:
PASS -> UNRESOLVED: gdb.mi/mi-memory-changed.exp: change C thru. -data-write-memory-bytes
PASS -> UNRESOLVED: gdb.mi/mi-memory-changed.exp: change C thru. varobj
PASS -> UNRESOLVED: gdb.mi/mi-memory-changed.exp: continue to callee4
PASS -> UNRESOLVED: gdb.mi/mi-memory-changed.exp: create objvar for C
PASS -> UNRESOLVED: gdb.mi/mi-memory-changed.exp: get address of main
PASS -> UNRESOLVED: gdb.mi/mi-memory-changed.exp: insert breakpoint
PASS -> UNRESOLVED: gdb.mi/mi-memory-changed.exp: set var C = 4
new UNRESOLVED: gdb.mi/mi-nonstop-exit.exp:
PASS -> UNRESOLVED: gdb.mi/mi-nonstop-exit.exp: breakpoint at main
new UNRESOLVED: gdb.mi/mi-nonstop.exp:
PASS -> UNRESOLVED: gdb.mi/mi-nonstop.exp: breakpoint at main
new UNRESOLVED: gdb.mi/mi-ns-stale-regcache.exp:
PASS -> UNRESOLVED: gdb.mi/mi-ns-stale-regcache.exp: breakpoint at main
new UNRESOLVED: gdb.mi/mi-nsintrall.exp:
PASS -> UNRESOLVED: gdb.mi/mi-nsintrall.exp: breakpoint at main
new UNRESOLVED: gdb.mi/mi-nsmoribund.exp:
PASS -> UNRESOLVED: gdb.mi/mi-nsmoribund.exp: breakpoint at main
new UNRESOLVED: gdb.mi/mi-nsthrexec.exp:
PASS -> UNRESOLVED: gdb.mi/mi-nsthrexec.exp: breakpoint at main
new UNRESOLVED: gdb.mi/mi-pending.exp:
PASS -> UNRESOLVED: gdb.mi/mi-pending.exp: MI pending breakpoint on pendfunc3
PASS -> UNRESOLVED: gdb.mi/mi-pending.exp: MI pending breakpoint on thread_func
PASS -> UNRESOLVED: gdb.mi/mi-pending.exp: Run till MI pending breakpoint on pendfunc1
PASS -> UNRESOLVED: gdb.mi/mi-pending.exp: Run till MI pending breakpoint on pendfunc1 a second time
PASS -> UNRESOLVED: gdb.mi/mi-pending.exp: Run till MI pending breakpoint on pendfunc2 with x==4
PASS -> UNRESOLVED: gdb.mi/mi-pending.exp: Run till MI pending breakpoint on thread_func
new UNRESOLVED: gdb.mi/mi-pending.exp: continuing execution to conditional bp
new UNRESOLVED: gdb.mi/mi-pending.exp: continuing execution to skip conditional bp
new UNRESOLVED: gdb.mi/mi-pending.exp: continuing execution to thread condition
new UNRESOLVED: gdb.mi/mi-pending.exp: continuing execution to thread creation
PASS -> UNRESOLVED: gdb.mi/mi-pending.exp: delete breakpoint 3
PASS -> UNRESOLVED: gdb.mi/mi-pending.exp: run till MI pending breakpoint on pendfunc3 on thread 2
new UNRESOLVED: gdb.mi/mi-pthreads.exp:
PASS -> UNRESOLVED: gdb.mi/mi-pthreads.exp: -thread_list_ids
PASS -> UNRESOLVED: gdb.mi/mi-pthreads.exp: breakpoint at done_making_threads
PASS -> UNRESOLVED: gdb.mi/mi-pthreads.exp: check_mi_thread_command_set: -thread-select
PASS -> UNRESOLVED: gdb.mi/mi-pthreads.exp: check_mi_thread_command_set: -thread-select 123456789
PASS -> FAIL: gdb.mi/mi-pthreads.exp: finding threads in MI output
new UNRESOLVED: gdb.mi/mi-read-memory.exp:
PASS -> UNRESOLVED: gdb.mi/mi-read-memory.exp: 3x2, one byte
PASS -> UNRESOLVED: gdb.mi/mi-read-memory.exp: 3x2, one byte offset by -6
PASS -> UNRESOLVED: gdb.mi/mi-read-memory.exp: ascii and data
PASS -> UNRESOLVED: gdb.mi/mi-read-memory.exp: breakpoint at main
PASS -> UNRESOLVED: gdb.mi/mi-read-memory.exp: decimal
PASS -> UNRESOLVED: gdb.mi/mi-read-memory.exp: expression in quotes
PASS -> UNRESOLVED: gdb.mi/mi-read-memory.exp: next at main
PASS -> UNRESOLVED: gdb.mi/mi-read-memory.exp: no arguments
PASS -> UNRESOLVED: gdb.mi/mi-read-memory.exp: octal
new UNRESOLVED: gdb.mi/mi-record-changed.exp:
PASS -> UNRESOLVED: gdb.mi/mi-record-changed.exp: breakpoint at main
PASS -> UNRESOLVED: gdb.mi/mi-record-changed.exp: record
PASS -> UNRESOLVED: gdb.mi/mi-record-changed.exp: record end
PASS -> UNRESOLVED: gdb.mi/mi-record-changed.exp: target record
new UNRESOLVED: gdb.mi/mi-return.exp:
PASS -> UNRESOLVED: gdb.mi/mi-return.exp: breakpoint at callee4
PASS -> UNRESOLVED: gdb.mi/mi-return.exp: delete all breakpoints
PASS -> UNRESOLVED: gdb.mi/mi-return.exp: return from callee4 now
new UNRESOLVED: gdb.mi/mi-reverse.exp:
PASS -> UNRESOLVED: gdb.mi/mi-reverse.exp: Turn on process record
PASS -> UNRESOLVED: gdb.mi/mi-reverse.exp: breakpoint at main
new UNRESOLVED: gdb.mi/mi-simplerun.exp:
PASS -> UNRESOLVED: gdb.mi/mi-simplerun.exp: break-insert operation
PASS -> UNRESOLVED: gdb.mi/mi-simplerun.exp: continue to end
PASS -> UNRESOLVED: gdb.mi/mi-simplerun.exp: disabling of breakpoints
PASS -> UNRESOLVED: gdb.mi/mi-simplerun.exp: exec-finish
PASS -> UNRESOLVED: gdb.mi/mi-simplerun.exp: insert breakpoint at "<fullfilename>":$line_callee4_head
PASS -> UNRESOLVED: gdb.mi/mi-simplerun.exp: insert breakpoint at basics.c:$line_callee3_head
PASS -> UNRESOLVED: gdb.mi/mi-simplerun.exp: insert breakpoint at basics.c:callee2
PASS -> UNRESOLVED: gdb.mi/mi-simplerun.exp: list of breakpoints
PASS -> UNRESOLVED: gdb.mi/mi-simplerun.exp: list of breakpoints, 16 disabled
PASS -> UNRESOLVED: gdb.mi/mi-simplerun.exp: next at main
PASS -> UNRESOLVED: gdb.mi/mi-simplerun.exp: run to main
PASS -> UNRESOLVED: gdb.mi/mi-simplerun.exp: step at main
PASS -> UNRESOLVED: gdb.mi/mi-simplerun.exp: step to callee4
PASS -> UNRESOLVED: gdb.mi/mi-solib.exp: test_file_list_shared_libraries: breakpoint at main
PASS -> UNRESOLVED: gdb.mi/mi-solib.exp: test_file_list_shared_libraries: get the list of shared libraries
PASS -> UNRESOLVED: gdb.mi/mi-solib.exp: test_file_list_shared_libraries: mi runto main
PASS -> UNRESOLVED: gdb.mi/mi-solib.exp: test_stop_on_solib_events: CLI prints solib event
PASS -> UNRESOLVED: gdb.mi/mi-solib.exp: test_stop_on_solib_events: check for solib event
PASS -> UNRESOLVED: gdb.mi/mi-solib.exp: test_stop_on_solib_events: unset stop-on-solib-events
new UNRESOLVED: gdb.mi/mi-stack.exp:
PASS -> UNRESOLVED: gdb.mi/mi-stack.exp: breakpoint at callee4
PASS -> UNRESOLVED: gdb.mi/mi-stack.exp: next's in callee4
PASS -> UNRESOLVED: gdb.mi/mi-stack.exp: run to 27
PASS -> UNRESOLVED: gdb.mi/mi-stack.exp: selected frame listing
PASS -> UNRESOLVED: gdb.mi/mi-stack.exp: stack args listing 0
PASS -> UNRESOLVED: gdb.mi/mi-stack.exp: stack args listing 0 1 1
PASS -> UNRESOLVED: gdb.mi/mi-stack.exp: stack args listing 0 1 3
PASS -> UNRESOLVED: gdb.mi/mi-stack.exp: stack args listing 1
PASS -> UNRESOLVED: gdb.mi/mi-stack.exp: stack args listing 1 1 1
PASS -> UNRESOLVED: gdb.mi/mi-stack.exp: stack args listing 1 1 3
PASS -> UNRESOLVED: gdb.mi/mi-stack.exp: stack args listing 1 1 300
PASS -> UNRESOLVED: gdb.mi/mi-stack.exp: stack args listing wrong
PASS -> UNRESOLVED: gdb.mi/mi-stack.exp: stack frame listing
PASS -> UNRESOLVED: gdb.mi/mi-stack.exp: stack frame listing 1 1
PASS -> UNRESOLVED: gdb.mi/mi-stack.exp: stack frame listing 1 3
PASS -> UNRESOLVED: gdb.mi/mi-stack.exp: stack frame listing 1 300
PASS -> UNRESOLVED: gdb.mi/mi-stack.exp: stack frame listing wrong
PASS -> UNRESOLVED: gdb.mi/mi-stack.exp: stack info-depth
PASS -> UNRESOLVED: gdb.mi/mi-stack.exp: stack info-depth 3
PASS -> UNRESOLVED: gdb.mi/mi-stack.exp: stack info-depth 99
PASS -> UNRESOLVED: gdb.mi/mi-stack.exp: stack info-depth wrong usage
PASS -> UNRESOLVED: gdb.mi/mi-stack.exp: stack locals for same frame
PASS -> UNRESOLVED: gdb.mi/mi-stack.exp: stack locals listing for new frame
PASS -> UNRESOLVED: gdb.mi/mi-stack.exp: stack locals listing of names
PASS -> UNRESOLVED: gdb.mi/mi-stack.exp: stack locals listing of names and values
PASS -> UNRESOLVED: gdb.mi/mi-stack.exp: stack locals listing wrong
PASS -> UNRESOLVED: gdb.mi/mi-stack.exp: stack locals listing, simple types: names and values, complex type: names and types
PASS -> UNRESOLVED: gdb.mi/mi-stack.exp: stack select frame 1
new UNRESOLVED: gdb.mi/mi-stack.exp: wait for stop
new UNRESOLVED: gdb.mi/mi-stepi.exp:
PASS -> UNRESOLVED: gdb.mi/mi-stepi.exp: breakpoint at main
PASS -> UNRESOLVED: gdb.mi/mi-stepi.exp: next-instruction at main
PASS -> UNRESOLVED: gdb.mi/mi-stepi.exp: next-instruction at main 2
PASS -> UNRESOLVED: gdb.mi/mi-stepi.exp: step-instruction at main
new UNRESOLVED: gdb.mi/mi-stepn.exp:
PASS -> UNRESOLVED: gdb.mi/mi-stepn.exp: breakpoint at main
new UNRESOLVED: gdb.mi/mi-syn-frame.exp:
PASS -> UNRESOLVED: gdb.mi/mi-syn-frame.exp: insert breakpoint foo
new UNRESOLVED: gdb.mi/mi-threads-interrupt.exp:
PASS -> UNRESOLVED: gdb.mi/mi-threads-interrupt.exp: breakpoint at all_threads_created
PASS -> UNRESOLVED: gdb.mi/mi-threads-interrupt.exp: check thread states
new UNRESOLVED: gdb.mi/mi-threads-interrupt.exp: continue
PASS -> UNRESOLVED: gdb.mi/mi-threads-interrupt.exp: interrupt reported
new UNRESOLVED: gdb.mi/mi-until.exp:
PASS -> UNRESOLVED: gdb.mi/mi-until.exp: break-delete 1
PASS -> UNRESOLVED: gdb.mi/mi-until.exp: break-insert operation
PASS -> UNRESOLVED: gdb.mi/mi-until.exp: run to main
PASS -> UNRESOLVED: gdb.mi/mi-until.exp: until after current function
KFAIL -> UNRESOLVED: gdb.mi/mi-until.exp: until after while loop
PASS -> UNRESOLVED: gdb.mi/mi-until.exp: until line number
PASS -> UNRESOLVED: gdb.mi/mi-until.exp: until line number:file
new UNRESOLVED: gdb.mi/mi-var-block.exp:
PASS -> UNRESOLVED: gdb.mi/mi-var-block.exp: breakpoint at do_block_tests
PASS -> UNRESOLVED: gdb.mi/mi-var-block.exp: create local variable cb
PASS -> UNRESOLVED: gdb.mi/mi-var-block.exp: create local variable foo
PASS -> UNRESOLVED: gdb.mi/mi-var-block.exp: create local variable foo2
PASS -> UNRESOLVED: gdb.mi/mi-var-block.exp: create local variable inner_foo
PASS -> UNRESOLVED: gdb.mi/mi-var-block.exp: delete var cb
PASS -> UNRESOLVED: gdb.mi/mi-var-block.exp: delete var foo 1
PASS -> UNRESOLVED: gdb.mi/mi-var-block.exp: delete var foo 2
PASS -> UNRESOLVED: gdb.mi/mi-var-block.exp: delete var foo2
PASS -> UNRESOLVED: gdb.mi/mi-var-block.exp: delete var inner_foo
XFAIL -> UNRESOLVED: gdb.mi/mi-var-block.exp: evaluate inner_foo: should be out of scope: KNOWN PROBLEM
PASS -> UNRESOLVED: gdb.mi/mi-var-block.exp: step at do_block_test 1
PASS -> UNRESOLVED: gdb.mi/mi-var-block.exp: step at do_block_test 2
PASS -> UNRESOLVED: gdb.mi/mi-var-block.exp: step at do_block_test 3
PASS -> UNRESOLVED: gdb.mi/mi-var-block.exp: step at do_block_test 4
PASS -> UNRESOLVED: gdb.mi/mi-var-block.exp: step at do_block_test 5
PASS -> UNRESOLVED: gdb.mi/mi-var-block.exp: step at do_block_test 6
PASS -> UNRESOLVED: gdb.mi/mi-var-block.exp: try to create local variable foo
PASS -> UNRESOLVED: gdb.mi/mi-var-block.exp: update all vars: cb foo changed
PASS -> UNRESOLVED: gdb.mi/mi-var-block.exp: update cb
XFAIL -> UNRESOLVED: gdb.mi/mi-var-block.exp: update foo should be out of scope: KNOWN PROBLEM
XFAIL -> UNRESOLVED: gdb.mi/mi-var-block.exp: update foo2 should be out of scope: KNOWN PROBLEM
XFAIL -> UNRESOLVED: gdb.mi/mi-var-block.exp: update foo2: should be out of scope: KNOWN PROBLEM
PASS -> UNRESOLVED: gdb.mi/mi-var-block.exp: update foo: did not change
XFAIL -> UNRESOLVED: gdb.mi/mi-var-block.exp: update inner_foo: should be out of scope: KNOWN PROBLEM
new UNRESOLVED: gdb.mi/mi-var-child.exp:
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: breakpoint at do_children_tests
new FAIL: gdb.mi/mi-var-child.exp: child_deletion: go to line 339
new UNRESOLVED: gdb.mi/mi-var-child.exp: child_deletion: step over 339
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: create local variable  psnp->char_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: create local variable  psnp->long_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: create local variable  psnp->ptrs
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: create local variable struct_declarations
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: create local variable weird
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: create local variable weird->int_ptr_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: delete var struct_declarations
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: delete var weird
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: delete var weird->int_ptr_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of psnp->char_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of psnp->char_ptr.*psnp->char_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr.***psnp->char_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr.***psnp->char_ptr.****psnp->char_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of psnp->long_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of psnp->long_ptr.*psnp->long_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr.***psnp->long_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr.***psnp->long_ptr.****psnp->long_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of psnp->ptrs
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of psnp->ptrs.0
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of psnp->ptrs.0.next
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of psnp->ptrs.0.next.char_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of psnp->ptrs.0.next.char_ptr.*char_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of psnp->ptrs.0.next.char_ptr.*char_ptr.**char_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of psnp->ptrs.0.next.char_ptr.*char_ptr.**char_ptr.***char_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of psnp->ptrs.0.next.next
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of psnp->ptrs.0.next.next.ptrs
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of struct_declarations
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of struct_declarations.char_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of struct_declarations.character
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of struct_declarations.func_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of struct_declarations.func_ptr_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of struct_declarations.func_ptr_struct
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of struct_declarations.int_ptr_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of struct_declarations.int_ptr_ptr.*int_ptr_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of struct_declarations.integer
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array.1
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array.2
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array.3
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array.4
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array.5
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array.6
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array.7
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array.8
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array.9
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_int
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.g
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.h
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.i
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2.f
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2.u1s1
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2.u1s1.d
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2.u1s1.e
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2.u1s1.foo
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2.u1s1.func
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2.u1s2
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2.u1s2.array_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2.u1s2.func
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of struct_declarations.u1
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of struct_declarations.u1.a
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of struct_declarations.u1.b
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of struct_declarations.u1.c
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of struct_declarations.u1.d
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of weird
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of weird->int_ptr_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of weird->int_ptr_ptr.*weird->int_ptr_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of weird->int_ptr_ptr.*weird->int_ptr_ptr.**weird->int_ptr_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of weird.int_ptr_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of weird.int_ptr_ptr.*int_ptr_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get children of weird.long_array
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of psnp->char_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of psnp->char_ptr.*psnp->char_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr.***psnp->char_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr.***psnp->char_ptr.****psnp->char_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of psnp->long_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of psnp->long_ptr.*psnp->long_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr.***psnp->long_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr.***psnp->long_ptr.****psnp->long_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of psnp->ptrs
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of psnp->ptrs.0
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of psnp->ptrs.0.next
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of psnp->ptrs.0.next.char_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of psnp->ptrs.0.next.char_ptr.*char_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of psnp->ptrs.0.next.char_ptr.*char_ptr.**char_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of psnp->ptrs.0.next.char_ptr.*char_ptr.**char_ptr.***char_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of struct_declarations
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.char_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.character
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.func_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.func_ptr_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.func_ptr_struct
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.int_ptr_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.int_ptr_ptr.*int_ptr_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.integer
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array.1
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array.2
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array.3
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array.4
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array.5
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array.6
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array.7
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array.8
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array.9
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_int
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.g
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.h
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.i
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2.f
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1.d
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1.e
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1.foo
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1.func
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2.u1s2
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2.u1s2.array_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2.u1s2.func
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.u1
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.u1.a
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.u1.b
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.u1.c
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.u1.d
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of weird
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of weird->int_ptr_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of weird->int_ptr_ptr.*weird->int_ptr_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of weird->int_ptr_ptr.*weird->int_ptr_ptr.**weird->int_ptr_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of weird.int_ptr_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of weird.int_ptr_ptr.*int_ptr_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: get number of children of weird.long_array
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: is struct_declarations editable
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: is struct_declarations.long_array editable
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: is struct_declarations.long_array.0 editable
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: is struct_declarations.u1.a editable
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: is struct_declarations.u1.b editable
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: is struct_declarations.u1.c editable
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: is weird editable
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: is weird->int_ptr_ptr editable
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: is weird.int_ptr_ptr.*int_ptr_ptr editable
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: is weird.int_ptr_ptr.*int_ptr_ptr.**int_ptr_ptr editable
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: is weird.s2 editable
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: is weird.u1 editable
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: listing of children, simple types: names, type and values, complex types: names and types
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: listing of names and values of children
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: run to 229
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: run to mi-var-child.c:339
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: step $line_dct_123 + 1
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: step $line_dct_123 + 4
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: step $line_dct_123 + 5
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: step $line_dct_123 + 6
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: step $line_dct_123 + 7
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: step $line_dct_123 + 8
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: step $line_dct_a0_0
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: step $line_dct_nothing
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: step $line_dct_nothing + 1
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: step $line_dct_nothing + 2
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: step $line_dct_nothing + 3
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: step $line_dct_nothing + 4
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: step $line_dct_snp0 + 1
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: step $line_dct_snp0 + 2
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: step $line_dct_snp0 + 3
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: step $line_dct_snp0 + 4
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: step $line_dct_snp0 + 5
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: step $line_dct_snp0 + 6
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: step $line_dct_snp0 + 7
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: step to line $line_dct_123
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: update all vars int_ptr_ptr and children changed
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: update all vars psnp->char_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: update all vars psnp->long_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: update all vars psnp->next->char_ptr
XFAIL -> UNRESOLVED: gdb.mi/mi-var-child.exp: update all vars psnp->next->long_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: update all vars psnp->next->next->char_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: update all vars psnp->next->next->long_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: update all vars struct_declarations.char_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: update all vars struct_declarations.func_ptr changed
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: update all vars struct_declarations.func_ptr_ptr changed
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: update all vars struct_declarations.func_ptr_struct changed
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: update all vars struct_declarations.integer
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: update all vars struct_declarations.long_array.0 changed
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: update all vars struct_declarations.long_array.1 changed
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: update all vars struct_declarations.long_array.10 changed, don't print values.
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: update all vars struct_declarations.long_array.11 changed, print values.
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: update all vars struct_declarations.long_array.2 changed
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: update all vars struct_declarations.long_array.3-9 changed
PASS -> UNRESOLVED: gdb.mi/mi-var-child.exp: update all vars. None changed
new UNRESOLVED: gdb.mi/mi-var-child.exp: wait for stop
new UNRESOLVED: gdb.mi/mi-var-cmd.exp:
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign array to pointer
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign same array to pointer
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign same value to func
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign to func
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign to global_simple
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign to lcharacter
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign to ldouble
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign to lfloat
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign to linteger
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign to linteger again, same value
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign to llong
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign to lpfloat
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign to lpinteger
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign to lplong
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign to lsimple->integer
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign to lsimple.character
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: assign to lsimple.integer
new FAIL: gdb.mi/mi-var-cmd.exp: bitfield: go to line 526
new UNRESOLVED: gdb.mi/mi-var-cmd.exp: bitfield: step over 526
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: breakpoint at do_locals_tests
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: breakpoint at do_special_tests
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: breakpoint at incr_a
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: breakpoint at main
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: breakpoint at subroutine1
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: check F inside callee
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: continue to where i is initialized
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: create endvar
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: create global variable array_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: create i
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: create int
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: create l
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: create linteger
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: create local variable func
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: create local variable lcharacter
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: create local variable ldouble
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: create local variable lfloat
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: create local variable linteger
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: create local variable llong
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: create local variable lpcharacter
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: create local variable lpdouble
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: create local variable lpfloat
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: create local variable lpinteger
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: create local variable lplong
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: create local variable lpsimple
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: create local variable lsimple
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: create lsimple->integer
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: create lsimple.character
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: create lsimple.integer
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: create null_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: create selected_a
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete array_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete endvar
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete null_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete selected_a
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete var
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete var  lsimple->integer
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete var func
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete var i
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete var l
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete var lcharacter
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete var ldouble
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete var lfloat
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete var linteger
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete var llong
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete var lpcharacter
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete var lpdouble
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete var lpfloat
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete var lpinteger
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete var lplong
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete var lpsimple
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete var lsimple
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete var lsimple.character
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: delete var lsimple.integer
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: eval lcharacter
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: eval lfloat
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: eval linteger
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: eval llong
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: eval lpinteger
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: eval lplong
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: floating varobj invalidation
new FAIL: gdb.mi/mi-var-cmd.exp: floating: go to line 469
new UNRESOLVED: gdb.mi/mi-var-cmd.exp: floating: step over 469
new FAIL: gdb.mi/mi-var-cmd.exp: frozen: go to line 367
new UNRESOLVED: gdb.mi/mi-var-cmd.exp: frozen: step over 367
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: in-and-out-of-scope: check initial value
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: in-and-out-of-scope: create varobj
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: in-and-out-of-scope: in scope now
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: in-and-out-of-scope: in scope now, not changed
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: in-and-out-of-scope: out of scope now
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: in-and-out-of-scope: out of scope now, not changed
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: inside breakpoint inside callee
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: kill program before endvar
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: mi runto do_locals_tests
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: mi runto do_special_tests
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: mi runto incr_a
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: mi runto subroutine1
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: next out of subroutine1
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: return from incr_a to do_special_tests
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: run to 148
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: run to var-cmd.c:367
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: run to var-cmd.c:469
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: run to var-cmd.c:526
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: step a line in incr_a
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: step at do_locals_test
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: step at do_locals_tests
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: step at subroutine1
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: update F inside callee
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: update all vars
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: update all vars: all now out of scope
XFAIL -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: update all vars: changed FIXME
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: update all vars: func and lpsimple changed
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: update all vars: i changed
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: update all vars: lcharacter changed
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: update all vars: linteger changed
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: update all vars: linteger changed after assign
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: update all vars: linteger not changed after same assign
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: update all vars: llong changed
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: update all vars: lpcharacter changed
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: update all vars: lpinteger changed
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: update all vars: lpinteger changed after assign
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: update all vars: lsimple and others changed
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: update all vars: many changed
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: update all vars: no changes on second update
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: update endvar
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: update null_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: update selected_a in do_special_tests
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: update selected_a in incr_a
PASS -> UNRESOLVED: gdb.mi/mi-var-cmd.exp: var update
new UNRESOLVED: gdb.mi/mi-var-cmd.exp: wait for stop
new UNRESOLVED: gdb.mi/mi-var-cp.exp:
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: VT: create root varobj for a
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: VT: list children of a1
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: VT: list children of a1.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.0_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.0_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.1_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.1_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous.public.1_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous.public.1_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous.public.1_anonymous.public.1_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous.public.1_anonymous.public.2_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous.public.1_anonymous.public.2_anonymous.public
new FAIL: gdb.mi/mi-var-cp.exp: base_in_reference: go to line 45
new UNRESOLVED: gdb.mi/mi-var-cp.exp: base_in_reference: step over 45
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: break in anonymous_structs_and_unions
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: continue to anonymous_structs breakpoint
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.0_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.0_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.0_anonymous.public.b
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.1_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.1_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.1_anonymous.public.c
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous.public.g
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous.public.h
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.f
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.2_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.2_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.2_anonymous.public.i
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.2_anonymous.public.j
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.e
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.d
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.0_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.0_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.0_anonymous.public.b
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.1_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.1_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.1_anonymous.public.c
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous.public.g
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous.public.h
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.f
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.2_anonymous
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.2_anonymous.public
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.2_anonymous.public.i
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.2_anonymous.public.j
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.e
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.d
new FAIL: gdb.mi/mi-var-cp.exp: path_expression: go to line 144
new UNRESOLVED: gdb.mi/mi-var-cp.exp: path_expression: step over 144
new FAIL: gdb.mi/mi-var-cp.exp: reference_to_pointer: go to line 81
new UNRESOLVED: gdb.mi/mi-var-cp.exp: reference_to_pointer: step over 81
new FAIL: gdb.mi/mi-var-cp.exp: reference_to_struct: go to line 104
new UNRESOLVED: gdb.mi/mi-var-cp.exp: reference_to_struct: step over 104
new FAIL: gdb.mi/mi-var-cp.exp: reference_update: go to line 19
new UNRESOLVED: gdb.mi/mi-var-cp.exp: reference_update: step over 19
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: run to mi-var-cp.cc:104
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: run to mi-var-cp.cc:144
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: run to mi-var-cp.cc:19
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: run to mi-var-cp.cc:45
PASS -> UNRESOLVED: gdb.mi/mi-var-cp.exp: run to mi-var-cp.cc:81
new UNRESOLVED: gdb.mi/mi-var-cp.exp: wait for stop
new UNRESOLVED: gdb.mi/mi-var-create-rtti.exp:
PASS -> UNRESOLVED: gdb.mi/mi-var-create-rtti.exp: -var-create sp1 * $sp
PASS -> UNRESOLVED: gdb.mi/mi-var-create-rtti.exp: -var-create sp2 @ $sp
PASS -> UNRESOLVED: gdb.mi/mi-var-create-rtti.exp: breakpoint at main
new UNRESOLVED: gdb.mi/mi-var-display.exp:
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: assing to variable bar
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: assing to variable foo
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: break-insert operation
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: break-insert operation 2
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: breakpoint at incr_a
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: continue to do_special_tests
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: create duplicate local variable anone
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: create local variable a1
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: create local variable anone
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: create local variable anons
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: create local variable anonu
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: create local variable bar
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: create local variable e
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: create local variable foo
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: create local variable s
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: create local variable u
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: create local variable weird
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: delete var bar
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: delete var foo
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: delete var weird
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: eval variable -f decimal foo
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: eval variable -f nat foo
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: eval variable -f octal foo
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: eval variable anone
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: eval variable anons
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: eval variable anonu
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: eval variable bar
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: eval variable bar with new format
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: eval variable bar with new value
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: eval variable e
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: eval variable foo in binary
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: eval variable foo in decimal
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: eval variable foo in hex
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: eval variable foo in natural
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: eval variable foo in octal
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: eval variable s
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: eval variable u
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: get children local variable weird
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: get children of anone
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: get children of anons
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: get children of anonu
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: get children of e
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: get children of s
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: get children of u
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: get number of children of anone
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: get number of children of anons
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: get number of children of anonu
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: get number of children of e
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: get number of children of s
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: get number of children of u
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: info type variable anone
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: info type variable anons
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: info type variable anonu
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: info type variable bar
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: info type variable e
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: info type variable foo
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: info type variable s
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: info type variable u
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: is anone editable
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: is anons editable
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: is anonu editable
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: is e editable
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: is s editable
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: is u editable
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: mi runto incr_a
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: print FP register
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: run to main
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: set format variable bar in decimal
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: set format variable bar in hex
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: set format variable bar in zero-padded hexadecimal
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: set format variable foo decimal
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: set format variable foo in octal
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: set format variable weird
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: set format variable weird.char_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: set format variable weird.character
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: set format variable weird.func_ptr in hex
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: set format variable weird.func_ptr in zero-padded hex
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: set format variable weird.func_ptr_ptr in hex
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: set format variable weird.func_ptr_ptr in natural
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: set format variable weird.func_ptr_ptr in zero-padded hex
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: set format variable weird.func_ptr_struct
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: set format variable weird.int_ptr_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: set format variable weird.integer
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: set format variable weird.long_array
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: set format variable weird.long_int
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: set format variable weird.s2
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: set format variable weird.u1
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: show format variable bar
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: show format variable foo after eval in binary
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: show format variable foo after eval in decimal
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: show format variable foo after eval in hex
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: show format variable foo after eval in natural
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: show format variable foo after eval in octal
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: show format variable foo in natural
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: show format variable foo in octal
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: show format variable weird.func_ptr
PASS -> UNRESOLVED: gdb.mi/mi-var-display.exp: show format variable weird.func_ptr_ptr
new UNRESOLVED: gdb.mi/mi-var-invalidate.exp:
PASS -> UNRESOLVED: gdb.mi/mi-var-invalidate.exp: breakpoint at do_locals_tests
PASS -> UNRESOLVED: gdb.mi/mi-var-invalidate.exp: breakpoint at main
PASS -> UNRESOLVED: gdb.mi/mi-var-invalidate.exp: create floating variable
PASS -> UNRESOLVED: gdb.mi/mi-var-invalidate.exp: create local variable linteger
PASS -> UNRESOLVED: gdb.mi/mi-var-invalidate.exp: global_simple not anymore in scope due to binary changes
PASS -> UNRESOLVED: gdb.mi/mi-var-invalidate.exp: global_simple still alive
PASS -> UNRESOLVED: gdb.mi/mi-var-invalidate.exp: linteger not anymore in scope due to binary changes
PASS -> UNRESOLVED: gdb.mi/mi-var-invalidate.exp: linteger not valid anymore due to binary changes
PASS -> UNRESOLVED: gdb.mi/mi-var-invalidate.exp: no type for invalid variable global_simple
PASS -> UNRESOLVED: gdb.mi/mi-var-invalidate.exp: no type for invalid variable linteger
PASS -> UNRESOLVED: gdb.mi/mi-var-invalidate.exp: set format variable float_simple
PASS -> UNRESOLVED: gdb.mi/mi-var-invalidate.exp: type simpleton for valid variable global_simple
new UNRESOLVED: gdb.mi/mi-var-list-children-invalid-grandchild.exp:
PASS -> UNRESOLVED: gdb.mi/mi-var-list-children-invalid-grandchild.exp: breakpoint at main
PASS -> UNRESOLVED: gdb.mi/mi-var-list-children-invalid-grandchild.exp: create variable object
PASS -> UNRESOLVED: gdb.mi/mi-var-list-children-invalid-grandchild.exp: list children #1
PASS -> UNRESOLVED: gdb.mi/mi-var-list-children-invalid-grandchild.exp: list children #2
PASS -> UNRESOLVED: gdb.mi/mi-var-list-children-invalid-grandchild.exp: run to 41
PASS -> UNRESOLVED: gdb.mi/mi-var-list-children-invalid-grandchild.exp: run to 43
PASS -> UNRESOLVED: gdb.mi/mi-var-list-children-invalid-grandchild.exp: update variable object
new UNRESOLVED: gdb.mi/mi-var-list-children-invalid-grandchild.exp: wait for stop
new UNRESOLVED: gdb.mi/mi-var-rtti.exp:
PASS -> UNRESOLVED: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:148
PASS -> UNRESOLVED: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:201
PASS -> UNRESOLVED: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:250
PASS -> UNRESOLVED: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:306
PASS -> UNRESOLVED: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:36
PASS -> UNRESOLVED: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:63
PASS -> UNRESOLVED: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:93
new FAIL: gdb.mi/mi-var-rtti.exp: skip_type_update_when_not_use_rtti: go to line 306
new UNRESOLVED: gdb.mi/mi-var-rtti.exp: skip_type_update_when_not_use_rtti: step over 306
new FAIL: gdb.mi/mi-var-rtti.exp: type_update_when_use_rtti: go to line 250
new UNRESOLVED: gdb.mi/mi-var-rtti.exp: type_update_when_use_rtti: step over 250
new FAIL: gdb.mi/mi-var-rtti.exp: use_rtti_for_ptr: go to line 36
new UNRESOLVED: gdb.mi/mi-var-rtti.exp: use_rtti_for_ptr: step over 36
new FAIL: gdb.mi/mi-var-rtti.exp: use_rtti_for_ptr_child: go to line 93
new UNRESOLVED: gdb.mi/mi-var-rtti.exp: use_rtti_for_ptr_child: step over 93
new FAIL: gdb.mi/mi-var-rtti.exp: use_rtti_for_ref: go to line 63
new UNRESOLVED: gdb.mi/mi-var-rtti.exp: use_rtti_for_ref: step over 63
new FAIL: gdb.mi/mi-var-rtti.exp: use_rtti_for_ref_child: go to line 148
new UNRESOLVED: gdb.mi/mi-var-rtti.exp: use_rtti_for_ref_child: step over 148
new FAIL: gdb.mi/mi-var-rtti.exp: use_rtti_with_multiple_inheritence: go to line 201
new UNRESOLVED: gdb.mi/mi-var-rtti.exp: use_rtti_with_multiple_inheritence: step over 201
new UNRESOLVED: gdb.mi/mi-var-rtti.exp: wait for stop
new UNRESOLVED: gdb.mi/mi-vla-c99.exp:
PASS -> UNRESOLVED: gdb.mi/mi-vla-c99.exp: create local variable vla
PASS -> UNRESOLVED: gdb.mi/mi-vla-c99.exp: eval variable vla
PASS -> UNRESOLVED: gdb.mi/mi-vla-c99.exp: evaluate complete vla
PASS -> UNRESOLVED: gdb.mi/mi-vla-c99.exp: evaluate vla[0]
PASS -> UNRESOLVED: gdb.mi/mi-vla-c99.exp: evaluate vla[2]
PASS -> UNRESOLVED: gdb.mi/mi-vla-c99.exp: evaluate vla[4]
PASS -> UNRESOLVED: gdb.mi/mi-vla-c99.exp: get children of vla
PASS -> UNRESOLVED: gdb.mi/mi-vla-c99.exp: info type variable vla
PASS -> UNRESOLVED: gdb.mi/mi-vla-c99.exp: insert breakpoint at line 28 after vla is filled
PASS -> UNRESOLVED: gdb.mi/mi-vla-c99.exp: run to breakpoint at line 28
PASS -> UNRESOLVED: gdb.mi/mi-vla-c99.exp: show format variable vla
new UNRESOLVED: gdb.mi/mi-watch-nonstop.exp:
PASS -> UNRESOLVED: gdb.mi/mi-watch-nonstop.exp: breakpoint at main
new UNRESOLVED: gdb.mi/mi-watch.exp: mi-mode=main: wp-type=hw:
PASS -> UNRESOLVED: gdb.mi/mi-watch.exp: mi-mode=main: wp-type=hw: break-watch operation
PASS -> UNRESOLVED: gdb.mi/mi-watch.exp: mi-mode=main: wp-type=hw: breakpoint at callee4
PASS -> UNRESOLVED: gdb.mi/mi-watch.exp: mi-mode=main: wp-type=hw: list of watchpoints
PASS -> UNRESOLVED: gdb.mi/mi-watch.exp: mi-mode=main: wp-type=hw: watchpoint trigger
new UNRESOLVED: gdb.mi/mi-watch.exp: mi-mode=main: wp-type=sw:
PASS -> UNRESOLVED: gdb.mi/mi-watch.exp: mi-mode=main: wp-type=sw: break-watch operation
PASS -> UNRESOLVED: gdb.mi/mi-watch.exp: mi-mode=main: wp-type=sw: breakpoint at callee4
PASS -> UNRESOLVED: gdb.mi/mi-watch.exp: mi-mode=main: wp-type=sw: list of watchpoints
PASS -> UNRESOLVED: gdb.mi/mi-watch.exp: mi-mode=main: wp-type=sw: watchpoint trigger
PASS -> FAIL: gdb.mi/mi-watch.exp: mi-mode=separate: wp-type=hw: break-watch operation
PASS -> FAIL: gdb.mi/mi-watch.exp: mi-mode=separate: wp-type=hw: breakpoint at callee4
PASS -> FAIL: gdb.mi/mi-watch.exp: mi-mode=separate: wp-type=hw: list of watchpoints
PASS -> FAIL: gdb.mi/mi-watch.exp: mi-mode=separate: wp-type=hw: watchpoint trigger
PASS -> FAIL: gdb.mi/mi-watch.exp: mi-mode=separate: wp-type=sw: break-watch operation
PASS -> FAIL: gdb.mi/mi-watch.exp: mi-mode=separate: wp-type=sw: breakpoint at callee4
PASS -> FAIL: gdb.mi/mi-watch.exp: mi-mode=separate: wp-type=sw: list of watchpoints
PASS -> FAIL: gdb.mi/mi-watch.exp: mi-mode=separate: wp-type=sw: watchpoint trigger
new UNRESOLVED: gdb.mi/mi2-cli-display.exp:
PASS -> UNRESOLVED: gdb.mi/mi2-cli-display.exp: breakpoint at do_tests
PASS -> UNRESOLVED: gdb.mi/mi2-cli-display.exp: check display and source line x=24
PASS -> UNRESOLVED: gdb.mi/mi2-cli-display.exp: check display and source line x=25
PASS -> UNRESOLVED: gdb.mi/mi2-cli-display.exp: display x
new UNRESOLVED: gdb.mi/mi2-cli-display.exp: exec-next
PASS -> UNRESOLVED: gdb.mi/mi2-cli-display.exp: next
new UNRESOLVED: gdb.mi/mi2-var-child.exp:
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: Run till MI stops in do_nested_struct_union_tests
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: create root varobj for ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: create root varobj for ss_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: create root varobj for v
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: create root varobj for var
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: create root varobj for var2
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of ptr1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.2_anonymous
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.h
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.h.*h
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.char_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.c
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.3_anonymous
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.3_anonymous.a2
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.3_anonymous.b2
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.a1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.b1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.u1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.u1.a
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.u1.b
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.u2
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.u2.a3
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.u2.b3
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of v1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of v1.1_anonymous
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of v1.2_anonymous
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of var1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of var1.3_anonymous
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of var1.3_anonymous.a2
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of var1.3_anonymous.b2
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of var1.a1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of var1.b1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of var1.u1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of var1.u1.a
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of var1.u1.b
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of var1.u2
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of var1.u2.a3
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of var1.u2.b3
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of var21
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of var21.ab
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of var21.ab.a
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: VT: list children of var21.ab.b
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: break in do_anonymous_type_tests
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: break in do_nested_struct_union_tests
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: breakpoint at do_children_tests
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: continue to do_anonymous_type_tests breakpoint
new UNRESOLVED: gdb.mi/mi2-var-child.exp: continuing execution to enter do_nested_struct_union_tests
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: create local variable  psnp->char_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: create local variable  psnp->long_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: create local variable  psnp->ptrs
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: create local variable struct_declarations
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: create local variable weird
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: create local variable weird->int_ptr_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: delete var struct_declarations
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: delete var weird
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: delete var weird->int_ptr_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ptr1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.g
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.h
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.h.*h
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.h.*h.**h
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.0
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.2
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.3
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.4
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.5
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.6
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.7
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.8
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.9
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.char_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.char_ptr.*char_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.character
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.integer
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.signed_character
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.unsigned_integer
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.d
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.e
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.f
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.b
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.c
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.c.*c
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.a
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ss_ptr1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.3_anonymous
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.3_anonymous.a2
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.3_anonymous.a2.a
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.3_anonymous.b2
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.3_anonymous.b2.b
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.a1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.a1.a
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.b1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.b1.b
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u1.a
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u1.a.a
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u1.b
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u1.b.b
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u2
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u2.a3
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u2.a3.a
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u2.b3
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u2.b3.b
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for v1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for v1.1_anonymous
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for v1.1_anonymous.a
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for v1.2_anonymous
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for v1.2_anonymous.b
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for v1.x
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for var1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for var1.3_anonymous
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for var1.3_anonymous.a2
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for var1.3_anonymous.a2.a
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for var1.3_anonymous.b2
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for var1.3_anonymous.b2.b
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for var1.a1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for var1.a1.a
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for var1.b1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for var1.b1.b
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for var1.u1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for var1.u1.a
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for var1.u1.a.a
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for var1.u1.b
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for var1.u1.b.b
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for var1.u2
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for var1.u2.a3
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for var1.u2.a3.a
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for var1.u2.b3
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for var1.u2.b3.b
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for var21
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for var21.ab
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for var21.ab.a
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for var21.ab.a.a
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for var21.ab.b
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: expression for var21.ab.b.b
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of psnp->char_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of psnp->char_ptr.*psnp->char_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr.***psnp->char_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr.***psnp->char_ptr.****psnp->char_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of psnp->long_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of psnp->long_ptr.*psnp->long_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr.***psnp->long_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr.***psnp->long_ptr.****psnp->long_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of psnp->ptrs
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of psnp->ptrs.0
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of psnp->ptrs.0.next
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of psnp->ptrs.0.next.char_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of psnp->ptrs.0.next.char_ptr.*char_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of psnp->ptrs.0.next.char_ptr.*char_ptr.**char_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of psnp->ptrs.0.next.char_ptr.*char_ptr.**char_ptr.***char_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of psnp->ptrs.0.next.next
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of psnp->ptrs.0.next.next.ptrs
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of struct_declarations
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of struct_declarations.char_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of struct_declarations.character
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of struct_declarations.func_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of struct_declarations.func_ptr_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of struct_declarations.func_ptr_struct
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of struct_declarations.int_ptr_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of struct_declarations.int_ptr_ptr.*int_ptr_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of struct_declarations.integer
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array.1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array.2
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array.3
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array.4
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array.5
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array.6
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array.7
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array.8
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array.9
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_int
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.g
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.h
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.i
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2.f
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2.u1s1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2.u1s1.d
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2.u1s1.e
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2.u1s1.foo
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2.u1s1.func
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2.u1s2
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2.u1s2.array_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2.u1s2.func
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of struct_declarations.u1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of struct_declarations.u1.a
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of struct_declarations.u1.b
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of struct_declarations.u1.c
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of struct_declarations.u1.d
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of weird
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of weird->int_ptr_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of weird->int_ptr_ptr.*weird->int_ptr_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of weird->int_ptr_ptr.*weird->int_ptr_ptr.**weird->int_ptr_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of weird.int_ptr_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of weird.int_ptr_ptr.*int_ptr_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get children of weird.long_array
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of psnp->char_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of psnp->char_ptr.*psnp->char_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr.***psnp->char_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr.***psnp->char_ptr.****psnp->char_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of psnp->long_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of psnp->long_ptr.*psnp->long_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr.***psnp->long_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr.***psnp->long_ptr.****psnp->long_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of psnp->ptrs
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of psnp->ptrs.0
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of psnp->ptrs.0.next
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of psnp->ptrs.0.next.char_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of psnp->ptrs.0.next.char_ptr.*char_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of psnp->ptrs.0.next.char_ptr.*char_ptr.**char_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of psnp->ptrs.0.next.char_ptr.*char_ptr.**char_ptr.***char_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.char_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.character
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.func_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.func_ptr_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.func_ptr_struct
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.int_ptr_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.int_ptr_ptr.*int_ptr_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.integer
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array.1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array.2
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array.3
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array.4
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array.5
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array.6
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array.7
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array.8
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array.9
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_int
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.g
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.h
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.i
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2.f
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1.d
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1.e
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1.foo
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1.func
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2.u1s2
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2.u1s2.array_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2.u1s2.func
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.u1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.u1.a
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.u1.b
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.u1.c
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.u1.d
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of weird
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of weird->int_ptr_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of weird->int_ptr_ptr.*weird->int_ptr_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of weird->int_ptr_ptr.*weird->int_ptr_ptr.**weird->int_ptr_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of weird.int_ptr_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of weird.int_ptr_ptr.*int_ptr_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: get number of children of weird.long_array
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: is struct_declarations editable
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: is struct_declarations.long_array editable
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: is struct_declarations.long_array.0 editable
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: is struct_declarations.u1.a editable
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: is struct_declarations.u1.b editable
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: is struct_declarations.u1.c editable
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: is weird editable
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: is weird->int_ptr_ptr editable
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: is weird.int_ptr_ptr.*int_ptr_ptr editable
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: is weird.int_ptr_ptr.*int_ptr_ptr.**int_ptr_ptr editable
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: is weird.s2 editable
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: is weird.u1 editable
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ptr1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.g
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.h
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.h.*h
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.h.*h.**h
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.0
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.2
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.3
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.4
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.5
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.6
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.7
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.8
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.9
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.char_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.char_ptr.*char_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.character
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.integer
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.signed_character
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.unsigned_integer
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.d
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.e
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.f
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.b
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.c
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.c.*c
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.a
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.3_anonymous
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.3_anonymous.a2
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.3_anonymous.a2.a
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.3_anonymous.b2
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.3_anonymous.b2.b
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.a1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.a1.a
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.b1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.b1.b
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u1.a
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u1.a.a
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u1.b
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u1.b.b
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u2
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u2.a3
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u2.a3.a
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u2.b3
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u2.b3.b
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for v1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for v1.1_anonymous
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for v1.1_anonymous.a
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for v1.2_anonymous
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for v1.2_anonymous.b
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for v1.x
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for var1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for var1.3_anonymous
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for var1.3_anonymous.a2
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for var1.3_anonymous.a2.a
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for var1.3_anonymous.b2
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for var1.3_anonymous.b2.b
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for var1.a1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for var1.a1.a
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for var1.b1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for var1.b1.b
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for var1.u1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for var1.u1.a
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for var1.u1.a.a
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for var1.u1.b
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for var1.u1.b.b
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for var1.u2
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for var1.u2.a3
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for var1.u2.a3.a
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for var1.u2.b3
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for var1.u2.b3.b
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for var21
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for var21.ab
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for var21.ab.a
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for var21.ab.a.a
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for var21.ab.b
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: path expression for var21.ab.b.b
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: run to 251
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: step $line_dct_123 + 1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: step $line_dct_123 + 4
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: step $line_dct_123 + 5
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: step $line_dct_123 + 6
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: step $line_dct_123 + 7
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: step $line_dct_123 + 8
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: step $line_dct_nothing
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: step $line_dct_nothing + 1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: step $line_dct_snp0 + 1
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: step $line_dct_snp0 + 2
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: step $line_dct_snp0 + 3
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: step $line_dct_snp0 + 4
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: step $line_dct_snp0 + 5
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: step $line_dct_snp0 + 6
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: step $line_dct_snp0 + 7
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: step to line $line_dct_123
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: update all vars int_ptr_ptr and children changed
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: update all vars psnp->char_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: update all vars psnp->long_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: update all vars psnp->next->char_ptr
XFAIL -> UNRESOLVED: gdb.mi/mi2-var-child.exp: update all vars psnp->next->long_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: update all vars psnp->next->next->char_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: update all vars psnp->next->next->long_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: update all vars struct_declarations.char_ptr
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: update all vars struct_declarations.func_ptr changed
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: update all vars struct_declarations.integer
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: update all vars struct_declarations.long_array.0 changed
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: update all vars struct_declarations.long_array.1 changed
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: update all vars struct_declarations.long_array.2 changed
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: update all vars struct_declarations.long_array.3-9 changed
PASS -> UNRESOLVED: gdb.mi/mi2-var-child.exp: update all vars. None changed
new UNRESOLVED: gdb.mi/mi2-var-child.exp: wait for stop
PASS -> FAIL: gdb.mi/new-ui-mi-sync.exp: sync-command=continue: breakpoint at main
new UNRESOLVED: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01":
PASS -> UNRESOLVED: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint at main
PASS -> UNRESOLVED: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit
PASS -> UNRESOLVED: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit 2
PASS -> UNRESOLVED: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": set breakpoint
PASS -> UNRESOLVED: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": set watchpoint
PASS -> UNRESOLVED: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": set x
PASS -> UNRESOLVED: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit
PASS -> UNRESOLVED: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2
new UNRESOLVED: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01":
PASS -> UNRESOLVED: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint at main
PASS -> UNRESOLVED: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit
PASS -> UNRESOLVED: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit 2
PASS -> UNRESOLVED: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": set breakpoint
PASS -> UNRESOLVED: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": set watchpoint
PASS -> UNRESOLVED: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": set x
PASS -> UNRESOLVED: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit
PASS -> UNRESOLVED: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2
new FAIL: gdb.modula2/max-depth.exp: can't run to main
PASS -> UNRESOLVED: gdb.multi/base.exp: 'info functions commonfun' in inferior 1
PASS -> UNRESOLVED: gdb.multi/base.exp: 'info functions commonfun' in inferior 3
new UNRESOLVED: gdb.multi/base.exp: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.multi/base.exp: list commonfun in goodbye
PASS -> UNRESOLVED: gdb.multi/base.exp: list commonfun in hello
PASS -> UNRESOLVED: gdb.multi/base.exp: print gglob
PASS -> UNRESOLVED: gdb.multi/base.exp: print glob
PASS -> UNRESOLVED: gdb.multi/base.exp: print hglob
PASS -> UNRESOLVED: gdb.multi/base.exp: set listsize 1
PASS -> UNRESOLVED: gdb.multi/base.exp: switch back to inferior 1
PASS -> UNRESOLVED: gdb.multi/base.exp: switch to inferior 1 to run it
PASS -> UNRESOLVED: gdb.multi/base.exp: switch to inferior 3
PASS -> UNRESOLVED: gdb.multi/base.exp: switch to inferior 3 to print globals
new FAIL: gdb.multi/remove-inferiors.exp: couldn't run to main.
new FAIL: gdb.multi/watchpoint-multi-exit.exp: dispose=detach: can't run to child_function
new FAIL: gdb.multi/watchpoint-multi-exit.exp: dispose=exit: can't run to child_function
new FAIL: gdb.multi/watchpoint-multi-exit.exp: dispose=kill: can't run to child_function
new FAIL: gdb.opt/clobbered-registers-O2.exp: run to start_sequence
PASS -> UNRESOLVED: gdb.opt/inline-break.exp: break func1
PASS -> UNRESOLVED: gdb.opt/inline-break.exp: break func2
PASS -> UNRESOLVED: gdb.opt/inline-break.exp: break func3b
PASS -> UNRESOLVED: gdb.opt/inline-break.exp: break func4b
PASS -> UNRESOLVED: gdb.opt/inline-break.exp: break func5b
PASS -> UNRESOLVED: gdb.opt/inline-break.exp: break func6b
PASS -> UNRESOLVED: gdb.opt/inline-break.exp: break func7b
PASS -> UNRESOLVED: gdb.opt/inline-break.exp: break func8b
new UNRESOLVED: gdb.opt/inline-break.exp: cmd=break: could not run to main
new UNRESOLVED: gdb.opt/inline-break.exp: cmd=break: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.opt/inline-break.exp: info break 1
PASS -> UNRESOLVED: gdb.opt/inline-break.exp: info break 2
PASS -> UNRESOLVED: gdb.opt/inline-break.exp: info break 3
PASS -> UNRESOLVED: gdb.opt/inline-break.exp: info break 4
PASS -> UNRESOLVED: gdb.opt/inline-break.exp: info break 5
PASS -> UNRESOLVED: gdb.opt/inline-break.exp: info break 6
PASS -> UNRESOLVED: gdb.opt/inline-break.exp: info break 7
PASS -> UNRESOLVED: gdb.opt/inline-break.exp: info break 8
PASS -> UNRESOLVED: gdb.opt/inline-break.exp: print func1
PASS -> UNRESOLVED: gdb.opt/inline-break.exp: print func2
new UNRESOLVED: gdb.opt/inline-bt.exp: skipping inline frame tests
new UNRESOLVED: gdb.opt/inline-cmds.exp: skipping inline frame tests
new UNRESOLVED: gdb.opt/inline-locals.exp: inline-bt.exp
new FAIL: gdb.python/lib-types.exp: can't run to main
new FAIL: gdb.python/py-as-string.exp: couldn't run to main.
new FAIL: gdb.python/py-bad-printers.exp: can't run to main
new FAIL: gdb.python/py-block.exp: can't run to main
new UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_address: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_address: eval address of main
PASS -> UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_address: int value of main
PASS -> UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_address: python gdb.Breakpoint
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_basic: cannot run to main.
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_cond_and_cmds: cannot run to main.
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_deletion: cannot run to main.
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: cannot run to main.
PASS -> UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_events: check for breakpoint_created event
PASS -> UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_events: check for breakpoint_deleted event
PASS -> UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_events: check for breakpoint_modified event
PASS -> UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_events: delete 1
PASS -> UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_events: disable 1
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_events: setting breakpoint at 48
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_explicit_loc: cannot run to main.
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: cannot run to main.
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_invisible: cannot run to main.
PASS -> UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_pending: Check pending status of pending breakpoint
new UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_pending: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.python/py-breakpoint.exp: test_bkpt_pending: setting breakpoint at nosuchfunction
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_qualified: cannot run to main.
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_temporary: cannot run to main.
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: cannot run to main.
new FAIL: gdb.python/py-cmd.exp: cannot run to main.
PASS -> UNRESOLVED: gdb.python/py-evthreads.exp: continue thread 1
PASS -> UNRESOLVED: gdb.python/py-evthreads.exp: reached breakpoint 2
PASS -> UNRESOLVED: gdb.python/py-evthreads.exp: reached breakpoint 3
new FAIL: gdb.python/py-evthreads.exp: setting breakpoint at main
new UNRESOLVED: gdb.python/py-evthreads.exp: setting breakpoint at thread2
new UNRESOLVED: gdb.python/py-evthreads.exp: setting breakpoint at thread3
PASS -> UNRESOLVED: gdb.python/py-evthreads.exp: thread 2
PASS -> UNRESOLVED: gdb.python/py-evthreads.exp: thread 3
new FAIL: gdb.python/py-finish-breakpoint.exp: cannot run to main.
new FAIL: gdb.python/py-finish-breakpoint2.exp: cannot run to main.
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option actual_objects: actual_objects=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option actual_objects: actual_objects=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option array_indexes: array_indexes=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option array_indexes: array_indexes=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option deref_refs: deref_refs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option deref_refs: deref_refs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option pretty_arrays: pretty_arrays=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option pretty_arrays: pretty_arrays=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option pretty_structs: pretty_structs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option pretty_structs: pretty_structs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option raw: raw=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option raw: raw=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option static_members: static_members=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option static_members: static_members=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option symbols: symbols=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option symbols: symbols=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option unions: unions=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string with option unions: unions=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_big_string: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option actual_objects: actual_objects=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option actual_objects: actual_objects=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option array_indexes: array_indexes=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option array_indexes: array_indexes=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option deref_refs: deref_refs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option deref_refs: deref_refs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option pretty_arrays: pretty_arrays=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option pretty_arrays: pretty_arrays=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option pretty_structs: pretty_structs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option pretty_structs: pretty_structs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option raw: raw=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option raw: raw=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option static_members: static_members=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option static_members: static_members=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option symbols: symbols=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option symbols: symbols=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option unions: unions=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string with option unions: unions=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option actual_objects: actual_objects=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option actual_objects: actual_objects=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option array_indexes: array_indexes=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option array_indexes: array_indexes=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option deref_refs: deref_refs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option deref_refs: deref_refs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option pretty_arrays: pretty_arrays=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option pretty_arrays: pretty_arrays=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option pretty_structs: pretty_structs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option pretty_structs: pretty_structs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option raw: raw=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option raw: raw=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option static_members: static_members=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option static_members: static_members=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option symbols: symbols=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option symbols: symbols=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option unions: unions=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array with option unions: unions=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_binary_string_array: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option 12
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option actual_objects: actual_objects=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option actual_objects: actual_objects=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option array_indexes: array_indexes=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option array_indexes: array_indexes=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option deref_refs: deref_refs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option deref_refs: deref_refs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option format='xd'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option invalid=True
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option pretty_arrays: pretty_arrays=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option pretty_arrays: pretty_arrays=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option pretty_structs: pretty_structs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option pretty_structs: pretty_structs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option raw: raw=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option raw: raw=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option raw='hello'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option raw=True, format='x'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option static_members: static_members=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option static_members: static_members=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option symbols: symbols=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option symbols: symbols=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option unions: unions=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t with option unions: unions=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option actual_objects: actual_objects=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option actual_objects: actual_objects=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option array_indexes: array_indexes=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option array_indexes: array_indexes=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option deref_refs: deref_refs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option deref_refs: deref_refs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option pretty_arrays: pretty_arrays=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option pretty_arrays: pretty_arrays=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option pretty_structs: pretty_structs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option pretty_structs: pretty_structs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option raw: raw=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option raw: raw=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option static_members: static_members=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option static_members: static_members=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option symbols: symbols=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option symbols: symbols=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option unions: unions=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer with option unions: unions=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_point_t_pointer: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option actual_objects: actual_objects=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option actual_objects: actual_objects=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option array_indexes: array_indexes=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option array_indexes: array_indexes=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option deref_refs: deref_refs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option deref_refs: deref_refs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option pretty_arrays: pretty_arrays=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option pretty_arrays: pretty_arrays=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option pretty_structs: pretty_structs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option pretty_structs: pretty_structs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option raw: raw=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option raw: raw=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option static_members: static_members=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option static_members: static_members=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option symbols: symbols=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option symbols: symbols=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option unions: unions=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_string with option unions: unions=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_string: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_string: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option actual_objects: actual_objects=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option actual_objects: actual_objects=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option array_indexes: array_indexes=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option array_indexes: array_indexes=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option deref_refs: deref_refs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option deref_refs: deref_refs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option pretty_arrays: pretty_arrays=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option pretty_arrays: pretty_arrays=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option pretty_structs: pretty_structs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option pretty_structs: pretty_structs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option pretty_structs=True, unions=False
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option raw: raw=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option raw: raw=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option static_members: static_members=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option static_members: static_members=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option symbols: symbols=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option symbols: symbols=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option unions: unions=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union with option unions: unions=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_struct_with_union: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option actual_objects: actual_objects=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option actual_objects: actual_objects=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option array_indexes: array_indexes=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option array_indexes: array_indexes=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option deref_refs: deref_refs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option deref_refs: deref_refs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option pretty_arrays: pretty_arrays=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option pretty_arrays: pretty_arrays=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option pretty_structs: pretty_structs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option pretty_structs: pretty_structs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option raw: raw=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option raw: raw=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option static_members: static_members=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option static_members: static_members=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option symbols: symbols=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option symbols: symbols=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option symbols=False, format='d'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option unions: unions=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer with option unions: unions=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: a_symbol_pointer: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option actual_objects: actual_objects=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option actual_objects: actual_objects=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option array_indexes: array_indexes=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option array_indexes: array_indexes=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option array_indexes=True, pretty_arrays=True
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option deref_refs: deref_refs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option deref_refs: deref_refs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option pretty_arrays: pretty_arrays=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option pretty_arrays: pretty_arrays=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option pretty_structs: pretty_structs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option pretty_structs: pretty_structs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option raw: raw=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option raw: raw=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option static_members: static_members=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option static_members: static_members=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option symbols: symbols=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option symbols: symbols=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option unions: unions=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option unions: unions=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option actual_objects: actual_objects=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option actual_objects: actual_objects=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option array_indexes: array_indexes=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option array_indexes: array_indexes=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option deref_refs: deref_refs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option deref_refs: deref_refs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option pretty_arrays: pretty_arrays=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option pretty_arrays: pretty_arrays=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option pretty_structs: pretty_structs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option pretty_structs: pretty_structs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option raw: raw=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option raw: raw=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option static_members: static_members=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option static_members: static_members=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option symbols: symbols=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option symbols: symbols=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option unions: unions=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option unions: unions=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option actual_objects: actual_objects=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option actual_objects: actual_objects=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option array_indexes: array_indexes=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option array_indexes: array_indexes=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option deref_refs: deref_refs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option deref_refs: deref_refs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option pretty_arrays: pretty_arrays=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option pretty_arrays: pretty_arrays=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option pretty_structs: pretty_structs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option pretty_structs: pretty_structs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option raw: raw=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option raw: raw=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option static_members: static_members=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option static_members: static_members=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option symbols: symbols=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option symbols: symbols=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option unions: unions=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_enum with option unions: unions=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_enum: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: an_enum: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option actual_objects: actual_objects=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option actual_objects: actual_objects=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option array_indexes: array_indexes=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option array_indexes: array_indexes=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option deref_refs: deref_refs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option deref_refs: deref_refs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option pretty_arrays: pretty_arrays=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option pretty_arrays: pretty_arrays=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option pretty_structs: pretty_structs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option pretty_structs: pretty_structs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option raw: raw=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option raw: raw=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option static_members: static_members=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option static_members: static_members=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option symbols: symbols=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option symbols: symbols=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option unions: unions=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: another_point with option unions: unions=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: another_point: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: another_point: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: disable pretty-printer '' test_lookup_function: a_point_t with option pretty_structs: pretty_structs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: disable pretty-printer '' test_lookup_function: a_point_t with option pretty_structs: pretty_structs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: disable pretty-printer '' test_lookup_function: a_point_t with option raw: raw=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: disable pretty-printer '' test_lookup_function: a_point_t with option raw: raw=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: disable pretty-printer '' test_lookup_function: a_point_t: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: disable pretty-printer '' test_lookup_function: a_point_t: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: disable pretty-printer '' test_lookup_function: disable pretty-printer '' test_lookup_function
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: disable pretty-printer '' test_lookup_function: enable pretty-printer '' test_lookup_function
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: format='d': 0x2a with option format='d'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: format='d': a_big_string with option format='d'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: format='d': a_binary_string with option format='d'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: format='d': a_binary_string_array with option format='d'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: format='d': a_point_t with option format='d'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: format='d': a_point_t_pointer with option format='d'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: format='d': a_string with option format='d'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: format='d': a_struct_with_union with option format='d'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: format='d': a_symbol_pointer with option format='d'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: format='d': an_array with option format='d'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: format='d': an_array_with_repetition with option format='d'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: format='d': an_enum with option format='d'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: format='d': another_point with option format='d'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: format='x': 42 with option format='x'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: format='x': a_big_string with option format='x'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: format='x': a_binary_string with option format='x'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: format='x': a_binary_string_array with option format='x'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: format='x': a_point_t with option format='x'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: format='x': a_point_t_pointer with option format='x'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: format='x': a_string with option format='x'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: format='x': a_struct_with_union with option format='x'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: format='x': a_symbol_pointer with option format='x'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: format='x': an_array with option format='x'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: format='x': an_array_with_repetition with option format='x'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: format='x': an_enum with option format='x'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: format='x': another_point with option format='x'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_depth=-1: a_struct_with_union with option max_depth=-1
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_depth=0: a_struct_with_union with option max_depth=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_depth=1: a_struct_with_union with option max_depth=1
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_depth=2: a_struct_with_union with option max_depth=2
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=0: a_big_string with option max_elements=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=0: a_binary_string with option max_elements=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=0: a_binary_string_array with option max_elements=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=0: a_point_t with option max_elements=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=0: a_point_t_pointer with option max_elements=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=0: a_string with option max_elements=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=0: a_struct_with_union with option max_elements=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=0: a_symbol_pointer with option max_elements=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=0: an_array with option max_elements=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=0: an_array_with_repetition with option max_elements=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=0: an_enum with option max_elements=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=0: another_point with option max_elements=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=1000: a_big_string with option max_elements=1000
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=1000: a_binary_string with option max_elements=1000
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=1000: a_binary_string_array with option max_elements=1000
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=1000: a_point_t with option max_elements=1000
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=1000: a_point_t_pointer with option max_elements=1000
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=1000: a_string with option max_elements=1000
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=1000: a_struct_with_union with option max_elements=1000
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=1000: a_symbol_pointer with option max_elements=1000
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=1000: an_array with option max_elements=1000
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=1000: an_array_with_repetition with option max_elements=1000
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=1000: an_enum with option max_elements=1000
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=1000: another_point with option max_elements=1000
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=200: a_big_string with option max_elements=200
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=200: a_binary_string with option max_elements=200
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=200: a_binary_string_array with option max_elements=200
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=200: a_point_t with option max_elements=200
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=200: a_point_t_pointer with option max_elements=200
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=200: a_string with option max_elements=200
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=200: a_struct_with_union with option max_elements=200
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=200: a_symbol_pointer with option max_elements=200
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=200: an_array with option max_elements=200
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=200: an_array_with_repetition with option max_elements=200
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=200: an_enum with option max_elements=200
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=200: another_point with option max_elements=200
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=3: a_big_string with option max_elements=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=3: a_binary_string with option max_elements=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=3: a_binary_string_array with option max_elements=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=3: a_point_t with option max_elements=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=3: a_point_t_pointer with option max_elements=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=3: a_string with option max_elements=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=3: a_struct_with_union with option max_elements=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=3: a_symbol_pointer with option max_elements=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=3: an_array with option max_elements=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=3: an_array_with_repetition with option max_elements=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=3: an_enum with option max_elements=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: max_elements=3: another_point with option max_elements=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=0: a_big_string with option repeat_threshold=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=0: a_binary_string with option repeat_threshold=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=0: a_binary_string_array with option repeat_threshold=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=0: a_point_t with option repeat_threshold=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=0: a_point_t_pointer with option repeat_threshold=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=0: a_string with option repeat_threshold=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=0: a_struct_with_union with option repeat_threshold=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=0: a_symbol_pointer with option repeat_threshold=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=0: an_array with option repeat_threshold=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=0: an_array_with_repetition with option repeat_threshold=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=0: an_enum with option repeat_threshold=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=0: another_point with option repeat_threshold=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=100: a_big_string with option repeat_threshold=100
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=100: a_binary_string with option repeat_threshold=100
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=100: a_binary_string_array with option repeat_threshold=100
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=100: a_point_t with option repeat_threshold=100
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=100: a_point_t_pointer with option repeat_threshold=100
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=100: a_string with option repeat_threshold=100
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=100: a_struct_with_union with option repeat_threshold=100
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=100: a_symbol_pointer with option repeat_threshold=100
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=100: an_array with option repeat_threshold=100
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=100: an_array_with_repetition with option repeat_threshold=100
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=100: an_enum with option repeat_threshold=100
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=100: another_point with option repeat_threshold=100
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=10: a_big_string with option repeat_threshold=10
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=10: a_binary_string with option repeat_threshold=10
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=10: a_binary_string_array with option repeat_threshold=10
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=10: a_point_t with option repeat_threshold=10
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=10: a_point_t_pointer with option repeat_threshold=10
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=10: a_string with option repeat_threshold=10
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=10: a_struct_with_union with option repeat_threshold=10
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=10: a_symbol_pointer with option repeat_threshold=10
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=10: an_array with option repeat_threshold=10
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=10: an_array_with_repetition with option repeat_threshold=10
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=10: an_enum with option repeat_threshold=10
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=10: another_point with option repeat_threshold=10
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=1: a_big_string with option repeat_threshold=1
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=1: a_binary_string with option repeat_threshold=1
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=1: a_binary_string_array with option repeat_threshold=1
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=1: a_point_t with option repeat_threshold=1
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=1: a_point_t_pointer with option repeat_threshold=1
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=1: a_string with option repeat_threshold=1
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=1: a_struct_with_union with option repeat_threshold=1
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=1: a_symbol_pointer with option repeat_threshold=1
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=1: an_array with option repeat_threshold=1
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=1: an_array_with_repetition with option repeat_threshold=1
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=1: an_enum with option repeat_threshold=1
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=1: another_point with option repeat_threshold=1
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=3: a_big_string with option repeat_threshold=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=3: a_binary_string with option repeat_threshold=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=3: a_binary_string_array with option repeat_threshold=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=3: a_point_t with option repeat_threshold=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=3: a_point_t_pointer with option repeat_threshold=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=3: a_string with option repeat_threshold=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=3: a_struct_with_union with option repeat_threshold=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=3: a_symbol_pointer with option repeat_threshold=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=3: an_array with option repeat_threshold=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=3: an_array_with_repetition with option repeat_threshold=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=3: an_enum with option repeat_threshold=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: repeat_threshold=3: another_point with option repeat_threshold=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print array on: an_array with option pretty_arrays: pretty_arrays=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print array on: an_array with option pretty_arrays: pretty_arrays=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print array on: an_array: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print array on: an_array: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print array on: an_array_with_repetition with option pretty_arrays: pretty_arrays=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print array on: an_array_with_repetition with option pretty_arrays: pretty_arrays=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print array on: an_array_with_repetition: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print array on: an_array_with_repetition: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print array on: set print array off
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print array on: set print array on
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print array-indexes on: an_array with option array_indexes: array_indexes=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print array-indexes on: an_array with option array_indexes: array_indexes=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print array-indexes on: an_array: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print array-indexes on: an_array: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print array-indexes on: an_array_with_repetition with option array_indexes: array_indexes=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print array-indexes on: an_array_with_repetition with option array_indexes: array_indexes=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print array-indexes on: an_array_with_repetition: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print array-indexes on: an_array_with_repetition: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print array-indexes on: set print array-indexes off
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print array-indexes on: set print array-indexes on
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print elements 4: a_binary_string with option
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print elements 4: a_binary_string_array with option
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print elements 4: a_string with option
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print elements 4: an_array_with_repetition with option
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print elements 4: set print elements 200
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print elements 4: set print elements 4
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print repeats 1: an_array_with_repetition with option
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print repeats 1: set print repeats 1
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print repeats 1: set print repeats 10
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print structs on: a_struct_with_union with option pretty_structs: pretty_structs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print structs on: a_struct_with_union with option pretty_structs: pretty_structs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print structs on: a_struct_with_union: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print structs on: a_struct_with_union: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print structs on: set print structs off
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print structs on: set print structs on
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print symbol off: a_symbol_pointer with option symbols: symbols=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print symbol off: a_symbol_pointer with option symbols: symbols=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print symbol off: a_symbol_pointer: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print symbol off: a_symbol_pointer: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print symbol off: set print symbol off
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print symbol off: set print symbol on
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print union off: a_struct_with_union with option unions: unions=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print union off: a_struct_with_union with option unions: unions=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print union off: a_struct_with_union: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print union off: a_struct_with_union: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print union off: set print union off
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_c: set print union off: set print union on
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option actual_objects: actual_objects=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option actual_objects: actual_objects=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option array_indexes: array_indexes=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option array_indexes: array_indexes=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option deref_refs: deref_refs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option deref_refs: deref_refs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option deref_refs=True, static_members=False
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option pretty_arrays: pretty_arrays=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option pretty_arrays: pretty_arrays=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option pretty_structs: pretty_structs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option pretty_structs: pretty_structs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option raw: raw=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option raw: raw=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option static_members: static_members=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option static_members: static_members=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option symbols: symbols=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option symbols: symbols=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option unions: unions=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option unions: unions=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option actual_objects: actual_objects=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option actual_objects: actual_objects=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option array_indexes: array_indexes=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option array_indexes: array_indexes=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option deref_refs: deref_refs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option deref_refs: deref_refs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option pretty_arrays: pretty_arrays=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option pretty_arrays: pretty_arrays=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option pretty_structs: pretty_structs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option pretty_structs: pretty_structs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option raw: raw=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option raw: raw=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option static_members: static_members=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option static_members: static_members=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option symbols: symbols=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option symbols: symbols=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option unions: unions=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string with option unions: unions=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_big_string: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option actual_objects: actual_objects=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option actual_objects: actual_objects=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option array_indexes: array_indexes=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option array_indexes: array_indexes=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option deref_refs: deref_refs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option deref_refs: deref_refs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option pretty_arrays: pretty_arrays=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option pretty_arrays: pretty_arrays=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option pretty_structs: pretty_structs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option pretty_structs: pretty_structs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option raw: raw=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option raw: raw=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option static_members: static_members=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option static_members: static_members=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option symbols: symbols=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option symbols: symbols=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option unions: unions=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string with option unions: unions=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option actual_objects: actual_objects=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option actual_objects: actual_objects=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option array_indexes: array_indexes=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option array_indexes: array_indexes=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option deref_refs: deref_refs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option deref_refs: deref_refs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option pretty_arrays: pretty_arrays=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option pretty_arrays: pretty_arrays=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option pretty_structs: pretty_structs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option pretty_structs: pretty_structs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option raw: raw=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option raw: raw=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option static_members: static_members=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option static_members: static_members=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option symbols: symbols=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option symbols: symbols=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option unions: unions=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array with option unions: unions=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_binary_string_array: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option 12
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option actual_objects: actual_objects=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option actual_objects: actual_objects=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option array_indexes: array_indexes=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option array_indexes: array_indexes=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option deref_refs: deref_refs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option deref_refs: deref_refs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option format='xd'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option invalid=True
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option pretty_arrays: pretty_arrays=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option pretty_arrays: pretty_arrays=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option pretty_structs: pretty_structs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option pretty_structs: pretty_structs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option raw: raw=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option raw: raw=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option raw='hello'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option raw=True, format='x'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option static_members: static_members=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option static_members: static_members=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option symbols: symbols=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option symbols: symbols=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option unions: unions=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t with option unions: unions=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option actual_objects: actual_objects=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option actual_objects: actual_objects=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option array_indexes: array_indexes=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option array_indexes: array_indexes=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option deref_refs: deref_refs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option deref_refs: deref_refs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option pretty_arrays: pretty_arrays=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option pretty_arrays: pretty_arrays=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option pretty_structs: pretty_structs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option pretty_structs: pretty_structs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option raw: raw=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option raw: raw=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option static_members: static_members=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option static_members: static_members=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option symbols: symbols=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option symbols: symbols=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option unions: unions=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer with option unions: unions=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_pointer: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option actual_objects: actual_objects=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option actual_objects: actual_objects=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option array_indexes: array_indexes=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option array_indexes: array_indexes=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option deref_refs: deref_refs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option deref_refs: deref_refs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option deref_refs=True, actual_objects=True, raw=True
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option pretty_arrays: pretty_arrays=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option pretty_arrays: pretty_arrays=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option pretty_structs: pretty_structs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option pretty_structs: pretty_structs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option raw: raw=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option raw: raw=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option static_members: static_members=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option static_members: static_members=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option symbols: symbols=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option symbols: symbols=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option unions: unions=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref with option unions: unions=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_point_t_ref: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option actual_objects: actual_objects=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option actual_objects: actual_objects=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option array_indexes: array_indexes=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option array_indexes: array_indexes=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option deref_refs: deref_refs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option deref_refs: deref_refs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option pretty_arrays: pretty_arrays=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option pretty_arrays: pretty_arrays=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option pretty_structs: pretty_structs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option pretty_structs: pretty_structs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option raw: raw=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option raw: raw=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option static_members: static_members=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option static_members: static_members=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option symbols: symbols=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option symbols: symbols=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option unions: unions=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string with option unions: unions=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_string: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option actual_objects: actual_objects=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option actual_objects: actual_objects=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option array_indexes: array_indexes=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option array_indexes: array_indexes=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option deref_refs: deref_refs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option deref_refs: deref_refs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option pretty_arrays: pretty_arrays=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option pretty_arrays: pretty_arrays=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option pretty_structs: pretty_structs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option pretty_structs: pretty_structs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option pretty_structs=True, unions=False
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option raw: raw=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option raw: raw=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option static_members: static_members=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option static_members: static_members=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option symbols: symbols=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option symbols: symbols=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option unions: unions=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union with option unions: unions=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_struct_with_union: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option actual_objects: actual_objects=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option actual_objects: actual_objects=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option array_indexes: array_indexes=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option array_indexes: array_indexes=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option deref_refs: deref_refs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option deref_refs: deref_refs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option pretty_arrays: pretty_arrays=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option pretty_arrays: pretty_arrays=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option pretty_structs: pretty_structs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option pretty_structs: pretty_structs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option raw: raw=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option raw: raw=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option static_members: static_members=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option static_members: static_members=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option symbols: symbols=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option symbols: symbols=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option symbols=False, format='d'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option unions: unions=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer with option unions: unions=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: a_symbol_pointer: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option actual_objects: actual_objects=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option actual_objects: actual_objects=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option array_indexes: array_indexes=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option array_indexes: array_indexes=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option array_indexes=True, pretty_arrays=True
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option deref_refs: deref_refs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option deref_refs: deref_refs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option pretty_arrays: pretty_arrays=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option pretty_arrays: pretty_arrays=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option pretty_structs: pretty_structs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option pretty_structs: pretty_structs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option raw: raw=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option raw: raw=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option static_members: static_members=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option static_members: static_members=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option symbols: symbols=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option symbols: symbols=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option unions: unions=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option unions: unions=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option actual_objects: actual_objects=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option actual_objects: actual_objects=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option array_indexes: array_indexes=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option array_indexes: array_indexes=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option deref_refs: deref_refs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option deref_refs: deref_refs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option pretty_arrays: pretty_arrays=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option pretty_arrays: pretty_arrays=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option pretty_structs: pretty_structs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option pretty_structs: pretty_structs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option raw: raw=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option raw: raw=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option static_members: static_members=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option static_members: static_members=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option symbols: symbols=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option symbols: symbols=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option unions: unions=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option unions: unions=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option actual_objects: actual_objects=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option actual_objects: actual_objects=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option array_indexes: array_indexes=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option array_indexes: array_indexes=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option deref_refs: deref_refs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option deref_refs: deref_refs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option pretty_arrays: pretty_arrays=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option pretty_arrays: pretty_arrays=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option pretty_structs: pretty_structs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option pretty_structs: pretty_structs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option raw: raw=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option raw: raw=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option static_members: static_members=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option static_members: static_members=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option symbols: symbols=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option symbols: symbols=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option unions: unions=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum with option unions: unions=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: an_enum: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option actual_objects: actual_objects=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option actual_objects: actual_objects=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option array_indexes: array_indexes=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option array_indexes: array_indexes=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option deref_refs: deref_refs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option deref_refs: deref_refs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option pretty_arrays: pretty_arrays=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option pretty_arrays: pretty_arrays=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option pretty_structs: pretty_structs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option pretty_structs: pretty_structs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option raw: raw=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option raw: raw=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option static_members: static_members=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option static_members: static_members=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option symbols: symbols=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option symbols: symbols=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option unions: unions=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point with option unions: unions=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: another_point: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: disable pretty-printer '' test_lookup_function: a_point_t with option pretty_structs: pretty_structs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: disable pretty-printer '' test_lookup_function: a_point_t with option pretty_structs: pretty_structs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: disable pretty-printer '' test_lookup_function: a_point_t with option raw: raw=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: disable pretty-printer '' test_lookup_function: a_point_t with option raw: raw=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: disable pretty-printer '' test_lookup_function: a_point_t: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: disable pretty-printer '' test_lookup_function: a_point_t: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: disable pretty-printer '' test_lookup_function: disable pretty-printer '' test_lookup_function
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: disable pretty-printer '' test_lookup_function: enable pretty-printer '' test_lookup_function
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': 0x2a with option format='d'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': a_base_ref with option format='d'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': a_big_string with option format='d'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': a_binary_string with option format='d'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': a_binary_string_array with option format='d'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': a_point_t with option format='d'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': a_point_t_pointer with option format='d'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': a_point_t_ref with option format='d'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': a_string with option format='d'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': a_struct_with_union with option format='d'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': a_symbol_pointer with option format='d'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': an_array with option format='d'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': an_array_with_repetition with option format='d'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': an_enum with option format='d'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: format='d': another_point with option format='d'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': 42 with option format='x'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': a_base_ref with option format='x'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': a_big_string with option format='x'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': a_binary_string with option format='x'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': a_binary_string_array with option format='x'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': a_point_t with option format='x'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': a_point_t_pointer with option format='x'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': a_point_t_ref with option format='x'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': a_string with option format='x'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': a_struct_with_union with option format='x'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': a_symbol_pointer with option format='x'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': an_array with option format='x'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': an_array_with_repetition with option format='x'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': an_enum with option format='x'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: format='x': another_point with option format='x'
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_depth=-1: a_struct_with_union with option max_depth=-1
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_depth=0: a_struct_with_union with option max_depth=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_depth=1: a_struct_with_union with option max_depth=1
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_depth=2: a_struct_with_union with option max_depth=2
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: a_base_ref with option max_elements=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: a_big_string with option max_elements=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: a_binary_string with option max_elements=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: a_binary_string_array with option max_elements=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: a_point_t with option max_elements=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: a_point_t_pointer with option max_elements=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: a_point_t_ref with option max_elements=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: a_string with option max_elements=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: a_struct_with_union with option max_elements=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: a_symbol_pointer with option max_elements=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: an_array with option max_elements=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: an_array_with_repetition with option max_elements=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: an_enum with option max_elements=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=0: another_point with option max_elements=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: a_base_ref with option max_elements=1000
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: a_big_string with option max_elements=1000
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: a_binary_string with option max_elements=1000
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: a_binary_string_array with option max_elements=1000
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: a_point_t with option max_elements=1000
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: a_point_t_pointer with option max_elements=1000
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: a_point_t_ref with option max_elements=1000
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: a_string with option max_elements=1000
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: a_struct_with_union with option max_elements=1000
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: a_symbol_pointer with option max_elements=1000
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: an_array with option max_elements=1000
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: an_array_with_repetition with option max_elements=1000
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: an_enum with option max_elements=1000
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=1000: another_point with option max_elements=1000
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: a_base_ref with option max_elements=200
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: a_big_string with option max_elements=200
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: a_binary_string with option max_elements=200
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: a_binary_string_array with option max_elements=200
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: a_point_t with option max_elements=200
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: a_point_t_pointer with option max_elements=200
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: a_point_t_ref with option max_elements=200
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: a_string with option max_elements=200
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: a_struct_with_union with option max_elements=200
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: a_symbol_pointer with option max_elements=200
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: an_array with option max_elements=200
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: an_array_with_repetition with option max_elements=200
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: an_enum with option max_elements=200
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=200: another_point with option max_elements=200
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: a_base_ref with option max_elements=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: a_big_string with option max_elements=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: a_binary_string with option max_elements=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: a_binary_string_array with option max_elements=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: a_point_t with option max_elements=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: a_point_t_pointer with option max_elements=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: a_point_t_ref with option max_elements=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: a_string with option max_elements=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: a_struct_with_union with option max_elements=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: a_symbol_pointer with option max_elements=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: an_array with option max_elements=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: an_array_with_repetition with option max_elements=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: an_enum with option max_elements=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: max_elements=3: another_point with option max_elements=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: a_base_ref with option repeat_threshold=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: a_big_string with option repeat_threshold=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: a_binary_string with option repeat_threshold=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: a_binary_string_array with option repeat_threshold=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: a_point_t with option repeat_threshold=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: a_point_t_pointer with option repeat_threshold=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: a_point_t_ref with option repeat_threshold=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: a_string with option repeat_threshold=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: a_struct_with_union with option repeat_threshold=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: a_symbol_pointer with option repeat_threshold=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: an_array with option repeat_threshold=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: an_array_with_repetition with option repeat_threshold=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: an_enum with option repeat_threshold=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=0: another_point with option repeat_threshold=0
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: a_base_ref with option repeat_threshold=100
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: a_big_string with option repeat_threshold=100
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: a_binary_string with option repeat_threshold=100
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: a_binary_string_array with option repeat_threshold=100
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: a_point_t with option repeat_threshold=100
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: a_point_t_pointer with option repeat_threshold=100
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: a_point_t_ref with option repeat_threshold=100
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: a_string with option repeat_threshold=100
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: a_struct_with_union with option repeat_threshold=100
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: a_symbol_pointer with option repeat_threshold=100
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: an_array with option repeat_threshold=100
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: an_array_with_repetition with option repeat_threshold=100
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: an_enum with option repeat_threshold=100
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=100: another_point with option repeat_threshold=100
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: a_base_ref with option repeat_threshold=10
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: a_big_string with option repeat_threshold=10
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: a_binary_string with option repeat_threshold=10
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: a_binary_string_array with option repeat_threshold=10
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: a_point_t with option repeat_threshold=10
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: a_point_t_pointer with option repeat_threshold=10
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: a_point_t_ref with option repeat_threshold=10
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: a_string with option repeat_threshold=10
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: a_struct_with_union with option repeat_threshold=10
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: a_symbol_pointer with option repeat_threshold=10
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: an_array with option repeat_threshold=10
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: an_array_with_repetition with option repeat_threshold=10
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: an_enum with option repeat_threshold=10
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=10: another_point with option repeat_threshold=10
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: a_base_ref with option repeat_threshold=1
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: a_big_string with option repeat_threshold=1
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: a_binary_string with option repeat_threshold=1
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: a_binary_string_array with option repeat_threshold=1
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: a_point_t with option repeat_threshold=1
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: a_point_t_pointer with option repeat_threshold=1
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: a_point_t_ref with option repeat_threshold=1
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: a_string with option repeat_threshold=1
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: a_struct_with_union with option repeat_threshold=1
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: a_symbol_pointer with option repeat_threshold=1
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: an_array with option repeat_threshold=1
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: an_array_with_repetition with option repeat_threshold=1
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: an_enum with option repeat_threshold=1
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=1: another_point with option repeat_threshold=1
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: a_base_ref with option repeat_threshold=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: a_big_string with option repeat_threshold=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: a_binary_string with option repeat_threshold=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: a_binary_string_array with option repeat_threshold=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: a_point_t with option repeat_threshold=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: a_point_t_pointer with option repeat_threshold=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: a_point_t_ref with option repeat_threshold=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: a_string with option repeat_threshold=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: a_struct_with_union with option repeat_threshold=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: a_symbol_pointer with option repeat_threshold=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: an_array with option repeat_threshold=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: an_array_with_repetition with option repeat_threshold=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: an_enum with option repeat_threshold=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: repeat_threshold=3: another_point with option repeat_threshold=3
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array on: an_array with option pretty_arrays: pretty_arrays=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array on: an_array with option pretty_arrays: pretty_arrays=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array on: an_array: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array on: an_array: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array on: an_array_with_repetition with option pretty_arrays: pretty_arrays=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array on: an_array_with_repetition with option pretty_arrays: pretty_arrays=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array on: an_array_with_repetition: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array on: an_array_with_repetition: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array on: set print array off
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array on: set print array on
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array-indexes on: an_array with option array_indexes: array_indexes=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array-indexes on: an_array with option array_indexes: array_indexes=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array-indexes on: an_array: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array-indexes on: an_array: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array-indexes on: an_array_with_repetition with option array_indexes: array_indexes=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array-indexes on: an_array_with_repetition with option array_indexes: array_indexes=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array-indexes on: an_array_with_repetition: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array-indexes on: an_array_with_repetition: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array-indexes on: set print array-indexes off
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array-indexes on: set print array-indexes on
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print elements 4: a_binary_string with option
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print elements 4: a_binary_string_array with option
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print elements 4: a_string with option
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print elements 4: an_array_with_repetition with option
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print elements 4: set print elements 200
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print elements 4: set print elements 4
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print object on: a_base_ref with option actual_objects: actual_objects=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print object on: a_base_ref with option actual_objects: actual_objects=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print object on: a_base_ref: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print object on: a_base_ref: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print object on: a_point_t_ref with option actual_objects: actual_objects=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print object on: a_point_t_ref with option actual_objects: actual_objects=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print object on: a_point_t_ref: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print object on: a_point_t_ref: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print object on: set print object off
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print object on: set print object on
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print repeats 1: an_array_with_repetition with option
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print repeats 1: set print repeats 1
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print repeats 1: set print repeats 10
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print static-members off: a_base_ref with option static_members: static_members=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print static-members off: a_base_ref with option static_members: static_members=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print static-members off: a_base_ref: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print static-members off: a_base_ref: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print static-members off: a_point_t_ref with option static_members: static_members=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print static-members off: a_point_t_ref with option static_members: static_members=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print static-members off: a_point_t_ref: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print static-members off: a_point_t_ref: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print static-members off: set print static-members off
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print static-members off: set print static-members on
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print structs on: a_struct_with_union with option pretty_structs: pretty_structs=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print structs on: a_struct_with_union with option pretty_structs: pretty_structs=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print structs on: a_struct_with_union: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print structs on: a_struct_with_union: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print structs on: set print structs off
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print structs on: set print structs on
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print symbol off: a_symbol_pointer with option symbols: symbols=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print symbol off: a_symbol_pointer with option symbols: symbols=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print symbol off: a_symbol_pointer: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print symbol off: a_symbol_pointer: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print symbol off: set print symbol off
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print symbol off: set print symbol on
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print union off: a_struct_with_union with option unions: unions=false
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print union off: a_struct_with_union with option unions: unions=true
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print union off: a_struct_with_union: no opts
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print union off: a_struct_with_union: str
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print union off: set print union off
PASS -> UNRESOLVED: gdb.python/py-format-string.exp: format_string: lang_cpp: set print union off: set print union on
new FAIL: gdb.python/py-frame-inline.exp: can't run to function f
new FAIL: gdb.python/py-frame.exp: can't run to main
new UNRESOLVED: gdb.python/py-framefilter-mi.exp:
PASS -> UNRESOLVED: gdb.python/py-framefilter-mi.exp: breakpoint at main
PASS -> UNRESOLVED: gdb.python/py-framefilter-mi.exp: enable frame filters
PASS -> UNRESOLVED: gdb.python/py-framefilter-mi.exp: filtered stack list 0 3
PASS -> UNRESOLVED: gdb.python/py-framefilter-mi.exp: filtered stack list 22 24
PASS -> UNRESOLVED: gdb.python/py-framefilter-mi.exp: filtered stack listing
PASS -> UNRESOLVED: gdb.python/py-framefilter-mi.exp: load python file
PASS -> UNRESOLVED: gdb.python/py-framefilter-mi.exp: run to 46
PASS -> UNRESOLVED: gdb.python/py-framefilter-mi.exp: run to 51
PASS -> UNRESOLVED: gdb.python/py-framefilter-mi.exp: stack-list-arguments --no-frame-filters 0
PASS -> UNRESOLVED: gdb.python/py-framefilter-mi.exp: stack-list-arguments --no-frame-filters 1
PASS -> UNRESOLVED: gdb.python/py-framefilter-mi.exp: stack-list-arguments --no-frame-filters 2
PASS -> UNRESOLVED: gdb.python/py-framefilter-mi.exp: stack-list-arguments --no-frame-filters 2 22 27
PASS -> UNRESOLVED: gdb.python/py-framefilter-mi.exp: stack-list-arguments 0
PASS -> UNRESOLVED: gdb.python/py-framefilter-mi.exp: stack-list-arguments 0 0 3
PASS -> UNRESOLVED: gdb.python/py-framefilter-mi.exp: stack-list-arguments 0 22 27
PASS -> UNRESOLVED: gdb.python/py-framefilter-mi.exp: stack-list-arguments 1
PASS -> UNRESOLVED: gdb.python/py-framefilter-mi.exp: stack-list-arguments 1 0 3
PASS -> UNRESOLVED: gdb.python/py-framefilter-mi.exp: stack-list-arguments 1 22 27
PASS -> UNRESOLVED: gdb.python/py-framefilter-mi.exp: stack-list-arguments 2
PASS -> UNRESOLVED: gdb.python/py-framefilter-mi.exp: stack-list-arguments 2 0 3
PASS -> UNRESOLVED: gdb.python/py-framefilter-mi.exp: stack-list-arguments 2 22 27
PASS -> UNRESOLVED: gdb.python/py-framefilter-mi.exp: stack-list-locals --all-values
PASS -> UNRESOLVED: gdb.python/py-framefilter-mi.exp: stack-list-locals --all-values frame filters enabled
PASS -> UNRESOLVED: gdb.python/py-framefilter-mi.exp: stack-list-locals --no-frame-filters --all-values
PASS -> UNRESOLVED: gdb.python/py-framefilter-mi.exp: stack-list-locals --no-frame-filters --no-values
PASS -> UNRESOLVED: gdb.python/py-framefilter-mi.exp: stack-list-locals --no-frame-filters --simple-values
PASS -> UNRESOLVED: gdb.python/py-framefilter-mi.exp: stack-list-locals --no-frame-filters 0
PASS -> UNRESOLVED: gdb.python/py-framefilter-mi.exp: stack-list-locals --no-frame-filters 1
PASS -> UNRESOLVED: gdb.python/py-framefilter-mi.exp: stack-list-locals --no-frame-filters 2
PASS -> UNRESOLVED: gdb.python/py-framefilter-mi.exp: stack-list-locals 0
PASS -> UNRESOLVED: gdb.python/py-framefilter-mi.exp: stack-list-locals 1
PASS -> UNRESOLVED: gdb.python/py-framefilter-mi.exp: stack-list-locals 2
PASS -> UNRESOLVED: gdb.python/py-framefilter-mi.exp: stack-list-variables --no-frame-filters 0
PASS -> UNRESOLVED: gdb.python/py-framefilter-mi.exp: stack-list-variables 0
new UNRESOLVED: gdb.python/py-framefilter-mi.exp: wait for stop
new FAIL: gdb.python/py-inferior.exp: can't run to main
new FAIL: gdb.python/py-infthread.exp: can't run to main
new UNRESOLVED: gdb.python/py-mi-events.exp:
PASS -> UNRESOLVED: gdb.python/py-mi-events.exp: breakpoint at main
PASS -> UNRESOLVED: gdb.python/py-mi-events.exp: continue
PASS -> UNRESOLVED: gdb.python/py-mi-events.exp: python continue handler ran
PASS -> UNRESOLVED: gdb.python/py-mi-events.exp: python stop handler ran
PASS -> UNRESOLVED: gdb.python/py-mi-events.exp: register events
PASS -> UNRESOLVED: gdb.python/py-mi-events.exp: set the breakpoint
PASS -> UNRESOLVED: gdb.python/py-mi-objfile.exp: file-exec-and-symbols operation
new UNRESOLVED: gdb.python/py-mi-var-info-path-expression.exp:
PASS -> UNRESOLVED: gdb.python/py-mi-var-info-path-expression.exp: -var-create c1 * &c1
PASS -> UNRESOLVED: gdb.python/py-mi-var-info-path-expression.exp: -var-info-path-expression c1
PASS -> UNRESOLVED: gdb.python/py-mi-var-info-path-expression.exp: -var-info-path-expression c1.car.atom.ival
PASS -> UNRESOLVED: gdb.python/py-mi-var-info-path-expression.exp: -var-info-path-expression c1.cdr
PASS -> UNRESOLVED: gdb.python/py-mi-var-info-path-expression.exp: -var-info-path-expression c1.cdr.cdr
PASS -> UNRESOLVED: gdb.python/py-mi-var-info-path-expression.exp: -var-list-children c1
PASS -> UNRESOLVED: gdb.python/py-mi-var-info-path-expression.exp: -var-list-children c1.car
PASS -> UNRESOLVED: gdb.python/py-mi-var-info-path-expression.exp: -var-list-children c1.car.atom
PASS -> UNRESOLVED: gdb.python/py-mi-var-info-path-expression.exp: -var-list-children c1.cdr
PASS -> UNRESOLVED: gdb.python/py-mi-var-info-path-expression.exp: breakpoint at main
PASS -> UNRESOLVED: gdb.python/py-mi-var-info-path-expression.exp: run to 61
new UNRESOLVED: gdb.python/py-mi-var-info-path-expression.exp: wait for stop
new UNRESOLVED: gdb.python/py-mi.exp:
PASS -> UNRESOLVED: gdb.python/py-mi.exp: Install visualizer on a cplus_fake_child
PASS -> UNRESOLVED: gdb.python/py-mi.exp: assign string_1 from string_2
PASS -> UNRESOLVED: gdb.python/py-mi.exp: breakpoint at main
PASS -> UNRESOLVED: gdb.python/py-mi.exp: check tsrvw expression value
PASS -> UNRESOLVED: gdb.python/py-mi.exp: check tsrvw varobj value
PASS -> UNRESOLVED: gdb.python/py-mi.exp: choose array visualizer for c
PASS -> UNRESOLVED: gdb.python/py-mi.exp: choose default visualizer
PASS -> UNRESOLVED: gdb.python/py-mi.exp: choose visualizer using expression
PASS -> UNRESOLVED: gdb.python/py-mi.exp: clear visualizer
PASS -> UNRESOLVED: gdb.python/py-mi.exp: create container varobj
PASS -> UNRESOLVED: gdb.python/py-mi.exp: create container varobj, no pretty-printing
PASS -> UNRESOLVED: gdb.python/py-mi.exp: create estring varobj
PASS -> UNRESOLVED: gdb.python/py-mi.exp: create fake varobj
PASS -> UNRESOLVED: gdb.python/py-mi.exp: create me varobj
PASS -> UNRESOLVED: gdb.python/py-mi.exp: create nscont varobj, no pretty-printing
PASS -> UNRESOLVED: gdb.python/py-mi.exp: create nstype varobj
PASS -> UNRESOLVED: gdb.python/py-mi.exp: create nstype2 varobj
PASS -> UNRESOLVED: gdb.python/py-mi.exp: create outer varobj
PASS -> UNRESOLVED: gdb.python/py-mi.exp: create second container varobj
PASS -> UNRESOLVED: gdb.python/py-mi.exp: create string_1 varobj
PASS -> UNRESOLVED: gdb.python/py-mi.exp: create tsrvw varobj
PASS -> UNRESOLVED: gdb.python/py-mi.exp: create varobj for c
PASS -> UNRESOLVED: gdb.python/py-mi.exp: delete varobj
PASS -> UNRESOLVED: gdb.python/py-mi.exp: evaluate me varobj
PASS -> UNRESOLVED: gdb.python/py-mi.exp: examine container children=0
PASS -> UNRESOLVED: gdb.python/py-mi.exp: examine container children=0, no pretty-printing
PASS -> UNRESOLVED: gdb.python/py-mi.exp: examine nscont children=0, no pretty-printing
PASS -> UNRESOLVED: gdb.python/py-mi.exp: list children after listing selected range
PASS -> UNRESOLVED: gdb.python/py-mi.exp: list children after setting exception flag
PASS -> UNRESOLVED: gdb.python/py-mi.exp: list children after setting update range
PASS -> UNRESOLVED: gdb.python/py-mi.exp: list children fake.private
PASS -> UNRESOLVED: gdb.python/py-mi.exp: list children of c
PASS -> UNRESOLVED: gdb.python/py-mi.exp: list children of fake
PASS -> UNRESOLVED: gdb.python/py-mi.exp: list children of outer
PASS -> UNRESOLVED: gdb.python/py-mi.exp: list children of outer.s
PASS -> UNRESOLVED: gdb.python/py-mi.exp: list selected children after setting range
PASS -> UNRESOLVED: gdb.python/py-mi.exp: list varobj children after resetting child range
PASS -> UNRESOLVED: gdb.python/py-mi.exp: list varobj children after selecting child range
PASS -> UNRESOLVED: gdb.python/py-mi.exp: next over change of array element
PASS -> UNRESOLVED: gdb.python/py-mi.exp: next over outer update
PASS -> UNRESOLVED: gdb.python/py-mi.exp: next over update 1
PASS -> UNRESOLVED: gdb.python/py-mi.exp: next over update 2
PASS -> UNRESOLVED: gdb.python/py-mi.exp: next over update 3
PASS -> UNRESOLVED: gdb.python/py-mi.exp: next over update 4
PASS -> UNRESOLVED: gdb.python/py-mi.exp: next over update 5
PASS -> UNRESOLVED: gdb.python/py-mi.exp: next over update 6
PASS -> UNRESOLVED: gdb.python/py-mi.exp: printer whose children are returned as a list
PASS -> UNRESOLVED: gdb.python/py-mi.exp: run to 143
PASS -> UNRESOLVED: gdb.python/py-mi.exp: run to 236
PASS -> UNRESOLVED: gdb.python/py-mi.exp: run to 268
PASS -> UNRESOLVED: gdb.python/py-mi.exp: run to 359
PASS -> UNRESOLVED: gdb.python/py-mi.exp: run to 382
PASS -> UNRESOLVED: gdb.python/py-mi.exp: set update range
PASS -> UNRESOLVED: gdb.python/py-mi.exp: set update range with non-zero start
PASS -> UNRESOLVED: gdb.python/py-mi.exp: update after next with restricted range
PASS -> UNRESOLVED: gdb.python/py-mi.exp: update after type change
PASS -> UNRESOLVED: gdb.python/py-mi.exp: update after updating element of outer
PASS -> UNRESOLVED: gdb.python/py-mi.exp: update string varobj after assignment
PASS -> UNRESOLVED: gdb.python/py-mi.exp: update varobj 2, no children requested
PASS -> UNRESOLVED: gdb.python/py-mi.exp: update varobj after element change
PASS -> UNRESOLVED: gdb.python/py-mi.exp: update varobj with change outside selected range
PASS -> UNRESOLVED: gdb.python/py-mi.exp: update varobj, no children requested
PASS -> UNRESOLVED: gdb.python/py-mi.exp: varobj update 1
PASS -> UNRESOLVED: gdb.python/py-mi.exp: varobj update 2
PASS -> UNRESOLVED: gdb.python/py-mi.exp: varobj update after choosing default
PASS -> UNRESOLVED: gdb.python/py-mi.exp: varobj update after choosing via expression
PASS -> UNRESOLVED: gdb.python/py-mi.exp: varobj update after clearing
new UNRESOLVED: gdb.python/py-mi.exp: wait for stop
new FAIL: gdb.python/py-objfile.exp: can't run to main
new FAIL: gdb.python/py-pp-maint.exp: can't run to main
new FAIL: gdb.python/py-pp-registration.exp: can't run to main
new FAIL: gdb.python/py-progspace.exp: can't run to main
new FAIL: gdb.python/py-rbreak.exp: can't run to main
new FAIL: gdb.python/py-record-full.exp: can't run to main
new FAIL: gdb.python/py-recurse-unwind.exp: can't run to main
new FAIL: gdb.python/py-shared.exp: can't run to main
new UNRESOLVED: gdb.python/py-symbol.exp: can't run to main
new UNRESOLVED: gdb.python/py-symbol.exp: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.python/py-symbol.exp: lookup_global_symbol for static var
PASS -> UNRESOLVED: gdb.python/py-symbol.exp: lookup_static_symbol for global var
PASS -> UNRESOLVED: gdb.python/py-symbol.exp: lookup_static_symbol for nonexistent var
PASS -> UNRESOLVED: gdb.python/py-symbol.exp: print line number of qq
PASS -> UNRESOLVED: gdb.python/py-symbol.exp: print line number of rr
PASS -> UNRESOLVED: gdb.python/py-symbol.exp: print value of main
PASS -> UNRESOLVED: gdb.python/py-symbol.exp: print value of qq
PASS -> UNRESOLVED: gdb.python/py-symbol.exp: print value of rr
PASS -> UNRESOLVED: gdb.python/py-symbol.exp: print whether qq needs a frame
PASS -> UNRESOLVED: gdb.python/py-symbol.exp: print whether rr needs a frame
new FAIL: gdb.python/py-symtab.exp: can't run to main
new UNRESOLVED: gdb.python/py-template.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.python/py-thrhandle.exp: Get inferior
new UNRESOLVED: gdb.python/py-thrhandle.exp: Get pthread_t type
PASS -> UNRESOLVED: gdb.python/py-thrhandle.exp: Pass overly large object to thread_from_handle
PASS -> UNRESOLVED: gdb.python/py-thrhandle.exp: Pass too small of an object to thread_from_handle
PASS -> UNRESOLVED: gdb.python/py-thrhandle.exp: TypeError when passing a symbol object to thread_from_handle
PASS -> UNRESOLVED: gdb.python/py-thrhandle.exp: breakpoint on after_mc_barrier
PASS -> UNRESOLVED: gdb.python/py-thrhandle.exp: breakpoint on do_something
PASS -> UNRESOLVED: gdb.python/py-thrhandle.exp: delete after_mc_barrier breakpoint
PASS -> UNRESOLVED: gdb.python/py-thrhandle.exp: info threads
PASS -> UNRESOLVED: gdb.python/py-thrhandle.exp: print thread for bogus handle thrs[3]
PASS -> UNRESOLVED: gdb.python/py-thrhandle.exp: print thread for bogus handle thrs[4]
PASS -> UNRESOLVED: gdb.python/py-thrhandle.exp: print thread id for thrs[0]
PASS -> UNRESOLVED: gdb.python/py-thrhandle.exp: print thread id for thrs[1]
PASS -> UNRESOLVED: gdb.python/py-thrhandle.exp: print thread id for thrs[2]
PASS -> UNRESOLVED: gdb.python/py-thrhandle.exp: run to after_mc_barrier
PASS -> UNRESOLVED: gdb.python/py-thrhandle.exp: run to do_something
PASS -> UNRESOLVED: gdb.python/py-thrhandle.exp: thread 0: fetch thread handle from inferior
PASS -> UNRESOLVED: gdb.python/py-thrhandle.exp: thread 0: fetch thread handle from thread
PASS -> UNRESOLVED: gdb.python/py-thrhandle.exp: thread 0: verify that handles are the same
PASS -> UNRESOLVED: gdb.python/py-thrhandle.exp: thread 1: fetch thread handle from inferior
PASS -> UNRESOLVED: gdb.python/py-thrhandle.exp: thread 1: fetch thread handle from thread
PASS -> UNRESOLVED: gdb.python/py-thrhandle.exp: thread 1: verify that handles are the same
PASS -> UNRESOLVED: gdb.python/py-thrhandle.exp: thread 2: fetch thread handle from inferior
PASS -> UNRESOLVED: gdb.python/py-thrhandle.exp: thread 2: fetch thread handle from thread
PASS -> UNRESOLVED: gdb.python/py-thrhandle.exp: thread 2: verify that handles are the same
new UNRESOLVED: gdb.python/py-type.exp: check if python 3
PASS -> UNRESOLVED: gdb.python/py-type.exp: get integer valueof "sizeof
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: continue to breakpoint: break to inspect struct and array.
new UNRESOLVED: gdb.python/py-type.exp: lang_c: setting breakpoint at 117
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_enum: Check enum fields items list
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_enum: Check num fields iteration over values
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_enum: check enum field lookup by name
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_enum: check enum field[0] name
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_enum: check enum field[1]name
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_enum: check the number of enum fields
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_enum: check the number of type fields
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_enum: extract type fields from e
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_enum: get value
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_enum: print value
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_fields: Check fields items list
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_fields: Check fields iteration over values
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_fields: Check ss_fields[0].name
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_fields: Check ss_fields[1].name
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_fields: Check that dir includes name
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_fields: c typedef field list
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_fields: cast to array with one argument
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_fields: cast to array with two arguments
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_fields: cast to vector with one argument
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_fields: cast to vector with two arguments
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_fields: check array field type
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_fields: check conversion to bool
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_fields: check field name exists test
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_fields: check field name nonexists test
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_fields: check fields lookup by name
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_fields: check length of ss_fields
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_fields: check number of fields
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_fields: check structure field a name
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_fields: check structure field b name
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_fields: check the number of fields
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_fields: check type.objfile
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_fields: get fields from ss.type
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_fields: get fields from st.type
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_fields: get value
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_fields: init ss
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_fields: print value
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_fields: python fields = ar.type.fields
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_fields: python print
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_fields: set vec1
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_fields: set vec2
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_c: test_fields: set vec3
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: continue to breakpoint: break to inspect struct and array.
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: get type of temvar
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: python print
new UNRESOLVED: gdb.python/py-type.exp: lang_cpp: setting breakpoint at 117
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_base_class: check base class
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_base_class: check the number of fields
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_base_class: extract type fields from d
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_base_class: get value
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_base_class: print value
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_enum: Check enum fields items list
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_enum: Check num fields iteration over values
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_enum: check enum field lookup by name
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_enum: check enum field[0] name
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_enum: check enum field[1]name
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_enum: check the number of enum fields
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_enum: check the number of type fields
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_enum: extract type fields from e
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_enum: get value
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_enum: print value
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_fields: Check fields items list
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_fields: Check fields iteration over values
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_fields: Check ss_fields[0].name
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_fields: Check ss_fields[1].name
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_fields: Check that dir includes name
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_fields: c++ typedef field list
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_fields: cast to array with one argument
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_fields: cast to array with two arguments
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_fields: cast to vector with one argument
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_fields: cast to vector with two arguments
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_fields: check array field type
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_fields: check class field c name
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_fields: check class field d name
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_fields: check conversion to bool
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_fields: check field name exists test
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_fields: check field name nonexists test
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_fields: check fields lookup by name
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_fields: check length of ss_fields
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_fields: check number of fields
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_fields: check structure field a name
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_fields: check structure field b name
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_fields: check the number of fields
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_fields: check type.objfile
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_fields: get fields from c.type
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_fields: get fields from ss.type
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_fields: get fields from st.type
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_fields: get value
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_fields: init ss
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_fields: print value
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_fields: python fields = ar.type.fields
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_fields: python print
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_fields: set vec1
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_fields: set vec2
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_fields: set vec3
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_range: on ranged type: check range high bound
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_range: on ranged type: check range low bound
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_range: on ranged type: get fields
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_range: on ranged type: get value
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_range: on ranged type: print value
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_range: on ranged value: check correct tuple length
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_range: on ranged value: check range high bound
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_range: on ranged value: check range low bound
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_range: on ranged value: get value
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_range: on ranged value: print value
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_range: on unranged value: check range for non ranged type.
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_range: on unranged value: get value
PASS -> UNRESOLVED: gdb.python/py-type.exp: lang_cpp: test_range: on unranged value: print value
PASS -> UNRESOLVED: gdb.python/py-type.exp: python print
new UNRESOLVED: gdb.python/py-type.exp: verify python support
new FAIL: gdb.python/py-unwind-maint.exp: can't run to main
PASS -> UNRESOLVED: gdb.python/py-value.exp: Simple Python value dictionary - python
PASS -> UNRESOLVED: gdb.python/py-value.exp: add pointer value with python integer
new UNRESOLVED: gdb.python/py-value.exp: can't run to main
PASS -> UNRESOLVED: gdb.python/py-value.exp: catch error in python type conversion
PASS -> UNRESOLVED: gdb.python/py-value.exp: catch throw of GDB error
PASS -> UNRESOLVED: gdb.python/py-value.exp: check evaluation of false boolean value in expression
PASS -> UNRESOLVED: gdb.python/py-value.exp: check evaluation of false float value in expression
PASS -> UNRESOLVED: gdb.python/py-value.exp: check evaluation of false integer value in expression
PASS -> UNRESOLVED: gdb.python/py-value.exp: check evaluation of true boolean value in expression
PASS -> UNRESOLVED: gdb.python/py-value.exp: check evaluation of true float value in expression
PASS -> UNRESOLVED: gdb.python/py-value.exp: check evaluation of true integer value in expression
PASS -> UNRESOLVED: gdb.python/py-value.exp: convert pointer to int
PASS -> UNRESOLVED: gdb.python/py-value.exp: convert pointer to long
PASS -> UNRESOLVED: gdb.python/py-value.exp: define function to test booleans - python
new UNRESOLVED: gdb.python/py-value.exp: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.python/py-value.exp: equality of gdb.Value with Python value
PASS -> UNRESOLVED: gdb.python/py-value.exp: equality of gdb.Values
PASS -> UNRESOLVED: gdb.python/py-value.exp: greater or equal, None
PASS -> UNRESOLVED: gdb.python/py-value.exp: greater or equal, equal
PASS -> UNRESOLVED: gdb.python/py-value.exp: greater or equal, greater
PASS -> UNRESOLVED: gdb.python/py-value.exp: greater or equal, less
PASS -> UNRESOLVED: gdb.python/py-value.exp: greater than, None
PASS -> UNRESOLVED: gdb.python/py-value.exp: greater than, equal
PASS -> UNRESOLVED: gdb.python/py-value.exp: greater than, greater
PASS -> UNRESOLVED: gdb.python/py-value.exp: greater than, less
PASS -> UNRESOLVED: gdb.python/py-value.exp: inequality of gdb.Value with None
PASS -> UNRESOLVED: gdb.python/py-value.exp: inequality of gdb.Value with Python value
PASS -> UNRESOLVED: gdb.python/py-value.exp: inequality of gdb.Values
PASS -> UNRESOLVED: gdb.python/py-value.exp: inequality, None
PASS -> UNRESOLVED: gdb.python/py-value.exp: inequality, false
PASS -> UNRESOLVED: gdb.python/py-value.exp: inequality, true
PASS -> UNRESOLVED: gdb.python/py-value.exp: int conversion respect type sign
PASS -> UNRESOLVED: gdb.python/py-value.exp: less or equal, None
PASS -> UNRESOLVED: gdb.python/py-value.exp: less or equal, equal
PASS -> UNRESOLVED: gdb.python/py-value.exp: less or equal, greater
PASS -> UNRESOLVED: gdb.python/py-value.exp: less or equal, less
PASS -> UNRESOLVED: gdb.python/py-value.exp: less than, None
PASS -> UNRESOLVED: gdb.python/py-value.exp: less than, equal
PASS -> UNRESOLVED: gdb.python/py-value.exp: less than, greater
PASS -> UNRESOLVED: gdb.python/py-value.exp: less than, less
PASS -> UNRESOLVED: gdb.python/py-value.exp: long conversion respect type sign
PASS -> UNRESOLVED: gdb.python/py-value.exp: parse_and_eval constant test
PASS -> UNRESOLVED: gdb.python/py-value.exp: parse_and_eval simple expression test
PASS -> UNRESOLVED: gdb.python/py-value.exp: parse_and_eval type test
new UNRESOLVED: gdb.python/py-value.exp: print
PASS -> UNRESOLVED: gdb.python/py-value.exp: py-value in file.filename
new UNRESOLVED: gdb.python/py-value.exp: python a = gdb.history
new UNRESOLVED: gdb.python/py-value.exp: python b = gdb.history
PASS -> UNRESOLVED: gdb.python/py-value.exp: python gdb.objfiles
PASS -> UNRESOLVED: gdb.python/py-value.exp: python print
PASS -> UNRESOLVED: gdb.python/py-value.exp: subtract python integer from pointer value
PASS -> UNRESOLVED: gdb.python/py-value.exp: subtract two pointer values
PASS -> UNRESOLVED: gdb.python/py-value.exp: test dictionary hash for one
PASS -> UNRESOLVED: gdb.python/py-value.exp: test dictionary hash for three
PASS -> UNRESOLVED: gdb.python/py-value.exp: test dictionary hash for two
PASS -> UNRESOLVED: gdb.python/py-value.exp: test inbuilt hash
PASS -> UNRESOLVED: gdb.python/py-value.exp: use value as array index
PASS -> UNRESOLVED: gdb.python/py-value.exp: use value as string index
PASS -> UNRESOLVED: gdb.python/py-value.exp: use value as tuple index
new FAIL: gdb.python/python.exp: can't run to main
PASS -> UNRESOLVED: gdb.reverse/break-precsave.exp: BP at end of main
PASS -> UNRESOLVED: gdb.reverse/break-precsave.exp: continue to breakpoint: bar backward
PASS -> UNRESOLVED: gdb.reverse/break-precsave.exp: continue to breakpoint: bar forward after restore
PASS -> UNRESOLVED: gdb.reverse/break-precsave.exp: continue to breakpoint: bar forward again
PASS -> UNRESOLVED: gdb.reverse/break-precsave.exp: continue to breakpoint: foo backward
PASS -> UNRESOLVED: gdb.reverse/break-precsave.exp: continue to breakpoint: foo forward after restore
PASS -> UNRESOLVED: gdb.reverse/break-precsave.exp: continue to breakpoint: foo forward again
PASS -> UNRESOLVED: gdb.reverse/break-precsave.exp: end of record log
PASS -> UNRESOLVED: gdb.reverse/break-precsave.exp: go to end of main forward
PASS -> UNRESOLVED: gdb.reverse/break-precsave.exp: kill process, prepare to debug log file
PASS -> UNRESOLVED: gdb.reverse/break-precsave.exp: main backward
PASS -> UNRESOLVED: gdb.reverse/break-precsave.exp: reload precord save file
PASS -> UNRESOLVED: gdb.reverse/break-precsave.exp: run to end of main
PASS -> UNRESOLVED: gdb.reverse/break-precsave.exp: save process recfile
PASS -> UNRESOLVED: gdb.reverse/break-precsave.exp: set breakpoint on bar
PASS -> UNRESOLVED: gdb.reverse/break-precsave.exp: set breakpoint on foo
PASS -> UNRESOLVED: gdb.reverse/break-precsave.exp: set forward
PASS -> UNRESOLVED: gdb.reverse/break-precsave.exp: set reverse
PASS -> UNRESOLVED: gdb.reverse/break-precsave.exp: turn on process record
PASS -> UNRESOLVED: gdb.reverse/break-reverse.exp: continue to breakpoint: bar backward
PASS -> UNRESOLVED: gdb.reverse/break-reverse.exp: continue to breakpoint: bar forward again
PASS -> UNRESOLVED: gdb.reverse/break-reverse.exp: continue to breakpoint: bar forward, the first time
PASS -> UNRESOLVED: gdb.reverse/break-reverse.exp: continue to breakpoint: end forward, the first time
PASS -> UNRESOLVED: gdb.reverse/break-reverse.exp: continue to breakpoint: foo backward
PASS -> UNRESOLVED: gdb.reverse/break-reverse.exp: continue to breakpoint: foo forward again
PASS -> UNRESOLVED: gdb.reverse/break-reverse.exp: continue to breakpoint: foo forward, the first time
PASS -> UNRESOLVED: gdb.reverse/break-reverse.exp: end of record log
PASS -> UNRESOLVED: gdb.reverse/break-reverse.exp: main backward
PASS -> UNRESOLVED: gdb.reverse/break-reverse.exp: set breakpoint at end of main
PASS -> UNRESOLVED: gdb.reverse/break-reverse.exp: set breakpoint on bar
PASS -> UNRESOLVED: gdb.reverse/break-reverse.exp: set breakpoint on foo
PASS -> UNRESOLVED: gdb.reverse/break-reverse.exp: set forward
PASS -> UNRESOLVED: gdb.reverse/break-reverse.exp: set reverse
PASS -> UNRESOLVED: gdb.reverse/break-reverse.exp: turn on process record
PASS -> UNRESOLVED: gdb.reverse/consecutive-precsave.exp: breakpoint at end of main
PASS -> UNRESOLVED: gdb.reverse/consecutive-precsave.exp: continue to breakpoint in foo
PASS -> UNRESOLVED: gdb.reverse/consecutive-precsave.exp: get breakpoint address for foo
PASS -> UNRESOLVED: gdb.reverse/consecutive-precsave.exp: kill process, prepare to debug log file
PASS -> UNRESOLVED: gdb.reverse/consecutive-precsave.exp: reload precord save file
PASS -> UNRESOLVED: gdb.reverse/consecutive-precsave.exp: run to end of main
PASS -> UNRESOLVED: gdb.reverse/consecutive-precsave.exp: save process recfile
PASS -> UNRESOLVED: gdb.reverse/consecutive-precsave.exp: set bp, 2nd instr
PASS -> UNRESOLVED: gdb.reverse/consecutive-precsave.exp: set reverse execution
new UNRESOLVED: gdb.reverse/consecutive-precsave.exp: setting breakpoint at foo
PASS -> UNRESOLVED: gdb.reverse/consecutive-precsave.exp: stopped at bp in reverse, 1st instr
PASS -> UNRESOLVED: gdb.reverse/consecutive-precsave.exp: stopped at bp, 2nd instr
PASS -> UNRESOLVED: gdb.reverse/consecutive-precsave.exp: turn on process record
PASS -> UNRESOLVED: gdb.reverse/consecutive-reverse.exp: continue to breakpoint in foo
PASS -> UNRESOLVED: gdb.reverse/consecutive-reverse.exp: get breakpoint address for foo
PASS -> UNRESOLVED: gdb.reverse/consecutive-reverse.exp: set bp, 2nd instr
PASS -> UNRESOLVED: gdb.reverse/consecutive-reverse.exp: set reverse execution
new UNRESOLVED: gdb.reverse/consecutive-reverse.exp: setting breakpoint at foo
PASS -> UNRESOLVED: gdb.reverse/consecutive-reverse.exp: stopped at bp in reverse, 1st instr
PASS -> UNRESOLVED: gdb.reverse/consecutive-reverse.exp: stopped at bp, 2nd instr
PASS -> UNRESOLVED: gdb.reverse/consecutive-reverse.exp: turn on process record
PASS -> UNRESOLVED: gdb.reverse/finish-precsave.exp: breakpoint at end of main
PASS -> UNRESOLVED: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func
PASS -> UNRESOLVED: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func backward
PASS -> UNRESOLVED: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func
PASS -> UNRESOLVED: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func backward
PASS -> UNRESOLVED: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func
PASS -> UNRESOLVED: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func backward
PASS -> UNRESOLVED: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_long_func
PASS -> UNRESOLVED: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_long_func backward
PASS -> UNRESOLVED: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func
PASS -> UNRESOLVED: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func backward
PASS -> UNRESOLVED: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func
PASS -> UNRESOLVED: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func backward
PASS -> UNRESOLVED: gdb.reverse/finish-precsave.exp: finish from char_func
PASS -> UNRESOLVED: gdb.reverse/finish-precsave.exp: finish from int_func
PASS -> UNRESOLVED: gdb.reverse/finish-precsave.exp: finish from long_func
PASS -> UNRESOLVED: gdb.reverse/finish-precsave.exp: finish from long_long_func
PASS -> UNRESOLVED: gdb.reverse/finish-precsave.exp: finish from short_func
PASS -> UNRESOLVED: gdb.reverse/finish-precsave.exp: finish from void_func
PASS -> UNRESOLVED: gdb.reverse/finish-precsave.exp: kill process, prepare to debug log file
PASS -> UNRESOLVED: gdb.reverse/finish-precsave.exp: reload precord save file
PASS -> UNRESOLVED: gdb.reverse/finish-precsave.exp: reverse finish from char_func
PASS -> UNRESOLVED: gdb.reverse/finish-precsave.exp: reverse finish from int_func
PASS -> UNRESOLVED: gdb.reverse/finish-precsave.exp: reverse finish from long_func
PASS -> UNRESOLVED: gdb.reverse/finish-precsave.exp: reverse finish from long_long_func
PASS -> UNRESOLVED: gdb.reverse/finish-precsave.exp: reverse finish from short_func
PASS -> UNRESOLVED: gdb.reverse/finish-precsave.exp: reverse finish from void_func
PASS -> UNRESOLVED: gdb.reverse/finish-precsave.exp: run to end of main
PASS -> UNRESOLVED: gdb.reverse/finish-precsave.exp: save process recfile
PASS -> UNRESOLVED: gdb.reverse/finish-precsave.exp: set breakpoint on char_func
PASS -> UNRESOLVED: gdb.reverse/finish-precsave.exp: set breakpoint on int_func
PASS -> UNRESOLVED: gdb.reverse/finish-precsave.exp: set breakpoint on long_func
PASS -> UNRESOLVED: gdb.reverse/finish-precsave.exp: set breakpoint on long_long_func
PASS -> UNRESOLVED: gdb.reverse/finish-precsave.exp: set breakpoint on short_func
PASS -> UNRESOLVED: gdb.reverse/finish-precsave.exp: set breakpoint on void_func
PASS -> UNRESOLVED: gdb.reverse/finish-precsave.exp: set reverse execution
PASS -> UNRESOLVED: gdb.reverse/finish-precsave.exp: turn on process record
new FAIL: gdb.reverse/finish-reverse-bkpt.exp: can't run to main
PASS -> UNRESOLVED: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func
PASS -> UNRESOLVED: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func backward
PASS -> UNRESOLVED: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func
PASS -> UNRESOLVED: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func backward
PASS -> UNRESOLVED: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func
PASS -> UNRESOLVED: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func backward
PASS -> UNRESOLVED: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_long_func
PASS -> UNRESOLVED: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_long_func backward
PASS -> UNRESOLVED: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func
PASS -> UNRESOLVED: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func backward
PASS -> UNRESOLVED: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func
PASS -> UNRESOLVED: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func backward
PASS -> UNRESOLVED: gdb.reverse/finish-reverse.exp: finish from char_func
PASS -> UNRESOLVED: gdb.reverse/finish-reverse.exp: finish from int_func
PASS -> UNRESOLVED: gdb.reverse/finish-reverse.exp: finish from long_func
PASS -> UNRESOLVED: gdb.reverse/finish-reverse.exp: finish from long_long_func
PASS -> UNRESOLVED: gdb.reverse/finish-reverse.exp: finish from short_func
PASS -> UNRESOLVED: gdb.reverse/finish-reverse.exp: finish from void_func
PASS -> UNRESOLVED: gdb.reverse/finish-reverse.exp: reverse finish from char_func
PASS -> UNRESOLVED: gdb.reverse/finish-reverse.exp: reverse finish from int_func
PASS -> UNRESOLVED: gdb.reverse/finish-reverse.exp: reverse finish from long_func
PASS -> UNRESOLVED: gdb.reverse/finish-reverse.exp: reverse finish from long_long_func
PASS -> UNRESOLVED: gdb.reverse/finish-reverse.exp: reverse finish from short_func
PASS -> UNRESOLVED: gdb.reverse/finish-reverse.exp: reverse finish from void_func
PASS -> UNRESOLVED: gdb.reverse/finish-reverse.exp: set breakpoint on char_func
PASS -> UNRESOLVED: gdb.reverse/finish-reverse.exp: set breakpoint on int_func
PASS -> UNRESOLVED: gdb.reverse/finish-reverse.exp: set breakpoint on long_func
PASS -> UNRESOLVED: gdb.reverse/finish-reverse.exp: set breakpoint on long_long_func
PASS -> UNRESOLVED: gdb.reverse/finish-reverse.exp: set breakpoint on short_func
PASS -> UNRESOLVED: gdb.reverse/finish-reverse.exp: set breakpoint on void_func
PASS -> UNRESOLVED: gdb.reverse/finish-reverse.exp: set reverse execution
PASS -> UNRESOLVED: gdb.reverse/finish-reverse.exp: turn on process record
PASS -> UNRESOLVED: gdb.reverse/fstatat-reverse.exp: turn on process record
PASS -> UNRESOLVED: gdb.reverse/getresuid-reverse.exp: check egid record
PASS -> UNRESOLVED: gdb.reverse/getresuid-reverse.exp: check euid record
PASS -> UNRESOLVED: gdb.reverse/getresuid-reverse.exp: check rgid record
PASS -> UNRESOLVED: gdb.reverse/getresuid-reverse.exp: check ruid record
PASS -> UNRESOLVED: gdb.reverse/getresuid-reverse.exp: check sgid record
PASS -> UNRESOLVED: gdb.reverse/getresuid-reverse.exp: check suid record
PASS -> UNRESOLVED: gdb.reverse/getresuid-reverse.exp: continue to breakpoint: marker2
PASS -> UNRESOLVED: gdb.reverse/getresuid-reverse.exp: reverse to marker1
PASS -> UNRESOLVED: gdb.reverse/getresuid-reverse.exp: set breakpoint at marker1
PASS -> UNRESOLVED: gdb.reverse/getresuid-reverse.exp: set breakpoint at marker2
PASS -> UNRESOLVED: gdb.reverse/getresuid-reverse.exp: turn on process record
new FAIL: gdb.reverse/insn-reverse.exp: run to main
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: auto var forward
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: auto var forward step-to
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: auto var forward-breakpoint
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: auto var reverse-breakpoint
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: auto var reverse-step
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: auto var step post-change
new UNRESOLVED: gdb.reverse/machinestate-precsave.exp: break 100
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: breakpoint at end of main
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: forward to 33
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: forward to 45
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: forward to 57
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: forward to 71
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: forward to 85
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: function static forward
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: function static forward step-to
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: function static forward-breakpoint
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: function static reverse-breakpoint
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: function static reverse-step
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: function static step post-change
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: go to end of main forward
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: kill process, prepare to debug log file
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: module global forward past bp
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: module global forward step-to
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: module global forward-breakpoint
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: module global reverse-breakpoint
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: module global reverse-step to bp
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: module global step post-change
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: module static forward
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: module static forward step-to
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: module static forward-breakpoint
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: module static reverse-breakpoint
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: module static reverse-step
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: module static step post-change
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: register var forward step-to
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: register var forward-breakpoint
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: register var reverse step-to
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: register var reverse-breakpoint
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: register var step post-change, first time
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: register var step post-change, second time
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: reload prec save file
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: reverse to 33
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: reverse to 45
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: reverse to 57
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: reverse to 71
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: reverse to 85
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: reverse to main
new UNRESOLVED: gdb.reverse/machinestate-precsave.exp: reverse-step
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: run to end of main
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: save process recfile
new UNRESOLVED: gdb.reverse/machinestate-precsave.exp: step
new UNRESOLVED: gdb.reverse/machinestate-precsave.exp: tbreak 33
new UNRESOLVED: gdb.reverse/machinestate-precsave.exp: tbreak 45
new UNRESOLVED: gdb.reverse/machinestate-precsave.exp: tbreak 57
new UNRESOLVED: gdb.reverse/machinestate-precsave.exp: tbreak 71
new UNRESOLVED: gdb.reverse/machinestate-precsave.exp: tbreak 85
new UNRESOLVED: gdb.reverse/machinestate-precsave.exp: tbreak 94
PASS -> UNRESOLVED: gdb.reverse/machinestate-precsave.exp: turn on process record
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: auto var forward
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: auto var forward step-to
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: auto var forward-breakpoint
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: auto var reverse-breakpoint
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: auto var reverse-step
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: auto var step post-change
new UNRESOLVED: gdb.reverse/machinestate.exp: break 100
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: continue to breakpoint: end of main
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: forward to 33
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: forward to 45
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: forward to 57
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: forward to 71
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: forward to 85
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: function static forward
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: function static forward step-to
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: function static forward-breakpoint
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: function static reverse-breakpoint
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: function static reverse-step
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: function static step post-change
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: module global forward past bp
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: module global forward step-to
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: module global forward-breakpoint
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: module global reverse-breakpoint
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: module global reverse-step to bp
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: module global step post-change
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: module static forward
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: module static forward step-to
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: module static forward-breakpoint
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: module static reverse-breakpoint
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: module static reverse-step
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: module static step post-change
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: register var forward step-to
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: register var forward-breakpoint
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: register var reverse step-to, first time
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: register var reverse-breakpoint
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: register var step post-change
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: register var step post-change, second time
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: reverse to 33
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: reverse to 45
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: reverse to 57
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: reverse to 71
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: reverse to 85
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: reverse to main
new UNRESOLVED: gdb.reverse/machinestate.exp: reverse-step
new UNRESOLVED: gdb.reverse/machinestate.exp: step
new UNRESOLVED: gdb.reverse/machinestate.exp: tbreak 33
new UNRESOLVED: gdb.reverse/machinestate.exp: tbreak 45
new UNRESOLVED: gdb.reverse/machinestate.exp: tbreak 57
new UNRESOLVED: gdb.reverse/machinestate.exp: tbreak 71
new UNRESOLVED: gdb.reverse/machinestate.exp: tbreak 85
new UNRESOLVED: gdb.reverse/machinestate.exp: tbreak 94
PASS -> UNRESOLVED: gdb.reverse/machinestate.exp: turn on process record
new FAIL: gdb.reverse/next-reverse-bkpt-over-sr.exp: can't run to main
PASS -> UNRESOLVED: gdb.reverse/pipe-reverse.exp: check pipe record
PASS -> UNRESOLVED: gdb.reverse/pipe-reverse.exp: continue to breakpoint: marker2
PASS -> UNRESOLVED: gdb.reverse/pipe-reverse.exp: reverse to marker1
PASS -> UNRESOLVED: gdb.reverse/pipe-reverse.exp: set breakpoint at marker1
PASS -> UNRESOLVED: gdb.reverse/pipe-reverse.exp: set breakpoint at marker2
PASS -> UNRESOLVED: gdb.reverse/pipe-reverse.exp: turn on process record
PASS -> UNRESOLVED: gdb.reverse/readv-reverse.exp: check readv record for buf[0]
PASS -> UNRESOLVED: gdb.reverse/readv-reverse.exp: check readv record for buf[1]
PASS -> UNRESOLVED: gdb.reverse/readv-reverse.exp: check readv record for buf[2]
PASS -> UNRESOLVED: gdb.reverse/readv-reverse.exp: check readv record for buf[3]
PASS -> UNRESOLVED: gdb.reverse/readv-reverse.exp: continue to breakpoint: marker2
PASS -> UNRESOLVED: gdb.reverse/readv-reverse.exp: reverse to marker1
PASS -> UNRESOLVED: gdb.reverse/readv-reverse.exp: set breakpoint at marker1
PASS -> UNRESOLVED: gdb.reverse/readv-reverse.exp: set breakpoint at marker2
PASS -> UNRESOLVED: gdb.reverse/readv-reverse.exp: turn on process record
PASS -> UNRESOLVED: gdb.reverse/recvmsg-reverse.exp: check recvmsg record - rmsg.msg_controllen
PASS -> UNRESOLVED: gdb.reverse/recvmsg-reverse.exp: check recvmsg record - rmsg.msg_flags
PASS -> UNRESOLVED: gdb.reverse/recvmsg-reverse.exp: turn on process record
PASS -> UNRESOLVED: gdb.reverse/rerun-prec.exp: turn on process record
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_TERM
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_33
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_34
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_35
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_36
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_37
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_38
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_39
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_40
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_41
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_42
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_43
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_44
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_45
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_46
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_47
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_48
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_49
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_50
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_51
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_52
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_53
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_54
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_55
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_56
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_57
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_58
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_59
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_60
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_61
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_62
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_63
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_ABRT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_ALRM
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_BUS
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_CHLD
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_CONT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_DANGER
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_EMT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_FPE
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_GRANT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_HUP
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_ILL
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_IO
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_LOST
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_LWP
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_MSG
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_PHONE
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_PIPE
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_POLL
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_PRIO
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_PROF
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_PWR
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_QUIT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_RETRACT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_SAK
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_SEGV
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_SOUND
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_SYS
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_TERM
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_TSTP
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_TTIN
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_TTOU
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_URG
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_USR1
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_USR2
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_VTALRM
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_WAITING
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_WINCH
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_WIND
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_XCPU
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_XFSZ
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: breakpoint at end of main
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: continue to sigall exit
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal TERM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGTERM stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle all nostop noprint
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle all stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: kill process, prepare to debug log file
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reload precord save file
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_33
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_34
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_35
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_36
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_37
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_38
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_39
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_40
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_41
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_42
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_43
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_44
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_45
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_46
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_47
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_48
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_49
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_50
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_51
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_52
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_53
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_54
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_55
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_56
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_57
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_58
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_59
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_60
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_61
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_62
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_63
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_ABRT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_ALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_BUS
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_CHLD
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_CONT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_DANGER
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_EMT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_FPE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_GRANT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_HUP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_ILL
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_IO
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_LOST
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_LWP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_MSG
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_PHONE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_PIPE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_POLL
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_PRIO
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_PROF
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_PWR
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_QUIT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_RETRACT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_SAK
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_SEGV
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_SOUND
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_SYS
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_TERM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_TSTP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_TTIN
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_TTOU
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_URG
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_USR1
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_USR2
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_VTALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_WAITING
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_WINCH
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_WIND
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_XCPU
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_XFSZ
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 33
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 34
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 35
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 36
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 37
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 38
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 39
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 40
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 41
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 42
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 43
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 44
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 45
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 46
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 47
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 48
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 49
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 50
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 51
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 52
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 53
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 54
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 55
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 56
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 57
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 58
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 59
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 60
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 61
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 62
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 63
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of ABRT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of ALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of BUS
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of CHLD
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of CONT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of DANGER
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of EMT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of FPE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of GRANT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of HUP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of ILL
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of IO
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of LOST
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of LWP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of MSG
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of PHONE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of PIPE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of POLL
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of PRIO
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of PROF
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of PWR
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of QUIT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of RETRACT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of SAK
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of SEGV
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of SOUND
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of SYS
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of TERM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of TSTP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of TTIN
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of TTOU
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of URG
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of USR1
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of USR2
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of VTALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of WAITING
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of WINCH
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of WIND
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of XCPU
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of XFSZ
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: run to end of main
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: save process recfile
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal TERM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 33
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 34
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 35
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 36
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 37
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 38
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 39
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 40
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 41
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 42
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 43
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 44
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 45
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 46
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 47
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 48
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 49
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 50
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 51
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 52
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 53
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 54
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 55
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 56
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 57
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 58
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 59
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 60
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 61
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 62
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to 63
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to ALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to BUS
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to CHLD
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to CONT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to DANGER
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to EMT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to FPE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to GRANT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to HUP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to ILL
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to IO
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to LOST
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to LWP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to MSG
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to PHONE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to PIPE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to POLL
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to PRIO
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to PROF
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to PWR
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to QUIT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to RETRACT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to SAK
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to SEGV
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to SOUND
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to SYS
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to TERM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to TSTP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to TTIN
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to TTOU
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to URG
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to USR1
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to USR2
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to VTALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to WAITING
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to WINCH
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to WIND
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to XCPU
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: advance to XFSZ
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_33
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_34
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_35
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_36
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_37
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_38
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_39
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_40
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_41
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_42
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_43
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_44
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_45
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_46
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_47
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_48
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_49
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_50
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_51
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_52
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_53
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_54
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_55
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_56
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_57
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_58
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_59
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_60
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_61
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_62
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_63
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_ALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_BUS
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_CHLD
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_CONT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_DANGER
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_EMT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_FPE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_GRANT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_HUP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_ILL
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_IO
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_LOST
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_LWP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_MSG
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_PHONE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_PIPE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_POLL
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_PRIO
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_PROF
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_PWR
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_QUIT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_RETRACT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_SAK
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_SEGV
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_SOUND
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_SYS
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_TERM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_TSTP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_TTIN
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_TTOU
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_URG
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_USR1
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_USR2
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_VTALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_WAITING
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_WINCH
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_WIND
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_XCPU
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b gen_XFSZ
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_33
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_34
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_35
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_36
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_37
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_38
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_39
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_40
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_41
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_42
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_43
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_44
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_45
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_46
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_47
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_48
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_49
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_50
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_51
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_52
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_53
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_54
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_55
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_56
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_57
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_58
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_59
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_60
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_61
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_62
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_63
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_ABRT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_ALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_BUS
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_CHLD
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_CONT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_DANGER
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_EMT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_FPE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_GRANT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_HUP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_ILL
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_IO
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_LOST
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_LWP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_MSG
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_PHONE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_PIPE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_POLL
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_PRIO
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_PROF
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_PWR
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_QUIT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_RETRACT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_SAK
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_SEGV
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_SOUND
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_SYS
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_TSTP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_TTIN
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_TTOU
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_URG
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_USR1
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_USR2
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_VTALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_WAITING
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_WINCH
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_WIND
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_XCPU
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: b handle_XFSZ
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 33
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 34
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 35
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 36
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 37
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 38
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 39
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 40
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 41
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 42
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 43
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 44
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 45
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 46
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 47
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 48
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 49
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 50
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 51
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 52
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 53
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 54
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 55
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 56
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 57
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 58
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 59
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 60
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 61
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 62
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal 63
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal ABRT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal ALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal BUS
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal CHLD
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal CONT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal DANGER
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal EMT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal FPE
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal GRANT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal HUP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal ILL
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal IO
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal LOST
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal LWP
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal MSG
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal PHONE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal PIPE
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal POLL
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal PRIO
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal PROF
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal PWR
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal QUIT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal RETRACT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal SAK
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal SEGV
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal SOUND
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal SYS
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal TSTP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal TTIN
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal TTOU
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal URG
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal USR1
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal USR2
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal VTALRM
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal WAITING
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal WINCH
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal WIND
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal XCPU
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: get signal XFSZ
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIG33 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIG34 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIG35 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIG36 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIG37 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIG38 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIG39 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIG40 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIG41 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIG42 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIG43 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIG44 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIG45 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIG46 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIG47 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIG48 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIG49 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIG50 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIG51 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIG52 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIG53 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIG54 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIG55 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIG56 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIG57 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIG58 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIG59 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIG60 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIG61 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIG62 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIG63 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIGABRT stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIGALRM stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIGBUS stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIGCHLD stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIGCONT stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIGDANGER stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIGEMT stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIGFPE stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIGGRANT stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIGHUP stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIGILL stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIGIO stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIGLOST stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIGLWP stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIGMSG stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIGPHONE stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIGPIPE stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIGPOLL stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIGPRIO stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIGPROF stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIGPWR stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIGQUIT stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIGRETRACT stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIGSAK stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIGSEGV stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIGSOUND stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIGSYS stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIGTSTP stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIGTTIN stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIGTTOU stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIGURG stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIGUSR1 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIGUSR2 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIGVTALRM stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIGWAITING stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIGWINCH stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIGWIND stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIGXCPU stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: handle SIGXFSZ stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 33
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 34
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 35
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 36
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 37
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 38
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 39
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 40
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 41
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 42
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 43
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 44
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 45
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 46
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 47
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 48
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 49
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 50
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 51
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 52
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 53
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 54
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 55
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 56
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 57
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 58
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 59
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 60
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 61
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 62
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal 63
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal ABRT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal ALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal BUS
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal CHLD
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal CONT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal DANGER
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal EMT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal FPE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal GRANT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal HUP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal ILL
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal IO
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal LOST
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal LWP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal MSG
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal PHONE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal PIPE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal POLL
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal PRIO
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal PROF
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal PWR
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal QUIT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal RETRACT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal SAK
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal SEGV
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal SOUND
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal SYS
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal TSTP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal TTIN
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal TTOU
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal URG
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal USR1
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal USR2
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal VTALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal WAITING
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal WINCH
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal WIND
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal XCPU
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-1: send signal XFSZ
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 33
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 34
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 35
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 36
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 37
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 38
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 39
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 40
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 41
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 42
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 43
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 44
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 45
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 46
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 47
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 48
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 49
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 50
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 51
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 52
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 53
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 54
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 55
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 56
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 57
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 58
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 59
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 60
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 61
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 62
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to 63
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to ALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to BUS
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to CHLD
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to CONT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to DANGER
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to EMT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to FPE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to GRANT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to HUP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to ILL
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to IO
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to LOST
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to LWP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to MSG
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to PHONE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to PIPE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to POLL
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to PRIO
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to PROF
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to PWR
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to QUIT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to RETRACT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to SAK
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to SEGV
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to SOUND
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to SYS
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to TERM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to TSTP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to TTIN
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to TTOU
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to URG
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to USR1
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to USR2
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to VTALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to WAITING
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to WINCH
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to WIND
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to XCPU
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: advance to XFSZ
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_33
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_34
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_35
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_36
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_37
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_38
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_39
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_40
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_41
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_42
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_43
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_44
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_45
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_46
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_47
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_48
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_49
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_50
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_51
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_52
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_53
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_54
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_55
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_56
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_57
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_58
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_59
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_60
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_61
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_62
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_63
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_ALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_BUS
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_CHLD
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_CONT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_DANGER
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_EMT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_FPE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_GRANT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_HUP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_ILL
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_IO
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_LOST
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_LWP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_MSG
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_PHONE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_PIPE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_POLL
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_PRIO
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_PROF
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_PWR
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_QUIT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_RETRACT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_SAK
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_SEGV
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_SOUND
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_SYS
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_TERM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_TSTP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_TTIN
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_TTOU
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_URG
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_USR1
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_USR2
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_VTALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_WAITING
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_WINCH
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_WIND
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_XCPU
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b gen_XFSZ
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_33
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_34
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_35
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_36
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_37
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_38
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_39
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_40
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_41
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_42
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_43
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_44
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_45
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_46
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_47
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_48
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_49
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_50
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_51
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_52
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_53
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_54
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_55
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_56
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_57
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_58
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_59
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_60
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_61
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_62
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_63
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_ABRT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_ALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_BUS
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_CHLD
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_CONT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_DANGER
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_EMT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_FPE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_GRANT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_HUP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_ILL
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_IO
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_LOST
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_LWP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_MSG
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_PHONE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_PIPE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_POLL
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_PRIO
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_PROF
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_PWR
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_QUIT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_RETRACT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_SAK
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_SEGV
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_SOUND
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_SYS
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_TSTP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_TTIN
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_TTOU
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_URG
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_USR1
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_USR2
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_VTALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_WAITING
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_WINCH
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_WIND
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_XCPU
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: b handle_XFSZ
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 33
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 34
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 35
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 36
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 37
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 38
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 39
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 40
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 41
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 42
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 43
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 44
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 45
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 46
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 47
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 48
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 49
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 50
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 51
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 52
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 53
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 54
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 55
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 56
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 57
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 58
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 59
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 60
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 61
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 62
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal 63
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal ABRT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal ALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal BUS
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal CHLD
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal CONT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal DANGER
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal EMT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal FPE
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal GRANT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal HUP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal ILL
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal IO
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal LOST
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal LWP
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal MSG
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal PHONE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal PIPE
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal POLL
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal PRIO
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal PROF
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal PWR
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal QUIT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal RETRACT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal SAK
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal SEGV
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal SOUND
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal SYS
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal TSTP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal TTIN
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal TTOU
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal URG
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal USR1
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal USR2
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal VTALRM
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal WAITING
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal WINCH
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal WIND
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal XCPU
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: get signal XFSZ
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIG33 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIG34 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIG35 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIG36 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIG37 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIG38 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIG39 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIG40 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIG41 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIG42 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIG43 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIG44 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIG45 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIG46 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIG47 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIG48 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIG49 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIG50 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIG51 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIG52 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIG53 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIG54 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIG55 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIG56 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIG57 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIG58 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIG59 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIG60 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIG61 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIG62 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIG63 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIGABRT stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIGALRM stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIGBUS stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIGCHLD stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIGCONT stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIGDANGER stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIGEMT stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIGFPE stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIGGRANT stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIGHUP stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIGILL stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIGIO stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIGLOST stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIGLWP stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIGMSG stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIGPHONE stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIGPIPE stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIGPOLL stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIGPRIO stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIGPROF stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIGPWR stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIGQUIT stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIGRETRACT stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIGSAK stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIGSEGV stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIGSOUND stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIGSYS stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIGTSTP stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIGTTIN stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIGTTOU stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIGURG stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIGUSR1 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIGUSR2 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIGVTALRM stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIGWAITING stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIGWINCH stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIGWIND stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIGXCPU stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: handle SIGXFSZ stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 33
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 34
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 35
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 36
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 37
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 38
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 39
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 40
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 41
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 42
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 43
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 44
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 45
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 46
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 47
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 48
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 49
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 50
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 51
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 52
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 53
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 54
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 55
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 56
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 57
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 58
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 59
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 60
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 61
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 62
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal 63
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal ABRT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal ALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal BUS
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal CHLD
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal CONT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal DANGER
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal EMT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal FPE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal GRANT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal HUP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal ILL
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal IO
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal LOST
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal LWP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal MSG
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal PHONE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal PIPE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal POLL
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal PRIO
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal PROF
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal PWR
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal QUIT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal RETRACT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal SAK
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal SEGV
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal SOUND
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal SYS
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal TSTP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal TTIN
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal TTOU
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal URG
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal USR1
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal USR2
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal VTALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal WAITING
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal WINCH
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal WIND
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal XCPU
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: sig-test-2: send signal XFSZ
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: turn on process record
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: b handle_TERM
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: continue to signal exit
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: get signal TERM
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: handle SIGTERM stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_33
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_34
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_35
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_36
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_37
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_38
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_39
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_40
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_41
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_42
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_43
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_44
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_45
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_46
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_47
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_48
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_49
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_50
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_51
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_52
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_53
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_54
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_55
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_56
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_57
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_58
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_59
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_60
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_61
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_62
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_63
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_ABRT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_ALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_BUS
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_CHLD
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_CONT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_DANGER
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_EMT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_FPE
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_GRANT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_HUP
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_ILL
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_IO
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_LOST
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_LWP
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_MSG
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_PHONE
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_PIPE
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_POLL
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_PRIO
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_PROF
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_PWR
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_QUIT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_RETRACT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_SAK
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_SEGV
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_SOUND
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_SYS
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_TERM
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_TSTP
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_TTIN
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_TTOU
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_URG
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_USR1
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_USR2
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_VTALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_WAITING
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_WINCH
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_WIND
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_XCPU
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to gen_XFSZ
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of 33
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of 34
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of 35
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of 36
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of 37
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of 38
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of 39
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of 40
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of 41
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of 42
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of 43
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of 44
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of 45
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of 46
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of 47
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of 48
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of 49
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of 50
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of 51
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of 52
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of 53
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of 54
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of 55
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of 56
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of 57
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of 58
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of 59
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of 60
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of 61
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of 62
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of 63
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of ABRT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of ALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of BUS
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of CHLD
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of CONT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of DANGER
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of EMT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of FPE
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of GRANT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of HUP
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of ILL
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of IO
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of LOST
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of LWP
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of MSG
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of PHONE
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of PIPE
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of POLL
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of PRIO
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of PROF
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of PWR
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of QUIT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of RETRACT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of SAK
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of SEGV
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of SOUND
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of SYS
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of TERM
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of TSTP
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of TTIN
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of TTOU
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of URG
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of USR1
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of USR2
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of VTALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of WAITING
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of WINCH
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of WIND
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of XCPU
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: reverse to handler of XFSZ
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: send signal TERM
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 33
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 34
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 35
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 36
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 37
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 38
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 39
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 40
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 41
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 42
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 43
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 44
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 45
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 46
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 47
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 48
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 49
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 50
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 51
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 52
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 53
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 54
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 55
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 56
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 57
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 58
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 59
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 60
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 61
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 62
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to 63
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to ALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to BUS
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to CHLD
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to CONT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to DANGER
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to EMT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to FPE
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to GRANT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to HUP
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to ILL
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to IO
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to LOST
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to LWP
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to MSG
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to PHONE
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to PIPE
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to POLL
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to PRIO
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to PROF
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to PWR
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to QUIT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to RETRACT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to SAK
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to SEGV
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to SOUND
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to SYS
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to TERM
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to TSTP
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to TTIN
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to TTOU
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to URG
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to USR1
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to USR2
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to VTALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to WAITING
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to WINCH
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to WIND
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to XCPU
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: advance to XFSZ
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_33
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_34
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_35
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_36
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_37
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_38
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_39
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_40
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_41
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_42
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_43
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_44
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_45
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_46
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_47
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_48
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_49
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_50
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_51
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_52
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_53
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_54
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_55
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_56
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_57
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_58
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_59
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_60
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_61
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_62
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_63
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_ALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_BUS
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_CHLD
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_CONT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_DANGER
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_EMT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_FPE
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_GRANT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_HUP
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_ILL
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_IO
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_LOST
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_LWP
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_MSG
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_PHONE
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_PIPE
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_POLL
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_PRIO
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_PROF
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_PWR
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_QUIT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_RETRACT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_SAK
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_SEGV
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_SOUND
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_SYS
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_TERM
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_TSTP
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_TTIN
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_TTOU
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_URG
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_USR1
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_USR2
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_VTALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_WAITING
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_WINCH
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_WIND
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_XCPU
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b gen_XFSZ
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_33
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_34
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_35
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_36
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_37
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_38
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_39
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_40
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_41
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_42
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_43
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_44
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_45
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_46
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_47
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_48
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_49
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_50
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_51
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_52
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_53
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_54
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_55
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_56
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_57
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_58
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_59
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_60
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_61
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_62
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_63
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_ABRT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_ALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_BUS
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_CHLD
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_CONT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_DANGER
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_EMT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_FPE
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_GRANT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_HUP
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_ILL
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_IO
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_LOST
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_LWP
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_MSG
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_PHONE
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_PIPE
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_POLL
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_PRIO
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_PROF
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_PWR
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_QUIT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_RETRACT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_SAK
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_SEGV
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_SOUND
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_SYS
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_TSTP
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_TTIN
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_TTOU
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_URG
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_USR1
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_USR2
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_VTALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_WAITING
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_WINCH
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_WIND
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_XCPU
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: b handle_XFSZ
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 33
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 34
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 35
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 36
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 37
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 38
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 39
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 40
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 41
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 42
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 43
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 44
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 45
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 46
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 47
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 48
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 49
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 50
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 51
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 52
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 53
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 54
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 55
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 56
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 57
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 58
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 59
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 60
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 61
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 62
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal 63
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal ABRT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal ALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal BUS
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal CHLD
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal CONT
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal DANGER
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal EMT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal FPE
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal GRANT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal HUP
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal ILL
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal IO
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal LOST
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal LWP
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal MSG
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal PHONE
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal PIPE
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal POLL
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal PRIO
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal PROF
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal PWR
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal QUIT
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal RETRACT
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal SAK
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal SEGV
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal SOUND
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal SYS
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal TSTP
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal TTIN
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal TTOU
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal URG
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal USR1
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal USR2
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal VTALRM
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal WAITING
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal WINCH
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal WIND
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal XCPU
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: get signal XFSZ
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIG33 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIG34 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIG35 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIG36 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIG37 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIG38 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIG39 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIG40 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIG41 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIG42 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIG43 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIG44 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIG45 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIG46 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIG47 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIG48 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIG49 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIG50 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIG51 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIG52 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIG53 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIG54 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIG55 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIG56 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIG57 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIG58 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIG59 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIG60 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIG61 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIG62 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIG63 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIGABRT stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIGALRM stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIGBUS stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIGCHLD stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIGCONT stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIGDANGER stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIGEMT stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIGFPE stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIGGRANT stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIGHUP stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIGILL stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIGIO stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIGLOST stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIGLWP stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIGMSG stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIGPHONE stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIGPIPE stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIGPOLL stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIGPRIO stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIGPROF stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIGPWR stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIGQUIT stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIGRETRACT stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIGSAK stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIGSEGV stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIGSOUND stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIGSYS stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIGTSTP stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIGTTIN stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIGTTOU stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIGURG stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIGUSR1 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIGUSR2 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIGVTALRM stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIGWAITING stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIGWINCH stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIGWIND stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIGXCPU stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: handle SIGXFSZ stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 33
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 34
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 35
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 36
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 37
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 38
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 39
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 40
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 41
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 42
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 43
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 44
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 45
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 46
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 47
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 48
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 49
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 50
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 51
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 52
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 53
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 54
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 55
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 56
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 57
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 58
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 59
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 60
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 61
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 62
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal 63
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal ABRT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal ALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal BUS
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal CHLD
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal CONT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal DANGER
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal EMT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal FPE
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal GRANT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal HUP
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal ILL
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal IO
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal LOST
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal LWP
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal MSG
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal PHONE
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal PIPE
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal POLL
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal PRIO
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal PROF
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal PWR
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal QUIT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal RETRACT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal SAK
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal SEGV
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal SOUND
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal SYS
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal TSTP
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal TTIN
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal TTOU
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal URG
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal USR1
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal USR2
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal VTALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal WAITING
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal WINCH
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal WIND
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal XCPU
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-1: send signal XFSZ
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 33
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 34
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 35
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 36
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 37
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 38
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 39
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 40
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 41
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 42
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 43
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 44
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 45
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 46
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 47
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 48
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 49
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 50
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 51
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 52
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 53
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 54
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 55
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 56
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 57
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 58
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 59
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 60
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 61
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 62
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to 63
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to ALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to BUS
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to CHLD
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to CONT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to DANGER
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to EMT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to FPE
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to GRANT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to HUP
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to ILL
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to IO
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to LOST
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to LWP
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to MSG
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to PHONE
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to PIPE
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to POLL
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to PRIO
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to PROF
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to PWR
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to QUIT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to RETRACT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to SAK
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to SEGV
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to SOUND
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to SYS
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to TERM
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to TSTP
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to TTIN
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to TTOU
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to URG
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to USR1
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to USR2
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to VTALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to WAITING
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to WINCH
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to WIND
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to XCPU
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: advance to XFSZ
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_33
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_34
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_35
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_36
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_37
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_38
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_39
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_40
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_41
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_42
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_43
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_44
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_45
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_46
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_47
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_48
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_49
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_50
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_51
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_52
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_53
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_54
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_55
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_56
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_57
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_58
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_59
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_60
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_61
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_62
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_63
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_ALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_BUS
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_CHLD
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_CONT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_DANGER
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_EMT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_FPE
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_GRANT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_HUP
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_ILL
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_IO
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_LOST
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_LWP
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_MSG
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_PHONE
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_PIPE
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_POLL
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_PRIO
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_PROF
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_PWR
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_QUIT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_RETRACT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_SAK
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_SEGV
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_SOUND
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_SYS
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_TERM
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_TSTP
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_TTIN
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_TTOU
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_URG
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_USR1
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_USR2
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_VTALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_WAITING
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_WINCH
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_WIND
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_XCPU
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b gen_XFSZ
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_33
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_34
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_35
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_36
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_37
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_38
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_39
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_40
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_41
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_42
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_43
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_44
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_45
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_46
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_47
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_48
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_49
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_50
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_51
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_52
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_53
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_54
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_55
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_56
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_57
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_58
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_59
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_60
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_61
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_62
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_63
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_ABRT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_ALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_BUS
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_CHLD
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_CONT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_DANGER
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_EMT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_FPE
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_GRANT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_HUP
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_ILL
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_IO
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_LOST
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_LWP
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_MSG
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_PHONE
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_PIPE
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_POLL
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_PRIO
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_PROF
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_PWR
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_QUIT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_RETRACT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_SAK
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_SEGV
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_SOUND
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_SYS
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_TSTP
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_TTIN
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_TTOU
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_URG
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_USR1
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_USR2
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_VTALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_WAITING
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_WINCH
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_WIND
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_XCPU
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: b handle_XFSZ
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 33
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 34
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 35
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 36
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 37
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 38
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 39
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 40
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 41
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 42
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 43
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 44
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 45
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 46
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 47
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 48
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 49
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 50
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 51
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 52
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 53
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 54
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 55
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 56
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 57
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 58
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 59
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 60
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 61
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 62
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal 63
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal ABRT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal ALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal BUS
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal CHLD
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal CONT
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal DANGER
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal EMT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal FPE
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal GRANT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal HUP
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal ILL
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal IO
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal LOST
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal LWP
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal MSG
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal PHONE
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal PIPE
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal POLL
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal PRIO
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal PROF
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal PWR
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal QUIT
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal RETRACT
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal SAK
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal SEGV
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal SOUND
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal SYS
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal TSTP
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal TTIN
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal TTOU
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal URG
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal USR1
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal USR2
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal VTALRM
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal WAITING
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal WINCH
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal WIND
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal XCPU
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: get signal XFSZ
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIG33 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIG34 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIG35 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIG36 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIG37 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIG38 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIG39 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIG40 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIG41 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIG42 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIG43 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIG44 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIG45 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIG46 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIG47 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIG48 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIG49 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIG50 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIG51 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIG52 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIG53 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIG54 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIG55 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIG56 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIG57 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIG58 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIG59 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIG60 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIG61 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIG62 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIG63 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIGABRT stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIGALRM stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIGBUS stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIGCHLD stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIGCONT stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIGDANGER stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIGEMT stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIGFPE stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIGGRANT stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIGHUP stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIGILL stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIGIO stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIGLOST stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIGLWP stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIGMSG stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIGPHONE stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIGPIPE stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIGPOLL stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIGPRIO stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIGPROF stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIGPWR stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIGQUIT stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIGRETRACT stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIGSAK stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIGSEGV stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIGSOUND stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIGSYS stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIGTSTP stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIGTTIN stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIGTTOU stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIGURG stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIGUSR1 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIGUSR2 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIGVTALRM stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIGWAITING stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIGWINCH stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIGWIND stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIGXCPU stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: handle SIGXFSZ stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 33
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 34
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 35
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 36
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 37
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 38
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 39
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 40
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 41
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 42
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 43
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 44
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 45
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 46
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 47
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 48
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 49
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 50
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 51
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 52
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 53
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 54
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 55
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 56
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 57
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 58
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 59
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 60
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 61
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 62
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal 63
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal ABRT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal ALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal BUS
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal CHLD
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal CONT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal DANGER
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal EMT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal FPE
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal GRANT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal HUP
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal ILL
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal IO
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal LOST
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal LWP
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal MSG
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal PHONE
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal PIPE
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal POLL
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal PRIO
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal PROF
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal PWR
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal QUIT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal RETRACT
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal SAK
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal SEGV
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal SOUND
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal SYS
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal TSTP
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal TTIN
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal TTOU
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal URG
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal USR1
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal USR2
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal VTALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal WAITING
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal WINCH
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal WIND
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal XCPU
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: sig-test-2: send signal XFSZ
PASS -> UNRESOLVED: gdb.reverse/sigall-reverse.exp: turn on process record
PASS -> UNRESOLVED: gdb.reverse/solib-precsave.exp: breakpoint at end of main
PASS -> UNRESOLVED: gdb.reverse/solib-precsave.exp: forward to end part one
PASS -> UNRESOLVED: gdb.reverse/solib-precsave.exp: kill process, prepare to debug log file
PASS -> UNRESOLVED: gdb.reverse/solib-precsave.exp: reload core file
PASS -> UNRESOLVED: gdb.reverse/solib-precsave.exp: reverse-next first shr1
PASS -> UNRESOLVED: gdb.reverse/solib-precsave.exp: reverse-next generic
PASS -> UNRESOLVED: gdb.reverse/solib-precsave.exp: reverse-next over solib function one
PASS -> UNRESOLVED: gdb.reverse/solib-precsave.exp: reverse-next over solib function two
PASS -> UNRESOLVED: gdb.reverse/solib-precsave.exp: reverse-next second shr1
PASS -> UNRESOLVED: gdb.reverse/solib-precsave.exp: reverse-next third shr1
PASS -> UNRESOLVED: gdb.reverse/solib-precsave.exp: reverse-step back to main one
PASS -> UNRESOLVED: gdb.reverse/solib-precsave.exp: reverse-step back to main two
PASS -> UNRESOLVED: gdb.reverse/solib-precsave.exp: reverse-step first shr1
PASS -> UNRESOLVED: gdb.reverse/solib-precsave.exp: reverse-step generic
PASS -> UNRESOLVED: gdb.reverse/solib-precsave.exp: reverse-step into solib function one
PASS -> UNRESOLVED: gdb.reverse/solib-precsave.exp: reverse-step into solib function two
PASS -> UNRESOLVED: gdb.reverse/solib-precsave.exp: reverse-step second shr1
PASS -> UNRESOLVED: gdb.reverse/solib-precsave.exp: reverse-step third shr1
PASS -> UNRESOLVED: gdb.reverse/solib-precsave.exp: reverse-step within solib function one
PASS -> UNRESOLVED: gdb.reverse/solib-precsave.exp: reverse-step within solib function two
PASS -> UNRESOLVED: gdb.reverse/solib-precsave.exp: run to end of main
PASS -> UNRESOLVED: gdb.reverse/solib-precsave.exp: run until end part one
PASS -> UNRESOLVED: gdb.reverse/solib-precsave.exp: run until end part two
PASS -> UNRESOLVED: gdb.reverse/solib-precsave.exp: save process recfile
PASS -> UNRESOLVED: gdb.reverse/solib-precsave.exp: turn on process record
PASS -> UNRESOLVED: gdb.reverse/solib-reverse.exp: forward to end part one
PASS -> UNRESOLVED: gdb.reverse/solib-reverse.exp: reverse-next first shr1
PASS -> UNRESOLVED: gdb.reverse/solib-reverse.exp: reverse-next generic
PASS -> UNRESOLVED: gdb.reverse/solib-reverse.exp: reverse-next over solib function one
PASS -> UNRESOLVED: gdb.reverse/solib-reverse.exp: reverse-next over solib function two
PASS -> UNRESOLVED: gdb.reverse/solib-reverse.exp: reverse-next second shr1
PASS -> UNRESOLVED: gdb.reverse/solib-reverse.exp: reverse-next third shr1
PASS -> UNRESOLVED: gdb.reverse/solib-reverse.exp: reverse-step back to main one
PASS -> UNRESOLVED: gdb.reverse/solib-reverse.exp: reverse-step back to main two
PASS -> UNRESOLVED: gdb.reverse/solib-reverse.exp: reverse-step first shr1
PASS -> UNRESOLVED: gdb.reverse/solib-reverse.exp: reverse-step generic
PASS -> UNRESOLVED: gdb.reverse/solib-reverse.exp: reverse-step into solib function one
PASS -> UNRESOLVED: gdb.reverse/solib-reverse.exp: reverse-step into solib function two
PASS -> UNRESOLVED: gdb.reverse/solib-reverse.exp: reverse-step second shr1
PASS -> UNRESOLVED: gdb.reverse/solib-reverse.exp: reverse-step third shr1
PASS -> UNRESOLVED: gdb.reverse/solib-reverse.exp: reverse-step within solib function one
PASS -> UNRESOLVED: gdb.reverse/solib-reverse.exp: reverse-step within solib function two
PASS -> UNRESOLVED: gdb.reverse/solib-reverse.exp: run until end part one
PASS -> UNRESOLVED: gdb.reverse/solib-reverse.exp: run until end part two
PASS -> UNRESOLVED: gdb.reverse/solib-reverse.exp: turn on process record
PASS -> UNRESOLVED: gdb.reverse/step-precsave.exp: breakpoint at end of main
PASS -> UNRESOLVED: gdb.reverse/step-precsave.exp: finish out of fn call
PASS -> UNRESOLVED: gdb.reverse/step-precsave.exp: kill process, prepare to debug log file
PASS -> UNRESOLVED: gdb.reverse/step-precsave.exp: next over call
PASS -> UNRESOLVED: gdb.reverse/step-precsave.exp: next test 1
PASS -> UNRESOLVED: gdb.reverse/step-precsave.exp: next test 2
PASS -> UNRESOLVED: gdb.reverse/step-precsave.exp: reload core file
PASS -> UNRESOLVED: gdb.reverse/step-precsave.exp: reverse next over call
PASS -> UNRESOLVED: gdb.reverse/step-precsave.exp: reverse next test 1
PASS -> UNRESOLVED: gdb.reverse/step-precsave.exp: reverse next test 2
PASS -> UNRESOLVED: gdb.reverse/step-precsave.exp: reverse step into fn call
PASS -> UNRESOLVED: gdb.reverse/step-precsave.exp: reverse step out of called fn
PASS -> UNRESOLVED: gdb.reverse/step-precsave.exp: reverse step test 1
PASS -> UNRESOLVED: gdb.reverse/step-precsave.exp: reverse step test 2
PASS -> UNRESOLVED: gdb.reverse/step-precsave.exp: reverse stepi from a function call
PASS -> UNRESOLVED: gdb.reverse/step-precsave.exp: reverse stepi thru function return
PASS -> UNRESOLVED: gdb.reverse/step-precsave.exp: run to end of main
PASS -> UNRESOLVED: gdb.reverse/step-precsave.exp: save process recfile
PASS -> UNRESOLVED: gdb.reverse/step-precsave.exp: set reverse execution
PASS -> UNRESOLVED: gdb.reverse/step-precsave.exp: simple reverse stepi
PASS -> UNRESOLVED: gdb.reverse/step-precsave.exp: simple stepi
PASS -> UNRESOLVED: gdb.reverse/step-precsave.exp: step into call
PASS -> UNRESOLVED: gdb.reverse/step-precsave.exp: step test 1
PASS -> UNRESOLVED: gdb.reverse/step-precsave.exp: step test 2
PASS -> UNRESOLVED: gdb.reverse/step-precsave.exp: step up to call
PASS -> UNRESOLVED: gdb.reverse/step-precsave.exp: stepi back from function call
PASS -> UNRESOLVED: gdb.reverse/step-precsave.exp: stepi into function call
PASS -> UNRESOLVED: gdb.reverse/step-precsave.exp: turn on process record
PASS -> UNRESOLVED: gdb.reverse/step-reverse.exp: finish out of fn call
PASS -> UNRESOLVED: gdb.reverse/step-reverse.exp: next over call
PASS -> UNRESOLVED: gdb.reverse/step-reverse.exp: next test 1
PASS -> UNRESOLVED: gdb.reverse/step-reverse.exp: next test 2
PASS -> UNRESOLVED: gdb.reverse/step-reverse.exp: reverse next over call
PASS -> UNRESOLVED: gdb.reverse/step-reverse.exp: reverse next test 1
PASS -> UNRESOLVED: gdb.reverse/step-reverse.exp: reverse next test 2
PASS -> UNRESOLVED: gdb.reverse/step-reverse.exp: reverse step into fn call
PASS -> UNRESOLVED: gdb.reverse/step-reverse.exp: reverse step out of called fn
PASS -> UNRESOLVED: gdb.reverse/step-reverse.exp: reverse step test 1
PASS -> UNRESOLVED: gdb.reverse/step-reverse.exp: reverse step test 2
PASS -> UNRESOLVED: gdb.reverse/step-reverse.exp: reverse stepi from a function call
PASS -> UNRESOLVED: gdb.reverse/step-reverse.exp: reverse stepi thru function return
PASS -> UNRESOLVED: gdb.reverse/step-reverse.exp: set reverse execution
PASS -> UNRESOLVED: gdb.reverse/step-reverse.exp: simple reverse stepi
PASS -> UNRESOLVED: gdb.reverse/step-reverse.exp: simple stepi
PASS -> UNRESOLVED: gdb.reverse/step-reverse.exp: step into call
PASS -> UNRESOLVED: gdb.reverse/step-reverse.exp: step test 1
PASS -> UNRESOLVED: gdb.reverse/step-reverse.exp: step test 2
PASS -> UNRESOLVED: gdb.reverse/step-reverse.exp: step up to call
PASS -> UNRESOLVED: gdb.reverse/step-reverse.exp: stepi back from function call
PASS -> UNRESOLVED: gdb.reverse/step-reverse.exp: stepi into function call
PASS -> UNRESOLVED: gdb.reverse/step-reverse.exp: turn on process record
PASS -> UNRESOLVED: gdb.reverse/until-precsave.exp: advance to factorial
PASS -> UNRESOLVED: gdb.reverse/until-precsave.exp: advance to marker2
PASS -> UNRESOLVED: gdb.reverse/until-precsave.exp: breakpoint at end of main
PASS -> UNRESOLVED: gdb.reverse/until-precsave.exp: finish to main
PASS -> UNRESOLVED: gdb.reverse/until-precsave.exp: kill process, prepare to debug log file
PASS -> UNRESOLVED: gdb.reverse/until-precsave.exp: reload core file
PASS -> UNRESOLVED: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial
PASS -> UNRESOLVED: gdb.reverse/until-precsave.exp: reverse-advance to marker2
PASS -> UNRESOLVED: gdb.reverse/until-precsave.exp: reverse-finish from marker2
PASS -> UNRESOLVED: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial
PASS -> UNRESOLVED: gdb.reverse/until-precsave.exp: run to end of main
PASS -> UNRESOLVED: gdb.reverse/until-precsave.exp: save process recfile
PASS -> UNRESOLVED: gdb.reverse/until-precsave.exp: set reverse execution
PASS -> UNRESOLVED: gdb.reverse/until-precsave.exp: turn on process record
PASS -> UNRESOLVED: gdb.reverse/until-precsave.exp: until factorial, recursive function
PASS -> UNRESOLVED: gdb.reverse/until-precsave.exp: until func, not called by current frame
PASS -> UNRESOLVED: gdb.reverse/until-precsave.exp: until line number
PASS -> UNRESOLVED: gdb.reverse/until-reverse.exp: advance to factorial
PASS -> UNRESOLVED: gdb.reverse/until-reverse.exp: advance to marker2
PASS -> UNRESOLVED: gdb.reverse/until-reverse.exp: finish to main
PASS -> UNRESOLVED: gdb.reverse/until-reverse.exp: reverse-advance to final return of factorial
PASS -> UNRESOLVED: gdb.reverse/until-reverse.exp: reverse-advance to marker2
PASS -> UNRESOLVED: gdb.reverse/until-reverse.exp: reverse-finish from marker2
PASS -> UNRESOLVED: gdb.reverse/until-reverse.exp: reverse-until to entry of factorial
PASS -> UNRESOLVED: gdb.reverse/until-reverse.exp: set reverse execution
PASS -> UNRESOLVED: gdb.reverse/until-reverse.exp: turn on process record
PASS -> UNRESOLVED: gdb.reverse/until-reverse.exp: until factorial, recursive function
PASS -> UNRESOLVED: gdb.reverse/until-reverse.exp: until func, not called by current frame
PASS -> UNRESOLVED: gdb.reverse/until-reverse.exp: until line number
PASS -> UNRESOLVED: gdb.reverse/waitpid-reverse.exp: check waitpid record
PASS -> UNRESOLVED: gdb.reverse/waitpid-reverse.exp: continue to breakpoint: marker2
PASS -> UNRESOLVED: gdb.reverse/waitpid-reverse.exp: reverse to marker1
PASS -> UNRESOLVED: gdb.reverse/waitpid-reverse.exp: set breakpoint at marker1
PASS -> UNRESOLVED: gdb.reverse/waitpid-reverse.exp: set breakpoint at marker2
PASS -> UNRESOLVED: gdb.reverse/waitpid-reverse.exp: turn on process record
PASS -> UNRESOLVED: gdb.reverse/watch-precsave.exp: breakpoint at end of main
PASS -> UNRESOLVED: gdb.reverse/watch-precsave.exp: continue to breakpoint: marker1
PASS -> UNRESOLVED: gdb.reverse/watch-precsave.exp: continue to breakpoint: marker2
PASS -> UNRESOLVED: gdb.reverse/watch-precsave.exp: enable hw watchpoints
PASS -> UNRESOLVED: gdb.reverse/watch-precsave.exp: kill process, prepare to debug log file
PASS -> UNRESOLVED: gdb.reverse/watch-precsave.exp: reload core file
PASS -> UNRESOLVED: gdb.reverse/watch-precsave.exp: replay forward to marker2
PASS -> UNRESOLVED: gdb.reverse/watch-precsave.exp: run to end of main
PASS -> UNRESOLVED: gdb.reverse/watch-precsave.exp: save process recfile
PASS -> UNRESOLVED: gdb.reverse/watch-precsave.exp: set breakpoint at marker1
PASS -> UNRESOLVED: gdb.reverse/watch-precsave.exp: set breakpoint at marker2
new UNRESOLVED: gdb.reverse/watch-precsave.exp: set can-use-hw-watchpoints 0
PASS -> UNRESOLVED: gdb.reverse/watch-precsave.exp: set forward
PASS -> UNRESOLVED: gdb.reverse/watch-precsave.exp: set reverse, first time
PASS -> UNRESOLVED: gdb.reverse/watch-precsave.exp: set reverse, second time
PASS -> UNRESOLVED: gdb.reverse/watch-precsave.exp: set watchpoint on ival3
PASS -> UNRESOLVED: gdb.reverse/watch-precsave.exp: turn on process record
PASS -> UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, HW, fifth time
PASS -> UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, HW, first time
PASS -> UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, HW, fourth time
PASS -> UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, HW, second time
PASS -> UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, HW, third time
PASS -> UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, fifth time
PASS -> UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, first time
PASS -> UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, fourth time
PASS -> UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, second time
PASS -> UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, third time
PASS -> UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit, fifth time
PASS -> UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit, first time
PASS -> UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit, forward replay, fifth time
PASS -> UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit, forward replay, first time
PASS -> UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit, forward replay, fourth time
PASS -> UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit, forward replay, second time
PASS -> UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit, forward replay, third time
PASS -> UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit, fourth time
PASS -> UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit, second time
PASS -> UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit, third time
PASS -> UNRESOLVED: gdb.reverse/watch-reverse.exp: continue to breakpoint: marker1
PASS -> UNRESOLVED: gdb.reverse/watch-reverse.exp: continue to breakpoint: marker2
PASS -> UNRESOLVED: gdb.reverse/watch-reverse.exp: disable hw watchpoints
PASS -> UNRESOLVED: gdb.reverse/watch-reverse.exp: enable hw watchpoints
PASS -> UNRESOLVED: gdb.reverse/watch-reverse.exp: replay forward to marker2
PASS -> UNRESOLVED: gdb.reverse/watch-reverse.exp: set breakpoint at marker1
PASS -> UNRESOLVED: gdb.reverse/watch-reverse.exp: set breakpoint at marker2
PASS -> UNRESOLVED: gdb.reverse/watch-reverse.exp: set forward
PASS -> UNRESOLVED: gdb.reverse/watch-reverse.exp: set reverse, first time
PASS -> UNRESOLVED: gdb.reverse/watch-reverse.exp: set reverse, second time
PASS -> UNRESOLVED: gdb.reverse/watch-reverse.exp: set watchpoint on ival3
PASS -> UNRESOLVED: gdb.reverse/watch-reverse.exp: turn on process record
PASS -> UNRESOLVED: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, HW, fifth time
PASS -> UNRESOLVED: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, HW, first time
PASS -> UNRESOLVED: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, HW, fourth time
PASS -> UNRESOLVED: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, HW, second time
PASS -> UNRESOLVED: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, HW, third time
PASS -> UNRESOLVED: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, fifth time
PASS -> UNRESOLVED: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, first time
PASS -> UNRESOLVED: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, fourth time
PASS -> UNRESOLVED: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, second time
PASS -> UNRESOLVED: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, third time
PASS -> UNRESOLVED: gdb.reverse/watch-reverse.exp: watchpoint hit, fifth time
PASS -> UNRESOLVED: gdb.reverse/watch-reverse.exp: watchpoint hit, first time
PASS -> UNRESOLVED: gdb.reverse/watch-reverse.exp: watchpoint hit, forward replay, fifth time
PASS -> UNRESOLVED: gdb.reverse/watch-reverse.exp: watchpoint hit, forward replay, first time
PASS -> UNRESOLVED: gdb.reverse/watch-reverse.exp: watchpoint hit, forward replay, fourth time
PASS -> UNRESOLVED: gdb.reverse/watch-reverse.exp: watchpoint hit, forward replay, second time
PASS -> UNRESOLVED: gdb.reverse/watch-reverse.exp: watchpoint hit, forward replay, third time
PASS -> UNRESOLVED: gdb.reverse/watch-reverse.exp: watchpoint hit, fourth time
PASS -> UNRESOLVED: gdb.reverse/watch-reverse.exp: watchpoint hit, second time
PASS -> UNRESOLVED: gdb.reverse/watch-reverse.exp: watchpoint hit, third time
PASS -> UNRESOLVED: gdb.server/abspath.exp: continue to main
new UNRESOLVED: gdb.server/abspath.exp: setting breakpoint at main
PASS -> UNRESOLVED: gdb.server/connect-stopped-target.exp: non-stop=off: connect and print pc
PASS -> UNRESOLVED: gdb.server/connect-stopped-target.exp: non-stop=off: print pc again
PASS -> UNRESOLVED: gdb.server/connect-stopped-target.exp: non-stop=on: connect and print pc
PASS -> UNRESOLVED: gdb.server/connect-stopped-target.exp: non-stop=on: print pc again
PASS -> UNRESOLVED: gdb.server/connect-without-multi-process.exp: multiprocess=auto: break main
PASS -> UNRESOLVED: gdb.server/connect-without-multi-process.exp: multiprocess=auto: continue to main
PASS -> UNRESOLVED: gdb.server/connect-without-multi-process.exp: multiprocess=auto: target remote
PASS -> UNRESOLVED: gdb.server/connect-without-multi-process.exp: multiprocess=off: break main
PASS -> UNRESOLVED: gdb.server/connect-without-multi-process.exp: multiprocess=off: continue to main
PASS -> UNRESOLVED: gdb.server/connect-without-multi-process.exp: multiprocess=off: target remote
PASS -> UNRESOLVED: gdb.server/ext-restart.exp: kill
PASS -> UNRESOLVED: gdb.server/ext-restart.exp: monitor exit
PASS -> UNRESOLVED: gdb.server/ext-restart.exp: restart: run to main
PASS -> UNRESOLVED: gdb.server/ext-restart.exp: restart: set remote exec-file
PASS -> UNRESOLVED: gdb.server/ext-restart.exp: restart: set remote run-packet off
PASS -> UNRESOLVED: gdb.server/ext-restart.exp: run to main
new FAIL: gdb.server/ext-restart.exp: setting breakpoint at main
PASS -> UNRESOLVED: gdb.server/ext-run.exp: continue to main
FAIL -> UNRESOLVED: gdb.server/ext-run.exp: get process list
PASS -> UNRESOLVED: gdb.server/ext-run.exp: kill
PASS -> UNRESOLVED: gdb.server/ext-run.exp: load new file without any gdbserver inferior
PASS -> UNRESOLVED: gdb.server/ext-run.exp: monitor exit
new FAIL: gdb.server/ext-run.exp: setting breakpoint at main
PASS -> UNRESOLVED: gdb.server/ext-wrapper.exp: kill
PASS -> UNRESOLVED: gdb.server/ext-wrapper.exp: monitor exit
PASS -> UNRESOLVED: gdb.server/ext-wrapper.exp: print d
PASS -> UNRESOLVED: gdb.server/ext-wrapper.exp: restart: print d
PASS -> UNRESOLVED: gdb.server/ext-wrapper.exp: restart: run to marker
PASS -> UNRESOLVED: gdb.server/ext-wrapper.exp: restart: set remote exec-file
PASS -> UNRESOLVED: gdb.server/ext-wrapper.exp: restart: set remote run-packet off
PASS -> UNRESOLVED: gdb.server/ext-wrapper.exp: run to marker
new FAIL: gdb.server/ext-wrapper.exp: setting breakpoint at marker
PASS -> FAIL: gdb.server/file-transfer.exp: compare binary file
PASS -> FAIL: gdb.server/file-transfer.exp: compare intermediate binary file
PASS -> FAIL: gdb.server/file-transfer.exp: compare intermediate text file
PASS -> FAIL: gdb.server/file-transfer.exp: compare text file
PASS -> UNRESOLVED: gdb.server/file-transfer.exp: deleted binary file
PASS -> UNRESOLVED: gdb.server/file-transfer.exp: deleted text file
PASS -> UNRESOLVED: gdb.server/file-transfer.exp: get binary file
PASS -> UNRESOLVED: gdb.server/file-transfer.exp: get text file
PASS -> UNRESOLVED: gdb.server/file-transfer.exp: put binary file
PASS -> UNRESOLVED: gdb.server/file-transfer.exp: put text file
PASS -> UNRESOLVED: gdb.server/no-thread-db.exp: continue to breakpoint: after tls assignment
PASS -> UNRESOLVED: gdb.server/no-thread-db.exp: libthread-db is now unresolvable
PASS -> UNRESOLVED: gdb.server/no-thread-db.exp: print foo
new UNRESOLVED: gdb.server/no-thread-db.exp: setting breakpoint at no-thread-db.c:26
PASS -> UNRESOLVED: gdb.server/reconnect-ctrl-c.exp: first: connect
PASS -> UNRESOLVED: gdb.server/reconnect-ctrl-c.exp: second: connect
PASS -> UNRESOLVED: gdb.server/reconnect-ctrl-c.exp: second: disconnect
PASS -> UNRESOLVED: gdb.server/run-without-local-binary.exp: run test program until the end
PASS -> UNRESOLVED: gdb.server/server-connect.exp: tcp4: connect to gdbserver using tcp4:127.0.0.1
PASS -> UNRESOLVED: gdb.server/server-connect.exp: tcp6-with-brackets: connect to gdbserver using tcp6:[::1]
PASS -> UNRESOLVED: gdb.server/server-connect.exp: tcp6: connect to gdbserver using tcp6:::1
PASS -> UNRESOLVED: gdb.server/server-connect.exp: tcp: connect to gdbserver using tcp:localhost
PASS -> UNRESOLVED: gdb.server/server-connect.exp: udp4: connect to gdbserver using udp4:127.0.0.1
PASS -> UNRESOLVED: gdb.server/server-connect.exp: udp6-with-brackets: connect to gdbserver using udp6:[::1]
PASS -> UNRESOLVED: gdb.server/server-connect.exp: udp6: connect to gdbserver using udp6:::1
PASS -> UNRESOLVED: gdb.server/server-exec-info.exp: info files
PASS -> UNRESOLVED: gdb.server/server-exec-info.exp: set sysroot remote:
PASS -> UNRESOLVED: gdb.server/server-kill.exp: continue to breakpoint: after server_pid assignment
PASS -> UNRESOLVED: gdb.server/server-kill.exp: p server_pid
new UNRESOLVED: gdb.server/server-kill.exp: setting breakpoint at server-kill.c:29
PASS -> UNRESOLVED: gdb.server/server-mon.exp: monitor
PASS -> UNRESOLVED: gdb.server/server-mon.exp: monitor help
PASS -> UNRESOLVED: gdb.server/server-mon.exp: monitor set debug 0
PASS -> UNRESOLVED: gdb.server/server-mon.exp: monitor set debug 1
PASS -> UNRESOLVED: gdb.server/server-mon.exp: monitor set debug-format all
PASS -> UNRESOLVED: gdb.server/server-mon.exp: monitor set debug-format none
PASS -> UNRESOLVED: gdb.server/server-mon.exp: monitor set remote-debug 0
PASS -> UNRESOLVED: gdb.server/server-mon.exp: monitor set remote-debug 1
PASS -> UNRESOLVED: gdb.server/server-run.exp: continue to main
PASS -> UNRESOLVED: gdb.server/server-run.exp: loaded dynamic linker
new UNRESOLVED: gdb.server/server-run.exp: setting breakpoint at main
PASS -> UNRESOLVED: gdb.server/solib-list.exp: non-stop 0: target remote
PASS -> UNRESOLVED: gdb.server/stop-reply-no-thread.exp: connect
PASS -> UNRESOLVED: gdb.server/sysroot.exp: sysroot=local: connect to remote and read binary
PASS -> UNRESOLVED: gdb.server/sysroot.exp: sysroot=local: continue to main
PASS -> UNRESOLVED: gdb.server/sysroot.exp: sysroot=local: continue to printf
new UNRESOLVED: gdb.server/sysroot.exp: sysroot=local: setting breakpoint at main
new UNRESOLVED: gdb.server/sysroot.exp: sysroot=local: setting breakpoint at printf
PASS -> UNRESOLVED: gdb.server/sysroot.exp: sysroot=remote: connect to remote and read binary
PASS -> UNRESOLVED: gdb.server/sysroot.exp: sysroot=remote: continue to main
PASS -> UNRESOLVED: gdb.server/sysroot.exp: sysroot=remote: continue to printf
new UNRESOLVED: gdb.server/sysroot.exp: sysroot=remote: setting breakpoint at main
new UNRESOLVED: gdb.server/sysroot.exp: sysroot=remote: setting breakpoint at printf
PASS -> UNRESOLVED: gdb.server/wrapper.exp: continue to marker
PASS -> UNRESOLVED: gdb.server/wrapper.exp: print d
new UNRESOLVED: gdb.server/wrapper.exp: setting breakpoint at marker
new FAIL: gdb.stabs/gdb11479.exp: can't run to main natural_debug_format
PASS -> UNRESOLVED: gdb.threads/bp_in_thread.exp: breakpoint on noreturn
PASS -> UNRESOLVED: gdb.threads/bp_in_thread.exp: run to noreturn
new UNRESOLVED: gdb.threads/continue-pending-after-query.exp: iter 10: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.threads/continue-pending-after-query.exp: iter 2: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.threads/continue-pending-after-query.exp: iter 3: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.threads/continue-pending-after-query.exp: iter 4: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.threads/continue-pending-after-query.exp: iter 5: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.threads/continue-pending-after-query.exp: iter 6: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.threads/continue-pending-after-query.exp: iter 7: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.threads/continue-pending-after-query.exp: iter 8: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.threads/continue-pending-after-query.exp: iter 9: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.threads/corethreads.exp: load core
PASS -> UNRESOLVED: gdb.threads/corethreads.exp: print pthread_t of thread0
PASS -> UNRESOLVED: gdb.threads/corethreads.exp: print pthread_t of thread1
PASS -> UNRESOLVED: gdb.threads/corethreads.exp: sanity check we see the core file
PASS -> UNRESOLVED: gdb.threads/execl.exp: set breakpoint at execl
new FAIL: gdb.threads/fork-child-threads.exp: can't run to main
new FAIL: gdb.threads/fork-thread-pending.exp: can't run to main
new FAIL: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=0: detach_on_fork=on: displaced=off: can't run to main
new FAIL: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=0: detach_on_fork=on: displaced=on: can't run to main
new FAIL: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=1: detach_on_fork=on: displaced=off: can't run to main
new FAIL: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=1: detach_on_fork=on: displaced=on: can't run to main
new FAIL: gdb.threads/forking-threads-plus-breakpoint.exp: probe displaced-stepping support: can't run to main
new FAIL: gdb.threads/hand-call-in-threads.exp: can't run to main
new FAIL: gdb.threads/interrupt-while-step-over.exp: can't run to main
new FAIL: gdb.threads/interrupted-hand-call.exp: can't run to main
new FAIL: gdb.threads/kill.exp: non-threaded: run to main
new FAIL: gdb.threads/kill.exp: threaded: run to main
PASS -> UNRESOLVED: gdb.threads/killed.exp: GDB exits after multi-threaded program exits messily
PASS -> UNRESOLVED: gdb.threads/linux-dp.exp: continue to breakpoint: about to create philosopher: 0
PASS -> UNRESOLVED: gdb.threads/linux-dp.exp: continue to breakpoint: about to create philosopher: 1
PASS -> UNRESOLVED: gdb.threads/linux-dp.exp: continue to breakpoint: about to create philosopher: 2
PASS -> UNRESOLVED: gdb.threads/linux-dp.exp: continue to breakpoint: about to create philosopher: 3
PASS -> UNRESOLVED: gdb.threads/linux-dp.exp: continue to breakpoint: about to create philosopher: 4
PASS -> UNRESOLVED: gdb.threads/linux-dp.exp: continue to breakpoint: main thread's sleep
PASS -> UNRESOLVED: gdb.threads/linux-dp.exp: continue to breakpoint: thread 5's print
PASS -> UNRESOLVED: gdb.threads/linux-dp.exp: continue to breakpoint: thread 5's print, pass: 0
PASS -> UNRESOLVED: gdb.threads/linux-dp.exp: continue to breakpoint: thread 5's print, pass: 1
PASS -> UNRESOLVED: gdb.threads/linux-dp.exp: continue to breakpoint: thread 5's print, pass: 2
PASS -> UNRESOLVED: gdb.threads/linux-dp.exp: continue to breakpoint: thread 5's print, pass: 3
PASS -> UNRESOLVED: gdb.threads/linux-dp.exp: continue to breakpoint: thread 5's print, pass: 4
PASS -> UNRESOLVED: gdb.threads/linux-dp.exp: continue to breakpoint: thread 5's print, pass: 5
PASS -> UNRESOLVED: gdb.threads/linux-dp.exp: continue to breakpoint: thread 5's print, pass: 6
PASS -> UNRESOLVED: gdb.threads/linux-dp.exp: continue to breakpoint: thread 5's print, pass: 7
PASS -> UNRESOLVED: gdb.threads/linux-dp.exp: continue to breakpoint: thread 5's print, pass: 8
PASS -> UNRESOLVED: gdb.threads/linux-dp.exp: continue to breakpoint: thread 5's print, pass: 9
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 0
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 1
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 2
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 4
PASS -> UNRESOLVED: gdb.threads/linux-dp.exp: first thread-specific breakpoint hit
PASS -> FAIL: gdb.threads/linux-dp.exp: found an interesting thread
new UNRESOLVED: gdb.threads/linux-dp.exp: info threads
PASS -> UNRESOLVED: gdb.threads/linux-dp.exp: info threads 1
PASS -> UNRESOLVED: gdb.threads/linux-dp.exp: info threads 2
PASS -> UNRESOLVED: gdb.threads/linux-dp.exp: info threads after: 0
PASS -> UNRESOLVED: gdb.threads/linux-dp.exp: info threads after: 1
PASS -> UNRESOLVED: gdb.threads/linux-dp.exp: info threads after: 2
PASS -> UNRESOLVED: gdb.threads/linux-dp.exp: info threads after: 3
PASS -> UNRESOLVED: gdb.threads/linux-dp.exp: info threads after: 4
new UNRESOLVED: gdb.threads/linux-dp.exp: info threads before: 0
new UNRESOLVED: gdb.threads/linux-dp.exp: info threads before: 1
new UNRESOLVED: gdb.threads/linux-dp.exp: info threads before: 2
new UNRESOLVED: gdb.threads/linux-dp.exp: info threads before: 3
new UNRESOLVED: gdb.threads/linux-dp.exp: info threads before: 4
PASS -> FAIL: gdb.threads/linux-dp.exp: manager thread found
new UNRESOLVED: gdb.threads/linux-dp.exp: philosopher is distinct: 1
PASS -> UNRESOLVED: gdb.threads/linux-dp.exp: philosopher is distinct: 2
FAIL -> UNRESOLVED: gdb.threads/linux-dp.exp: philosopher is distinct: 4
PASS -> UNRESOLVED: gdb.threads/linux-dp.exp: philosopher is distinct: 5
FAIL -> UNRESOLVED: gdb.threads/linux-dp.exp: philosopher is distinct: 6
PASS -> UNRESOLVED: gdb.threads/linux-dp.exp: selected thread: 1
PASS -> UNRESOLVED: gdb.threads/linux-dp.exp: selected thread: 2
PASS -> UNRESOLVED: gdb.threads/linux-dp.exp: selected thread: 3
PASS -> UNRESOLVED: gdb.threads/linux-dp.exp: selected thread: 4
PASS -> UNRESOLVED: gdb.threads/linux-dp.exp: selected thread: 5
PASS -> UNRESOLVED: gdb.threads/linux-dp.exp: selected thread: 6
new UNRESOLVED: gdb.threads/linux-dp.exp: setting breakpoint at 192
new UNRESOLVED: gdb.threads/linux-dp.exp: setting breakpoint at 199
new UNRESOLVED: gdb.threads/linux-dp.exp: setting breakpoint at print_philosopher thread 5
new FAIL: gdb.threads/local-watch-wrong-thread.exp: can't run to main
PASS -> UNRESOLVED: gdb.threads/manythreads.exp: GDB exits after stopping multithreaded program
PASS -> UNRESOLVED: gdb.threads/manythreads.exp: check for duplicate SIGINT
PASS -> UNRESOLVED: gdb.threads/manythreads.exp: check thread name
PASS -> UNRESOLVED: gdb.threads/manythreads.exp: first continue
PASS -> UNRESOLVED: gdb.threads/manythreads.exp: give a name to the thread
PASS -> UNRESOLVED: gdb.threads/manythreads.exp: info threads
PASS -> UNRESOLVED: gdb.threads/manythreads.exp: second continue
PASS -> UNRESOLVED: gdb.threads/manythreads.exp: shell stty intr '^C'
PASS -> UNRESOLVED: gdb.threads/multi-create.exp: continue to breakpoint 0
PASS -> UNRESOLVED: gdb.threads/multi-create.exp: continue to breakpoint 1
PASS -> UNRESOLVED: gdb.threads/multi-create.exp: continue to breakpoint 10
PASS -> UNRESOLVED: gdb.threads/multi-create.exp: continue to breakpoint 11
PASS -> UNRESOLVED: gdb.threads/multi-create.exp: continue to breakpoint 12
PASS -> UNRESOLVED: gdb.threads/multi-create.exp: continue to breakpoint 13
PASS -> UNRESOLVED: gdb.threads/multi-create.exp: continue to breakpoint 14
PASS -> UNRESOLVED: gdb.threads/multi-create.exp: continue to breakpoint 15
PASS -> UNRESOLVED: gdb.threads/multi-create.exp: continue to breakpoint 16
PASS -> UNRESOLVED: gdb.threads/multi-create.exp: continue to breakpoint 17
PASS -> UNRESOLVED: gdb.threads/multi-create.exp: continue to breakpoint 18
PASS -> UNRESOLVED: gdb.threads/multi-create.exp: continue to breakpoint 19
PASS -> UNRESOLVED: gdb.threads/multi-create.exp: continue to breakpoint 2
PASS -> UNRESOLVED: gdb.threads/multi-create.exp: continue to breakpoint 20
PASS -> UNRESOLVED: gdb.threads/multi-create.exp: continue to breakpoint 21
PASS -> UNRESOLVED: gdb.threads/multi-create.exp: continue to breakpoint 22
PASS -> UNRESOLVED: gdb.threads/multi-create.exp: continue to breakpoint 23
PASS -> UNRESOLVED: gdb.threads/multi-create.exp: continue to breakpoint 24
PASS -> UNRESOLVED: gdb.threads/multi-create.exp: continue to breakpoint 25
PASS -> UNRESOLVED: gdb.threads/multi-create.exp: continue to breakpoint 26
PASS -> UNRESOLVED: gdb.threads/multi-create.exp: continue to breakpoint 27
PASS -> UNRESOLVED: gdb.threads/multi-create.exp: continue to breakpoint 28
PASS -> UNRESOLVED: gdb.threads/multi-create.exp: continue to breakpoint 29
PASS -> UNRESOLVED: gdb.threads/multi-create.exp: continue to breakpoint 3
PASS -> UNRESOLVED: gdb.threads/multi-create.exp: continue to breakpoint 30
PASS -> UNRESOLVED: gdb.threads/multi-create.exp: continue to breakpoint 31
PASS -> UNRESOLVED: gdb.threads/multi-create.exp: continue to breakpoint 4
PASS -> UNRESOLVED: gdb.threads/multi-create.exp: continue to breakpoint 5
PASS -> UNRESOLVED: gdb.threads/multi-create.exp: continue to breakpoint 6
PASS -> UNRESOLVED: gdb.threads/multi-create.exp: continue to breakpoint 7
PASS -> UNRESOLVED: gdb.threads/multi-create.exp: continue to breakpoint 8
PASS -> UNRESOLVED: gdb.threads/multi-create.exp: continue to breakpoint 9
new UNRESOLVED: gdb.threads/multi-create.exp: setting breakpoint at multi-create.c:45
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=off: continue: continue
new UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=off: continue: setting breakpoint at 111
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=off: continue: thread 1
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=off: next: next
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=off: next: thread 1
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr1: continue to sigusr1_handler
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr1: queue-signal SIGUSR1
new UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr1: setting breakpoint at sigusr1_handler
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr1: switch back to thread 1
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr1: thread 1
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr2: continue to sigusr1_handler
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr2: queue-signal SIGUSR1
new UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr2: setting breakpoint at sigusr1_handler
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr2: switch back to thread 1
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr2: thread 2
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr3: continue to sigusr1_handler
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr3: queue-signal SIGUSR1
new UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr3: setting breakpoint at sigusr1_handler
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr3: switch back to thread 1
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr3: thread 3
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=off: step: step
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=off: step: thread 1
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=on: continue: continue
new UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=on: continue: setting breakpoint at 111
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=on: continue: thread 1
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=on: next: next
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=on: next: thread 1
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: continue to sigusr1_handler
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: queue-signal SIGUSR1
new UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setting breakpoint at sigusr1_handler
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: switch back to thread 1
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: thread 1
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: continue to sigusr1_handler
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: queue-signal SIGUSR1
new UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: setting breakpoint at sigusr1_handler
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: switch back to thread 1
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: thread 2
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: continue to sigusr1_handler
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: queue-signal SIGUSR1
new UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: setting breakpoint at sigusr1_handler
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: switch back to thread 1
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: thread 3
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=on: step: step
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=on: step: thread 1
new FAIL: gdb.threads/multiple-successive-infcall.exp: can't run to main
new FAIL: gdb.threads/next-while-other-thread-longjmps.exp: can't run to main
new FAIL: gdb.threads/non-ldr-exit.exp: can't run to main
new FAIL: gdb.threads/pending-step.exp: can't run to main
PASS -> UNRESOLVED: gdb.threads/print-threads.exp: all threads ran once
PASS -> UNRESOLVED: gdb.threads/print-threads.exp: break thread_function
new UNRESOLVED: gdb.threads/print-threads.exp: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.threads/print-threads.exp: set var slow = 0
PASS -> UNRESOLVED: gdb.threads/print-threads.exp: set var slow = 1
new UNRESOLVED: gdb.threads/print-threads.exp: setting breakpoint at kill
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: detach: can't run to main
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: killed outside: can't run to main
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: can't run to main
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: detach: can't run to main
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: killed outside: can't run to main
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: can't run to main
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: detach: can't run to main
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: killed outside: can't run to main
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: can't run to main
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: detach: detach: can't run to main
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: detach: killed outside: can't run to main
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: detach: watchpoint: can't run to main
new FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: can't run to main
new FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: can't run to main
new FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: can't run to main
new FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: can't run to main
PASS -> UNRESOLVED: gdb.threads/pthread_cond_wait.exp: backtrace in blocked thread
PASS -> UNRESOLVED: gdb.threads/pthread_cond_wait.exp: breakpoint on break_me
PASS -> UNRESOLVED: gdb.threads/pthread_cond_wait.exp: run to break_me
new FAIL: gdb.threads/queue-signal.exp: can't run to main
new FAIL: gdb.threads/reconnect-signal.exp: can't run to main
PASS -> FAIL: gdb.threads/schedlock.exp: all threads alive
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: continue
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: continue to breakpoint: all threads started
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: continue to breakpoint: return to loop
new UNRESOLVED: gdb.threads/schedlock.exp: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: listed args
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=0: continue to breakpoint: return to loop
new UNRESOLVED: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=0: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=0: find current thread
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=0: listed args
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=0: next to increment
PASS -> FAIL: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=0: other threads ran - unlocked
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=0: print call_function = 0
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=0: set scheduler-locking off
new UNRESOLVED: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=0: setting breakpoint at 80 if arg != 0
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=1: continue to breakpoint: return to loop
new UNRESOLVED: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=1: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=1: find current thread
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=1: listed args
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=1: next to increment
PASS -> FAIL: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=1: other threads ran - unlocked
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=1: print call_function = 1
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=1: set scheduler-locking off
new UNRESOLVED: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=1: setting breakpoint at 80 if arg != 0
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=off: cmd=step: continue to breakpoint: return to loop
new UNRESOLVED: gdb.threads/schedlock.exp: schedlock=off: cmd=step: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=off: cmd=step: find current thread
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=off: cmd=step: listed args
PASS -> FAIL: gdb.threads/schedlock.exp: schedlock=off: cmd=step: other threads ran - unlocked
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=off: cmd=step: print call_function = 0
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=off: cmd=step: set scheduler-locking off
new UNRESOLVED: gdb.threads/schedlock.exp: schedlock=off: cmd=step: setting breakpoint at 80 if arg != 0
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=off: cmd=step: step to increment
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=on: cmd=continue: continue
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=on: cmd=continue: continue to breakpoint: return to loop
new UNRESOLVED: gdb.threads/schedlock.exp: schedlock=on: cmd=continue: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=on: cmd=continue: find current thread
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=on: cmd=continue: listed args
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=on: cmd=continue: set scheduler-locking on
new UNRESOLVED: gdb.threads/schedlock.exp: schedlock=on: cmd=continue: setting breakpoint at 80 if arg != 0
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=on: cmd=continue: stop all threads
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=on: cmd=next: call_function=0: continue to breakpoint: return to loop
new UNRESOLVED: gdb.threads/schedlock.exp: schedlock=on: cmd=next: call_function=0: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=on: cmd=next: call_function=0: find current thread
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=on: cmd=next: call_function=0: listed args
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=on: cmd=next: call_function=0: next to increment
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=on: cmd=next: call_function=0: print call_function = 0
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=on: cmd=next: call_function=0: set scheduler-locking off
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=on: cmd=next: call_function=0: set scheduler-locking on
new UNRESOLVED: gdb.threads/schedlock.exp: schedlock=on: cmd=next: call_function=0: setting breakpoint at 80 if arg != 0
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=on: cmd=next: call_function=1: continue to breakpoint: return to loop
new UNRESOLVED: gdb.threads/schedlock.exp: schedlock=on: cmd=next: call_function=1: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=on: cmd=next: call_function=1: find current thread
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=on: cmd=next: call_function=1: listed args
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=on: cmd=next: call_function=1: next to increment
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=on: cmd=next: call_function=1: print call_function = 1
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=on: cmd=next: call_function=1: set scheduler-locking off
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=on: cmd=next: call_function=1: set scheduler-locking on
new UNRESOLVED: gdb.threads/schedlock.exp: schedlock=on: cmd=next: call_function=1: setting breakpoint at 80 if arg != 0
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=on: cmd=step: continue to breakpoint: return to loop
new UNRESOLVED: gdb.threads/schedlock.exp: schedlock=on: cmd=step: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=on: cmd=step: find current thread
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=on: cmd=step: listed args
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=on: cmd=step: print call_function = 0
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=on: cmd=step: set scheduler-locking off
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=on: cmd=step: set scheduler-locking on
new UNRESOLVED: gdb.threads/schedlock.exp: schedlock=on: cmd=step: setting breakpoint at 80 if arg != 0
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=on: cmd=step: step to increment
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=step: cmd=next: call_function=0: continue to breakpoint: return to loop
new UNRESOLVED: gdb.threads/schedlock.exp: schedlock=step: cmd=next: call_function=0: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=step: cmd=next: call_function=0: find current thread
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=step: cmd=next: call_function=0: listed args
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=step: cmd=next: call_function=0: next to increment
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=step: cmd=next: call_function=0: print call_function = 0
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=step: cmd=next: call_function=0: set scheduler-locking off
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=step: cmd=next: call_function=0: set scheduler-locking step
new UNRESOLVED: gdb.threads/schedlock.exp: schedlock=step: cmd=next: call_function=0: setting breakpoint at 80 if arg != 0
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=step: cmd=next: call_function=1: continue to breakpoint: return to loop
new UNRESOLVED: gdb.threads/schedlock.exp: schedlock=step: cmd=next: call_function=1: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=step: cmd=next: call_function=1: find current thread
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=step: cmd=next: call_function=1: listed args
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=step: cmd=next: call_function=1: next to increment
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=step: cmd=next: call_function=1: print call_function = 1
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=step: cmd=next: call_function=1: set scheduler-locking off
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=step: cmd=next: call_function=1: set scheduler-locking step
new UNRESOLVED: gdb.threads/schedlock.exp: schedlock=step: cmd=next: call_function=1: setting breakpoint at 80 if arg != 0
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=step: cmd=step: continue to breakpoint: return to loop
new UNRESOLVED: gdb.threads/schedlock.exp: schedlock=step: cmd=step: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=step: cmd=step: find current thread
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=step: cmd=step: listed args
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=step: cmd=step: print call_function = 0
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=step: cmd=step: set scheduler-locking off
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=step: cmd=step: set scheduler-locking step
new UNRESOLVED: gdb.threads/schedlock.exp: schedlock=step: cmd=step: setting breakpoint at 80 if arg != 0
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: schedlock=step: cmd=step: step to increment
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: scheduler locking set to none
new UNRESOLVED: gdb.threads/schedlock.exp: setting breakpoint at 44
new UNRESOLVED: gdb.threads/schedlock.exp: setting breakpoint at 80 if arg != 0
PASS -> UNRESOLVED: gdb.threads/schedlock.exp: stop all threads
new FAIL: gdb.threads/signal-command-handle-nopass.exp: step-over no: can't run to main
new FAIL: gdb.threads/signal-command-handle-nopass.exp: step-over yes: can't run to main
new FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock off: can't run to main
new FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock on: can't run to main
new FAIL: gdb.threads/signal-delivered-right-thread.exp: continue: can't run to main
new FAIL: gdb.threads/signal-delivered-right-thread.exp: signal 0: can't run to main
new FAIL: gdb.threads/signal-sigtrap.exp: sigtrap thread 1: can't run to thread_function
new FAIL: gdb.threads/signal-sigtrap.exp: sigtrap thread 2: can't run to thread_function
new FAIL: gdb.threads/sigthread.exp: can't run to main
new UNRESOLVED: gdb.threads/staticthreads.exp:
PASS -> UNRESOLVED: gdb.threads/staticthreads.exp: GDB exits with static thread program
PASS -> UNRESOLVED: gdb.threads/staticthreads.exp: break sem_post
PASS -> UNRESOLVED: gdb.threads/staticthreads.exp: continue to main's call of sem_post
PASS -> UNRESOLVED: gdb.threads/staticthreads.exp: handle SIG32 helps
PASS -> UNRESOLVED: gdb.threads/staticthreads.exp: handle SIG32 nostop noprint pass
PASS -> UNRESOLVED: gdb.threads/staticthreads.exp: info threads
new FAIL: gdb.threads/stop-with-handle.exp: can't run to main
PASS -> UNRESOLVED: gdb.threads/switch-threads.exp: continue to breakpoint: continue to thread_func
PASS -> UNRESOLVED: gdb.threads/switch-threads.exp: next
new UNRESOLVED: gdb.threads/switch-threads.exp: setting breakpoint at thread_func
PASS -> UNRESOLVED: gdb.threads/thread-find.exp: collect thread id
PASS -> UNRESOLVED: gdb.threads/thread-find.exp: continue to breakpoint: main thread's sleep
PASS -> UNRESOLVED: gdb.threads/thread-find.exp: find thread name 1
PASS -> UNRESOLVED: gdb.threads/thread-find.exp: find thread name 2
PASS -> UNRESOLVED: gdb.threads/thread-find.exp: find thread name 3
PASS -> UNRESOLVED: gdb.threads/thread-find.exp: find thread name 4
PASS -> UNRESOLVED: gdb.threads/thread-find.exp: find thread name 5
PASS -> UNRESOLVED: gdb.threads/thread-find.exp: find thread name 6
PASS -> UNRESOLVED: gdb.threads/thread-find.exp: info thread foo
PASS -> UNRESOLVED: gdb.threads/thread-find.exp: info thread foo -1
PASS -> UNRESOLVED: gdb.threads/thread-find.exp: info threads 2 4 6
PASS -> UNRESOLVED: gdb.threads/thread-find.exp: info threads 3-3
PASS -> UNRESOLVED: gdb.threads/thread-find.exp: info threads 3-5
PASS -> UNRESOLVED: gdb.threads/thread-find.exp: name thread 1
PASS -> UNRESOLVED: gdb.threads/thread-find.exp: name thread 2
PASS -> UNRESOLVED: gdb.threads/thread-find.exp: name thread 3
PASS -> UNRESOLVED: gdb.threads/thread-find.exp: name thread 4
PASS -> UNRESOLVED: gdb.threads/thread-find.exp: name thread 5
PASS -> UNRESOLVED: gdb.threads/thread-find.exp: name thread 6
PASS -> UNRESOLVED: gdb.threads/thread-find.exp: no thread
new UNRESOLVED: gdb.threads/thread-find.exp: setting breakpoint at 199
PASS -> UNRESOLVED: gdb.threads/thread-find.exp: test inverted range
PASS -> UNRESOLVED: gdb.threads/thread-find.exp: test regular exp
PASS -> UNRESOLVED: gdb.threads/thread-specific.exp: continue to breakpoint: all threads started
PASS -> UNRESOLVED: gdb.threads/thread-specific.exp: get threads list
new UNRESOLVED: gdb.threads/thread-specific.exp: setting breakpoint at 39
new FAIL: gdb.threads/thread-unwindonsignal.exp: can't run to main
new FAIL: gdb.threads/thread_check.exp: can't run to main
new FAIL: gdb.threads/threadapply.exp: can't run to main
PASS -> UNRESOLVED: gdb.threads/threxit-hop-specific.exp: continue to thread start
PASS -> UNRESOLVED: gdb.threads/threxit-hop-specific.exp: get past the thread specific breakpoint
PASS -> UNRESOLVED: gdb.threads/threxit-hop-specific.exp: set thread specific breakpoint
new UNRESOLVED: gdb.threads/threxit-hop-specific.exp: setting breakpoint at 47
new UNRESOLVED: gdb.threads/threxit-hop-specific.exp: setting breakpoint at thread_function
new FAIL: gdb.threads/tid-reuse.exp: can't run to main
PASS -> UNRESOLVED: gdb.threads/tls-core.exp: gcore
PASS -> UNRESOLVED: gdb.threads/tls-core.exp: native: load core file
new FAIL: gdb.threads/tls-nodebug.exp: can't run to main
new FAIL: gdb.threads/tls-shared.exp: can't run to main
new FAIL: gdb.threads/tls-so_extern.exp: can't run to main
new FAIL: gdb.threads/tls.exp: can't run to main
new FAIL: gdb.threads/vfork-follow-child-exec.exp: detach-on-fork=off: can't run to main
new FAIL: gdb.threads/vfork-follow-child-exec.exp: detach-on-fork=on: can't run to main
new FAIL: gdb.threads/vfork-follow-child-exit.exp: detach-on-fork=off: can't run to main
new FAIL: gdb.threads/vfork-follow-child-exit.exp: detach-on-fork=on: can't run to main
new FAIL: gdb.threads/watchthreads.exp: can't run to main
new FAIL: gdb.threads/watchthreads2.exp: can't run to main
new FAIL: gdb.threads/wp-replication.exp: failed to run to main
new FAIL: gdb.trace/actions-changed.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/actions.exp: setting tracepoints
new UNRESOLVED: gdb.trace/actions.exp: trace 71
new UNRESOLVED: gdb.trace/actions.exp: trace gdb_asm_test
new UNRESOLVED: gdb.trace/actions.exp: trace gdb_c_test
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent &gdb_long_test < &gdb_short_test
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent &gdb_long_test == &gdb_short_test
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent 12
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent gdb_arr_test[12]
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent gdb_arr_test[gdb_short_test]
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent gdb_char_test
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent gdb_long_test != gdb_short_test
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent gdb_long_test * gdb_short_test
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent gdb_long_test + gdb_short_test
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent gdb_long_test - gdb_short_test
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent gdb_long_test / gdb_short_test
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent gdb_long_test < gdb_short_test
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent gdb_long_test <= gdb_short_test
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent gdb_long_test == gdb_short_test
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent gdb_long_test > gdb_short_test
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent gdb_long_test >= gdb_short_test
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent gdb_struct1_test
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent gdb_struct1_test.arr[gdb_struct1_test.c]
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent gdb_struct1_test.s
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent gdb_structp_test
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent gdb_structp_test + 1
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent gdb_structp_test->bfield
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent gdb_structp_test->l
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent-eval &gdb_long_test < &gdb_short_test
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent-eval &gdb_long_test == &gdb_short_test
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent-eval 12
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent-eval gdb_arr_test[12]
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent-eval gdb_arr_test[gdb_short_test]
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent-eval gdb_char_test
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent-eval gdb_long_test != gdb_short_test
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent-eval gdb_long_test * gdb_short_test
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent-eval gdb_long_test + gdb_short_test
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent-eval gdb_long_test - gdb_short_test
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent-eval gdb_long_test / gdb_short_test
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent-eval gdb_long_test < gdb_short_test
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent-eval gdb_long_test <= gdb_short_test
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent-eval gdb_long_test == gdb_short_test
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent-eval gdb_long_test > gdb_short_test
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent-eval gdb_long_test >= gdb_short_test
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent-eval gdb_struct1_test
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent-eval gdb_struct1_test.arr[gdb_struct1_test.c]
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent-eval gdb_struct1_test.s
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent-eval gdb_structp_test
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent-eval gdb_structp_test + 1
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent-eval gdb_structp_test->bfield
PASS -> UNRESOLVED: gdb.trace/ax.exp: maint agent-eval gdb_structp_test->l
new FAIL: gdb.trace/backtrace.exp: can't run to main to check for trace support
new FAIL: gdb.trace/change-loc.exp: can't run to main to check for trace support
new FAIL: gdb.trace/circ.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/collection.exp: current target does not support trace
PASS -> UNRESOLVED: gdb.trace/deltrace.exp: 3.1a: set three tracepoints
PASS -> UNRESOLVED: gdb.trace/deltrace.exp: 3.1b: delete all tracepoints
PASS -> UNRESOLVED: gdb.trace/deltrace.exp: set tracepoint 1
PASS -> UNRESOLVED: gdb.trace/deltrace.exp: set tracepoint 2
PASS -> UNRESOLVED: gdb.trace/deltrace.exp: set tracepoint 3
new UNRESOLVED: gdb.trace/deltrace.exp: setting tracepoints
new UNRESOLVED: gdb.trace/deltrace.exp: trace 68
new UNRESOLVED: gdb.trace/deltrace.exp: trace gdb_asm_test
new UNRESOLVED: gdb.trace/deltrace.exp: trace gdb_c_test
new FAIL: gdb.trace/disconnected-tracing.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/entry-values.exp: disassemble bar
new FAIL: gdb.trace/ftrace-lock.exp: can't run to main to check for trace support
new FAIL: gdb.trace/ftrace.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/infotrace.exp: setting tracepoints
new UNRESOLVED: gdb.trace/infotrace.exp: trace gdb_asm_test
new UNRESOLVED: gdb.trace/infotrace.exp: trace gdb_c_test
new FAIL: gdb.trace/mi-trace-frame-collected.exp: can't run to main to check for trace support
new FAIL: gdb.trace/mi-trace-unavailable.exp: can't run to main to check for trace support
new FAIL: gdb.trace/mi-traceframe-changed.exp: can't run to main to check for trace support
PASS -> UNRESOLVED: gdb.trace/mi-traceframe-changed.exp: tfile: -trace-find frame-number 0
PASS -> UNRESOLVED: gdb.trace/mi-traceframe-changed.exp: tfile: select trace file
PASS -> UNRESOLVED: gdb.trace/mi-traceframe-changed.exp: tfile: tfind 0
PASS -> UNRESOLVED: gdb.trace/mi-traceframe-changed.exp: tfile: tfind 0 again
PASS -> UNRESOLVED: gdb.trace/mi-traceframe-changed.exp: tfile: tfind end
new FAIL: gdb.trace/mi-tracepoint-changed.exp: can't run to main to check for trace support
new FAIL: gdb.trace/mi-tsv-changed.exp: can't run to main to check for trace support
new FAIL: gdb.trace/mi-tsv-changed.exp: create delete modify: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/packetlen.exp: current target does not support trace
new UNRESOLVED: gdb.trace/passc-dyn.exp: current target does not support trace
new UNRESOLVED: gdb.trace/passcount.exp: setting tracepoints
new UNRESOLVED: gdb.trace/passcount.exp: trace 67
new UNRESOLVED: gdb.trace/passcount.exp: trace gdb_asm_test
new UNRESOLVED: gdb.trace/passcount.exp: trace gdb_c_test
new FAIL: gdb.trace/pending.exp: can't run to main to check for trace support
new FAIL: gdb.trace/pr16508.exp: can't run to main to check for trace support
new FAIL: gdb.trace/qtro.exp: can't run to main to check for trace support
new FAIL: gdb.trace/range-stepping.exp: can't run to main to check for trace support
new FAIL: gdb.trace/read-memory.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/report.exp: current target does not support trace
PASS -> UNRESOLVED: gdb.trace/save-trace.exp: absolute: clear default-collect
PASS -> UNRESOLVED: gdb.trace/save-trace.exp: absolute: delete tracepoints
PASS -> UNRESOLVED: gdb.trace/save-trace.exp: absolute: read back saved tracepoints
PASS -> UNRESOLVED: gdb.trace/save-trace.exp: absolute: save tracepoint definitions
PASS -> UNRESOLVED: gdb.trace/save-trace.exp: absolute: verify default-collect
PASS -> UNRESOLVED: gdb.trace/save-trace.exp: relative: clear default-collect
PASS -> UNRESOLVED: gdb.trace/save-trace.exp: relative: delete tracepoints
PASS -> UNRESOLVED: gdb.trace/save-trace.exp: relative: read back saved tracepoints
PASS -> UNRESOLVED: gdb.trace/save-trace.exp: relative: save tracepoint definitions
PASS -> UNRESOLVED: gdb.trace/save-trace.exp: relative: verify default-collect
PASS -> UNRESOLVED: gdb.trace/save-trace.exp: set a fast tracepoint
PASS -> UNRESOLVED: gdb.trace/save-trace.exp: set actions for tracepoint 1
PASS -> UNRESOLVED: gdb.trace/save-trace.exp: set actions for tracepoint 2
PASS -> UNRESOLVED: gdb.trace/save-trace.exp: set actions for tracepoint 3
PASS -> UNRESOLVED: gdb.trace/save-trace.exp: set actions for tracepoint 4
PASS -> UNRESOLVED: gdb.trace/save-trace.exp: set actions for tracepoint 5
PASS -> UNRESOLVED: gdb.trace/save-trace.exp: set actions for tracepoint 6
new UNRESOLVED: gdb.trace/save-trace.exp: set condition for tracepoint -1
PASS -> UNRESOLVED: gdb.trace/save-trace.exp: set default-collect
new UNRESOLVED: gdb.trace/save-trace.exp: set passcount for tracepoint -1
new UNRESOLVED: gdb.trace/save-trace.exp: trace 68
new UNRESOLVED: gdb.trace/save-trace.exp: trace 69
new UNRESOLVED: gdb.trace/save-trace.exp: trace 70
new UNRESOLVED: gdb.trace/save-trace.exp: trace 71
new UNRESOLVED: gdb.trace/save-trace.exp: trace 72
new UNRESOLVED: gdb.trace/save-trace.exp: trace 73
PASS -> UNRESOLVED: gdb.trace/save-trace.exp: verify default-collect
PASS -> UNRESOLVED: gdb.trace/save-trace.exp: verify help save tracepoints
new FAIL: gdb.trace/signal.exp: can't run to main to check for trace support
new FAIL: gdb.trace/status-stop.exp: can't run to main to check for trace support
PASS -> UNRESOLVED: gdb.trace/tfile.exp: -trace-status
PASS -> UNRESOLVED: gdb.trace/tfile.exp: complete-command 'target tfile'
PASS -> UNRESOLVED: gdb.trace/tfile.exp: disassemble main
PASS -> UNRESOLVED: gdb.trace/tfile.exp: info tracepoints on trace file
PASS -> UNRESOLVED: gdb.trace/tfile.exp: interpreter-exec mi "-target-select tfile tfile-basic.tf"
PASS -> UNRESOLVED: gdb.trace/tfile.exp: leave tfind mode
PASS -> UNRESOLVED: gdb.trace/tfile.exp: no registers if no traceframe selected
PASS -> UNRESOLVED: gdb.trace/tfile.exp: no stack if no traceframe selected
PASS -> UNRESOLVED: gdb.trace/tfile.exp: print constglob on trace file
PASS -> UNRESOLVED: gdb.trace/tfile.exp: print nonconstglob on trace file
PASS -> UNRESOLVED: gdb.trace/tfile.exp: print testglob on trace file
PASS -> UNRESOLVED: gdb.trace/tfile.exp: print testglob2 on trace file
new UNRESOLVED: gdb.trace/tfile.exp: show editing
PASS -> UNRESOLVED: gdb.trace/tfile.exp: target tfile tfile-basic.tf
PASS -> UNRESOLVED: gdb.trace/tfile.exp: target tfile tfile-error.tf
PASS -> UNRESOLVED: gdb.trace/tfile.exp: tfind 0 on trace file
PASS -> UNRESOLVED: gdb.trace/tfile.exp: tfind does not find a second frame in trace file
PASS -> UNRESOLVED: gdb.trace/tfile.exp: tstatus on error trace file
PASS -> UNRESOLVED: gdb.trace/tfile.exp: tstatus on trace file
new UNRESOLVED: gdb.trace/tfind.exp: current target does not support trace
new FAIL: gdb.trace/trace-break.exp: can't run to main to check for trace support
new FAIL: gdb.trace/trace-buffer-size.exp: can't run to main to check for trace support
new FAIL: gdb.trace/trace-condition.exp: can't run to main to check for trace support
new FAIL: gdb.trace/trace-enable-disable.exp: can't run to main to check for trace support
new FAIL: gdb.trace/trace-mt.exp: can't run to main to check for trace support
PASS -> UNRESOLVED: gdb.trace/tracecmd.exp: 1.1a: set tracepoint at sourceline
PASS -> UNRESOLVED: gdb.trace/tracecmd.exp: 1.1b: trace sourcefile:line
PASS -> UNRESOLVED: gdb.trace/tracecmd.exp: 1.2a: trace invalid line in sourcefile
PASS -> UNRESOLVED: gdb.trace/tracecmd.exp: 1.2b: reject invalid line in srcfile
PASS -> UNRESOLVED: gdb.trace/tracecmd.exp: 1.3a: trace invalid source file
PASS -> UNRESOLVED: gdb.trace/tracecmd.exp: 1.3b: reject invalid srcfile
PASS -> UNRESOLVED: gdb.trace/tracecmd.exp: 1.4a: trace function by name
PASS -> UNRESOLVED: gdb.trace/tracecmd.exp: 1.4b: trace function by name
PASS -> UNRESOLVED: gdb.trace/tracecmd.exp: 1.5a: trace invalid function
PASS -> UNRESOLVED: gdb.trace/tracecmd.exp: 1.5b: reject invalid srcfile
new UNRESOLVED: gdb.trace/tracecmd.exp: print gdb_asm_test
PASS -> UNRESOLVED: gdb.trace/tracecmd.exp: set breakpoint pending off
new FAIL: gdb.trace/tspeed.exp: can't run to main to check for trace support
new FAIL: gdb.trace/tstatus.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/tsv.exp: current target does not support trace
new UNRESOLVED: gdb.trace/unavailable.exp: current target does not support trace
new UNRESOLVED: gdb.trace/while-dyn.exp: current target does not support trace
new UNRESOLVED: gdb.trace/while-stepping.exp: could not find gdb_c_test function
new UNRESOLVED: gdb.trace/while-stepping.exp: trace gdb_c_test
PASS -> FAIL: gdb.tui/basic.exp: asm box in split layout
PASS -> UNRESOLVED: gdb.tui/basic.exp: asm window shows main
PASS -> UNRESOLVED: gdb.tui/basic.exp: list main
PASS -> FAIL: gdb.tui/basic.exp: source box in split layout
PASS -> UNRESOLVED: gdb.tui/basic.exp: split layout contents
PASS -> FAIL: gdb.tui/list.exp: asm window shows main
PASS -> UNRESOLVED: gdb.tui/list.exp: list main
PASS -> UNRESOLVED: gdb.tui/main.exp: show main after file
new FAIL: gdb.tui/tui-layout.exp: execution=1: layout=asm: can't run to main
new FAIL: gdb.tui/tui-layout.exp: execution=1: layout=reg: can't run to main
new FAIL: gdb.tui/tui-layout.exp: execution=1: layout=split: can't run to main
new FAIL: gdb.tui/tui-layout.exp: execution=1: layout=src: can't run to main
==============================================

*** 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/39/39ef2f6256737db92f5d60fa201fe0b301bb8100//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/39/39ef2f6256737db92f5d60fa201fe0b301bb8100//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-23  3:01 [binutils-gdb] [bfd] Revise import stubs on hppa gdb-buildbot
@ 2019-10-23  3:01 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-23  3:01 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/993

Author:
        John David Anglin <danglin@gcc.gnu.org>

Commit tested:
        18338fcee6c75bf0b41f803b84ae15221676f8cd

Subject of commit:
        	[bfd] Revise import stubs on hppa.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/18/18338fcee6c75bf0b41f803b84ae15221676f8cd/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: check_pc_after_cross_syscall: single step over fork final pc
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/Ubuntu-Aarch64-native-gdbserver-m64/18/18338fcee6c75bf0b41f803b84ae15221676f8cd//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/18/18338fcee6c75bf0b41f803b84ae15221676f8cd//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-23  1:20 [binutils-gdb] [gdb] Fix more typos in comments gdb-buildbot
@ 2019-10-23  1:34 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-23  1:34 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/991

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        85102364b2d1845fe9ae7d70096671a3ea4bccf3

Subject of commit:
        [gdb] Fix more typos in comments

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/85/85102364b2d1845fe9ae7d70096671a3ea4bccf3/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
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/Ubuntu-Aarch64-native-gdbserver-m64/85/85102364b2d1845fe9ae7d70096671a3ea4bccf3//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/85/85102364b2d1845fe9ae7d70096671a3ea4bccf3//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-23  0:36 [binutils-gdb] RISC-V: Report unresolved relocation error via linker's callback function gdb-buildbot
@ 2019-10-23  0:50 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-23  0:50 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/990

Author:
        Jim Wilson <jimw@sifive.com>

Commit tested:
        330a6637a53d4b6694c9f8fa04155d4366453621

Subject of commit:
        RISC-V: Report unresolved relocation error via linker's callback function.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/33/330a6637a53d4b6694c9f8fa04155d4366453621/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: check_pc_after_cross_syscall: single step over fork final pc
==============================================

*** 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/33/330a6637a53d4b6694c9f8fa04155d4366453621//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/33/330a6637a53d4b6694c9f8fa04155d4366453621//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-22 23:32 [binutils-gdb] Fix creation of stamp-h by gdb's configure script gdb-buildbot
@ 2019-10-23  0:04 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-23  0:04 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/989

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        c5adaa1921c34d2b9711ec7cecd3cb4a253620db

Subject of commit:
        Fix creation of stamp-h by gdb's configure script

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/c5/c5adaa1921c34d2b9711ec7cecd3cb4a253620db/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
==============================================

*** 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/c5/c5adaa1921c34d2b9711ec7cecd3cb4a253620db//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/c5/c5adaa1921c34d2b9711ec7cecd3cb4a253620db//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-22 21:48 [binutils-gdb] [gdb] Fix typos in comments gdb-buildbot
@ 2019-10-22 22:36 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-22 22:36 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/987

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        405feb71d4733a36cdc0629e9e4ccecd1a40dc39

Subject of commit:
        [gdb] Fix typos in comments

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/40/405feb71d4733a36cdc0629e9e4ccecd1a40dc39/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 4
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
==============================================

*** 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/40/405feb71d4733a36cdc0629e9e4ccecd1a40dc39//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/40/405feb71d4733a36cdc0629e9e4ccecd1a40dc39//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-22 20:52 [binutils-gdb] [gdb/testsuite] Fix gdb.fortran/module.exp for debug info from other files gdb-buildbot
@ 2019-10-22 21:31 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-22 21:31 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/986

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        062f1fc13a075a34890988f3a396b5e58fc86396

Subject of commit:
        [gdb/testsuite] Fix gdb.fortran/module.exp for debug info from other files

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/06/062f1fc13a075a34890988f3a396b5e58fc86396/

*** Diff to previous build ***
==============================================
new FAIL: gdb.mi/mi-watch-nonstop.exp: resume 1
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================

*** 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/06/062f1fc13a075a34890988f3a396b5e58fc86396//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/06/062f1fc13a075a34890988f3a396b5e58fc86396//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-22 20:04 [binutils-gdb] PR29, Coreutils POSIX2_VERSION as 200112L gdb-buildbot
@ 2019-10-22 20:35 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-22 20:35 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/984

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        a315e14713de0a712382b3159507c16a0975a8d1

Subject of commit:
        PR29, Coreutils POSIX2_VERSION as 200112L

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/a3/a315e14713de0a712382b3159507c16a0975a8d1/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: check_pc_after_cross_syscall: single step over fork final pc
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/Ubuntu-Aarch64-native-gdbserver-m64/a3/a315e14713de0a712382b3159507c16a0975a8d1//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/a3/a315e14713de0a712382b3159507c16a0975a8d1//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-22 19:51 [binutils-gdb] Constify objfile::original_name gdb-buildbot
@ 2019-10-22 19:51 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-22 19:51 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/983

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        befcd486f467deb3a6a7576dc03bd40db3939ab6

Subject of commit:
        Constify objfile::original_name

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/be/befcd486f467deb3a6a7576dc03bd40db3939ab6/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 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/Ubuntu-Aarch64-native-gdbserver-m64/be/befcd486f467deb3a6a7576dc03bd40db3939ab6//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/be/befcd486f467deb3a6a7576dc03bd40db3939ab6//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-22 18:05 [binutils-gdb] gdb/fortran: Add test for module variables in 'info variables' output gdb-buildbot
@ 2019-10-22 19:08 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-22 19:08 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/982

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        0b54364d92d9cddb490f9291ec8eef11086b0917

Subject of commit:
        gdb/fortran: Add test for module variables in 'info variables' output

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/0b/0b54364d92d9cddb490f9291ec8eef11086b0917/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/0b/0b54364d92d9cddb490f9291ec8eef11086b0917//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/0b/0b54364d92d9cddb490f9291ec8eef11086b0917//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-22 16:25 [binutils-gdb] DWARF reader: Reject sections with invalid sizes gdb-buildbot
@ 2019-10-22 16:57 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-22 16:57 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/979

Author:
        Keith Seitz <keiths@redhat.com>

Commit tested:
        950b74950f6020eda38647f22e9077ac7f68ca49

Subject of commit:
        DWARF reader: Reject sections with invalid sizes

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/95/950b74950f6020eda38647f22e9077ac7f68ca49/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/95/950b74950f6020eda38647f22e9077ac7f68ca49//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/95/950b74950f6020eda38647f22e9077ac7f68ca49//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-22 15:36 [binutils-gdb] Add initial compile command support to RISC-V port gdb-buildbot
@ 2019-10-22 16:08 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-22 16:08 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/978

Author:
        Jim Wilson <jimw@sifive.com>

Commit tested:
        ff371ec99988662e16b061fe0f66e989340f129a

Subject of commit:
        Add initial compile command support to RISC-V port.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/ff/ff371ec99988662e16b061fe0f66e989340f129a/

*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/O2_float_param.exp: frame
new FAIL: gdb.ada/access_tagged_param.exp: continue
new KFAIL: gdb.ada/bad-task-bp-keyword.exp: break *break_me'address TASK Task TaSK 2
new FAIL: gdb.ada/interface.exp: print s
new FAIL: gdb.ada/iwide.exp: print My_Drawable
new FAIL: gdb.ada/iwide.exp: print d_access.all
new FAIL: gdb.ada/iwide.exp: print dp_access.all
new FAIL: gdb.ada/iwide.exp: print s_access.all
new FAIL: gdb.ada/iwide.exp: print sp_access.all
new FAIL: gdb.ada/mi_interface.exp: create ggg1 varobj
new FAIL: gdb.ada/mi_interface.exp: list ggg1's children
new FAIL: gdb.ada/ptype_tagged_param.exp: ptype s
new FAIL: gdb.ada/ref_param.exp: frame argument value printed
new FAIL: gdb.ada/set_pckd_arr_elt.exp: continue to update_small
new FAIL: gdb.ada/tagged.exp: print obj
new FAIL: gdb.ada/tagged.exp: ptype obj
new FAIL: gdb.ada/tagged_access.exp: ptype c.all
new FAIL: gdb.ada/tagged_access.exp: ptype c.menu_name
new KFAIL: gdb.base/argv0-symlink.exp: kept directory symbolic link name
new FAIL: gdb.base/break-probes.exp: ensure using probes
new FAIL: gdb.base/catch-syscall.exp: execve: continue to main
new FAIL: gdb.base/catch-syscall.exp: execve: continue until exit
new FAIL: gdb.base/catch-syscall.exp: execve: syscall execve has returned
new FAIL: gdb.base/compare-sections.exp: after reload: compare-sections
new FAIL: gdb.base/compare-sections.exp: after reload: compare-sections -r
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections -r
new FAIL: gdb.base/compare-sections.exp: compare-sections .text
new FAIL: gdb.base/compare-sections.exp: read-only: compare-sections -r
UNRESOLVED -> FAIL: gdb.base/default.exp: cd
new KFAIL: gdb.base/foll-vfork.exp: exit: vfork child follow, finish after tcatch vfork: finish
new KFAIL: gdb.base/info-macros.exp: info macros info-macros.c:42
new FAIL: gdb.base/interrupt-daemon.exp: bg: continue&
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt cmd stops process
new FAIL: gdb.base/interrupt-daemon.exp: fg: ctrl-c stops process
new FAIL: gdb.base/large-frame.exp: optimize=-O0: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O1: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O2: backtrace
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp_4_2_from_macscp3'
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_2_from_macscp3
new FAIL: gdb.base/nextoverexit.exp: next over exit
UNRESOLVED -> KFAIL: gdb.base/radix.exp: print 20.; expect 14; output radix 16
UNRESOLVED -> KFAIL: gdb.base/radix.exp: print 20.; expect 24; output radix 8
new KFAIL: gdb.base/sigbpt.exp: stepi bp at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before and at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi; stepi out of handler
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: continue to end of inf 2
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: continue to marker
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : vfork: continue to end of inf 2
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : vfork: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : vfork: continue to marker
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : vfork: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: continue to syscall insn vfork
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: single step over vfork
new FAIL: gdb.base/store.exp: upvar doublest l; print old r, expecting -2
new FAIL: gdb.base/store.exp: var doublest l; print old r, expecting -2
new KFAIL: gdb.base/utf8-identifiers.exp: tab complete "break fun"
new KFAIL: gdb.base/watchpoint-unaligned.exp: wpcount
new KFAIL: gdb.cp/local.exp: ptype InnerLocal::NestedInnerLocal
new FAIL: gdb.cp/no-dmgl-verbose.exp: setting breakpoint at 'f
new KFAIL: gdb.cp/oranking.exp: p foo0
new KFAIL: gdb.cp/oranking.exp: p foo10
new KFAIL: gdb.cp/oranking.exp: p foo11
new KFAIL: gdb.cp/oranking.exp: p foo13
new KFAIL: gdb.cp/oranking.exp: p foo14
new KFAIL: gdb.cp/oranking.exp: p foo2
new KFAIL: gdb.cp/rvalue-ref-overload.exp: rvalue reference overload
new KFAIL: gdb.cp/templates.exp: ptype fvpchar
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid
new KFAIL: gdb.cp/var-tag.exp: global collision: print global
new KFAIL: gdb.cp/virtfunc.exp: print pEe->D::vg
new FAIL: gdb.trace/change-loc.exp: 1 trace: continue to marker 2
new FAIL: gdb.trace/change-loc.exp: 1 trace: continue to marker 3
new FAIL: gdb.trace/change-loc.exp: 1 trace: tfind frame 0
new FAIL: gdb.trace/change-loc.exp: 1 trace: tracepoint with two locations - installed
new FAIL: gdb.trace/change-loc.exp: 1 trace: tracepoint with two locations - pending
new FAIL: gdb.trace/change-loc.exp: 2 trace: continue to marker 2
new FAIL: gdb.trace/change-loc.exp: 2 trace: continue to marker 3
new FAIL: gdb.trace/change-loc.exp: 2 trace: tfind frame 2
new FAIL: gdb.trace/change-loc.exp: 2 trace: tracepoint with two locations - installed
new FAIL: gdb.trace/change-loc.exp: 2 trace: tracepoint with two locations - pending
new FAIL: gdb.trace/pending.exp: ftrace installed_in_trace: continue to marker 2
new FAIL: gdb.trace/pending.exp: ftrace installed_in_trace: tfind test frame 0
new FAIL: gdb.trace/pending.exp: trace installed_in_trace: continue to marker 2
new FAIL: gdb.trace/pending.exp: trace installed_in_trace: tfind test frame 0
==============================================

*** 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/ff/ff371ec99988662e16b061fe0f66e989340f129a//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/ff/ff371ec99988662e16b061fe0f66e989340f129a//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-22 13:39 [binutils-gdb] Create xml-builtin.h to declare xml_builtins gdb-buildbot
@ 2019-10-22 15:24 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-22 15:24 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/977

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        fec4e896d6834bc6d23b9d666910dce43f2a2184

Subject of commit:
        Create xml-builtin.h to declare xml_builtins

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/fe/fec4e896d6834bc6d23b9d666910dce43f2a2184/

*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.cp/ref-params.exp: print value of f1 on Child& in f2
UNRESOLVED -> FAIL: gdb.cp/rvalue-ref-params.exp: print value of f1 on Child&& in f2
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: continue to func01
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: create varobj for ptr
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: get children of var1
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: mi: run to main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: mi: set print object on
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access array member
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access integer member
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access pointer member
new FAIL: gdb.mi/mi-async.exp: CLI next: send
new FAIL: gdb.mi/mi-async.exp: CLI next: stop
new FAIL: gdb.mi/mi-async.exp: restart: send
new FAIL: gdb.mi/mi-async.exp: restart: stop
new FAIL: gdb.mi/mi-async.exp: start: send
new FAIL: gdb.mi/mi-async.exp: start: stop
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: list of breakpoints
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: list of breakpoints
new FAIL: gdb.mi/mi-detach.exp: detach
new KFAIL: gdb.mi/mi-until.exp: until after while loop
new KFAIL: gdb.opt/inline-cmds.exp: next to second func1
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 2
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 3
new KFAIL: gdb.pascal/types.exp: pt 'a simple string'
new FAIL: gdb.server/ext-run.exp: get process list
new FAIL: gdb.server/solib-list.exp: non-stop 0: p libvar
new FAIL: gdb.server/solib-list.exp: non-stop 1: p libvar
new FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 4
new FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=3: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=4: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=5: created new thread
new KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: continue
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: server exits
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
new FAIL: gdb.threads/tls.exp: print a_thread_local
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_asm_test
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_c_test
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_recursion_test 0
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_asm_test
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_c_test
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_recursion_test 0
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local char
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local double
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local float
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local int
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member char
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member double
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member float
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member int
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #0
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #1
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #2
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #3
new FAIL: gdb.trace/collection.exp: collect register locals collectively: start trace experiment
new FAIL: gdb.trace/collection.exp: collect register locals collectively: tfind test frame
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local char
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local double
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local float
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local int
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member char
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member double
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member float
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member int
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #0
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #1
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #2
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #3
new FAIL: gdb.trace/collection.exp: collect register locals individually: define actions
new FAIL: gdb.trace/entry-values.exp: bt
new FAIL: gdb.trace/entry-values.exp: bt 1
new FAIL: gdb.trace/entry-values.exp: interpreter-exec mi "-stack-list-arguments --skip-unavailable --simple-values"
new FAIL: gdb.trace/signal.exp: tracepoint 4 hit 3 times
new FAIL: gdb.trace/signal.exp: tracepoint 5 hit 3 times
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: tfile: info locals
new FAIL: gdb.tui/resize.exp: source box after resize
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-gdbserver-m64/fe/fec4e896d6834bc6d23b9d666910dce43f2a2184//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/fe/fec4e896d6834bc6d23b9d666910dce43f2a2184//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-22 10:38 [binutils-gdb] libctf: mark swap.h inline functions as static gdb-buildbot
@ 2019-10-22 12:50 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-22 12:50 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/976

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        cbbbc402e059ee345cb781d3ceb757ae1cc679ee

Subject of commit:
        libctf: mark swap.h inline functions as static

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/cb/cbbbc402e059ee345cb781d3ceb757ae1cc679ee/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dwz.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dwz.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dwz.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: disassemble mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: p mymain_label - mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: x/2i mymain+
new UNRESOLVED: gdb.guile/scm-error.exp: backtrace printed
new UNRESOLVED: gdb.guile/scm-error.exp: error loading scm file caught
new UNRESOLVED: gdb.guile/scm-error.exp: error message printed
new UNRESOLVED: gdb.guile/scm-error.exp: guile
new UNRESOLVED: gdb.guile/scm-error.exp: no delayed error
new UNRESOLVED: gdb.guile/scm-error.exp: no error printed
new UNRESOLVED: gdb.guile/scm-error.exp: reset print-stack to default, post set/show tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to full, for backtrace test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error printing tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to none, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: source /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.guile/scm-error/scm-error-2.scm
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack full setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack none setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting of default
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to full
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to none
new UNRESOLVED: gdb.guile/scm-error.exp: verify guile support
new UNRESOLVED: gdb.python/py-completion.exp: check if python 3
new UNRESOLVED: gdb.python/py-completion.exp: show editing
new UNRESOLVED: gdb.python/py-completion.exp: verify python support
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER_UNLIMITED - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Throwing gdb parameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: Simple gdb booleanparameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: show parameter off
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: show parameter on
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test boolean parameter value is False
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test boolean parameter value is True
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test general help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test set help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test show help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: check if python 3
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value can be set to -1
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value is -1 after setting
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: Simple gdb booleanparameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: show parameter off
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: show parameter on
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test deprecated API parameter value is False
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test deprecated API parameter value is True
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test general help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test set help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test show help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: turn off parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: enum gdb parameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: set enum to two
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: set invalid enum parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: show parameter is initial value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: show parameter is new value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: test enum parameter value is one
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: test enum parameter value is two
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: file gdb parameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: set new file parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: set test-file-param
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: show initial file value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: show new file value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: test file parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: test new file parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: gdb.GdbError does not show Python stack
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python print
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -1
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -5
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER_UNLIMITED.value = -5
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: Simple gdb booleanparameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: show parameter off
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: show parameter on
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: test general help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: test really undocumented parameter value is False
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: test set help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: test show help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: turn off parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: Simple gdb booleanparameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: show parameter off
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: show parameter on
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: test general help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: test set help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: test show help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: test undocumented parameter value is False
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: verify python support
new UNRESOLVED: gdb.python/py-prettyprint.exp: check if python 3
new UNRESOLVED: gdb.python/py-prettyprint.exp: verify python support
==============================================

*** 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/cb/cbbbc402e059ee345cb781d3ceb757ae1cc679ee//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/cb/cbbbc402e059ee345cb781d3ceb757ae1cc679ee//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-22  7:13 [binutils-gdb] [gdb/tdep] Fix inferior call arg passing for amd64 gdb-buildbot
@ 2019-10-22  9:17 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-22  9:17 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/975

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        d10eccaa723e31689cdeadaea6bebabe2f63de34

Subject of commit:
        [gdb/tdep] Fix inferior call arg passing for amd64

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/d1/d10eccaa723e31689cdeadaea6bebabe2f63de34/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/enum_cond.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/siginfo-addr.exp: can't run to main
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p bar_label - bar
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p baz_label - baz
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_cold_label - foo_cold
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_label - foo
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p main_label - main
new UNRESOLVED: gdb.dwarf2/implref-array.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/implref-struct.exp: p main_label - main
new UNRESOLVED: gdb.guile/scm-objfile-script.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-objfile-script.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-objfile-script.exp: info auto-load guile-scripts
new UNRESOLVED: gdb.guile/scm-objfile-script.exp: set auto-load safe-path
new UNRESOLVED: gdb.guile/scm-objfile-script.exp: verify guile support
new UNRESOLVED: gdb.python/py-recurse-unwind.exp: can't run to main
==============================================

*** 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/d1/d10eccaa723e31689cdeadaea6bebabe2f63de34//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/d1/d10eccaa723e31689cdeadaea6bebabe2f63de34//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-22  4:05 [binutils-gdb] [gdb/tdep] Fix 'Unexpected register class' assert in amd64_push_arguments gdb-buildbot
@ 2019-10-22  6:24 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-22  6:24 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/974

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        745ff14e6e1b88f04eb447d4883fab81650f745f

Subject of commit:
        [gdb/tdep] Fix 'Unexpected register class' assert in amd64_push_arguments

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/74/745ff14e6e1b88f04eb447d4883fab81650f745f/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: x/2i main+
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: delete all breakpoints in delete_breakpoints
==============================================

*** 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/74/745ff14e6e1b88f04eb447d4883fab81650f745f//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/74/745ff14e6e1b88f04eb447d4883fab81650f745f//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-21 20:13 [binutils-gdb] gdb/gdbserver: Remove reference to vec-ipa.o gdb-buildbot
@ 2019-10-21 22:25 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-21 22:25 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/969

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        00975ff6eb19ea5c14acf354fe3677a68a9e7fa2

Subject of commit:
        gdb/gdbserver: Remove reference to vec-ipa.o

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/00/00975ff6eb19ea5c14acf354fe3677a68a9e7fa2/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.python/py-value.exp: can't run to main
==============================================

*** 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/00/00975ff6eb19ea5c14acf354fe3677a68a9e7fa2//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/00/00975ff6eb19ea5c14acf354fe3677a68a9e7fa2//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-21 10:00 [binutils-gdb] Rename pid -> tid in windows-nat.c gdb-buildbot
@ 2019-10-21 12:20 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-21 12:20 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/964

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        96b49c5ec0b40d7b6a396fdde0f34f73988e2392

Subject of commit:
        Rename pid -> tid in windows-nat.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/96/96b49c5ec0b40d7b6a396fdde0f34f73988e2392/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: disassemble mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: p mymain_label - mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: x/2i mymain+
==============================================

*** 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/96/96b49c5ec0b40d7b6a396fdde0f34f73988e2392//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/96/96b49c5ec0b40d7b6a396fdde0f34f73988e2392//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-21  7:16 [binutils-gdb] Change gcc_target_options to return std::string gdb-buildbot
@ 2019-10-21  9:33 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-21  9:33 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/963

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        953cff563058831ab0bf863c7655d23b5e6a5989

Subject of commit:
        Change gcc_target_options to return std::string

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/95/953cff563058831ab0bf863c7655d23b5e6a5989/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/frameapply.exp: can't run to setup_done
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER_UNLIMITED - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Throwing gdb parameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: Simple gdb booleanparameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: show parameter off
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: show parameter on
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test boolean parameter value is False
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test boolean parameter value is True
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test general help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test set help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test show help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: check if python 3
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value can be set to -1
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value is -1 after setting
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: Simple gdb booleanparameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: show parameter off
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: show parameter on
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test deprecated API parameter value is False
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test deprecated API parameter value is True
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test general help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test set help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test show help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: turn off parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: enum gdb parameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: set enum to two
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: set invalid enum parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: show parameter is initial value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: show parameter is new value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: test enum parameter value is one
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: test enum parameter value is two
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: file gdb parameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: set new file parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: set test-file-param
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: show initial file value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: show new file value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: test file parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: test new file parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: gdb.GdbError does not show Python stack
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python print
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -1
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -5
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER_UNLIMITED.value = -5
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: Simple gdb booleanparameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: show parameter off
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: show parameter on
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: test general help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: test really undocumented parameter value is False
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: test set help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: test show help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: turn off parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: Simple gdb booleanparameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: show parameter off
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: show parameter on
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: test general help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: test set help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: test show help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: test undocumented parameter value is False
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: verify python support
==============================================

*** 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/95/953cff563058831ab0bf863c7655d23b5e6a5989//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/95/953cff563058831ab0bf863c7655d23b5e6a5989//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-21  2:03 [binutils-gdb] Make tui-winsource not use breakpoint_chain gdb-buildbot
@ 2019-10-21  6:35 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-21  6:35 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/962

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        81e6b8eb208c427028d919afb2b5cabbc355fc88

Subject of commit:
        Make tui-winsource not use breakpoint_chain

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/81/81e6b8eb208c427028d919afb2b5cabbc355fc88/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/addr_arith.exp: compilation foo_na07_019.adb
PASS -> FAIL: gdb.ada/expr_delims.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/type_coercion.exp: compilation assign.adb
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: disassemble mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: p mymain_label - mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: x/2i mymain+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: x/2i main+
new UNRESOLVED: gdb.python/py-completion.exp: check if python 3
new UNRESOLVED: gdb.python/py-completion.exp: show editing
new UNRESOLVED: gdb.python/py-completion.exp: verify python support
new UNRESOLVED: gdb.python/py-prettyprint.exp: check if python 3
new UNRESOLVED: gdb.python/py-prettyprint.exp: verify python support
==============================================

*** 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/81/81e6b8eb208c427028d919afb2b5cabbc355fc88//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/81/81e6b8eb208c427028d919afb2b5cabbc355fc88//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-21  1:33 [binutils-gdb] Change iterate_over_breakpoints to take a function_view gdb-buildbot
@ 2019-10-21  5:46 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-21  5:46 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/961

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        95da600f404ca159242f49441d9b4ea78183852b

Subject of commit:
        Change iterate_over_breakpoints to take a function_view

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/95/95da600f404ca159242f49441d9b4ea78183852b/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.ada/addr_arith.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/expr_delims.exp: break foo.adb:23
new UNRESOLVED: gdb.ada/expr_delims.exp: check that watchpoint is set correctly.
new UNRESOLVED: gdb.ada/expr_delims.exp: combination of 'if' and 'thread' delimiters.
new UNRESOLVED: gdb.ada/expr_delims.exp: continue
new UNRESOLVED: gdb.ada/expr_delims.exp: delete 1
new UNRESOLVED: gdb.ada/expr_delims.exp: print variable 'thread'
new UNRESOLVED: gdb.ada/expr_delims.exp: set conditional watchpoint.
new UNRESOLVED: gdb.ada/expr_delims.exp: set plain watchpoint on variable 'thread'
new FAIL: gdb.ada/type_coercion.exp: p q
new FAIL: gdb.ada/type_coercion.exp: print {Integer} $addr
new FAIL: gdb.ada/type_coercion.exp: save q'address in convenience variable
new FAIL: gdb.ada/type_coercion.exp: set {Integer} $addr := 19
new UNRESOLVED: gdb.ada/watch_arg.exp: continuing to second breakpoint
new UNRESOLVED: gdb.ada/watch_arg.exp: continuing until watchpoint automatic deletion
new UNRESOLVED: gdb.ada/watch_arg.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/watch_arg.exp: insert second breakpoint in watch.adb
new UNRESOLVED: gdb.ada/watch_arg.exp: set watchpoint on function argument X
new UNRESOLVED: gdb.base/breakpoint-shadow.exp: start
new UNRESOLVED: gdb.base/print-file-var.exp: lang=c: hidden=0: dlopen=0: version_id_main=0: could not run to main
new UNRESOLVED: gdb.opt/inline-break.exp: cmd=break: could not run to main
new UNRESOLVED: gdb.python/py-recurse-unwind.exp: can't run to main
==============================================

*** 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/95/95da600f404ca159242f49441d9b4ea78183852b//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/95/95da600f404ca159242f49441d9b4ea78183852b//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-20 23:14 [binutils-gdb] m68hc1x: better arg checking for reloc_warning gdb-buildbot
@ 2019-10-21  0:03 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-21  0: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/960

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        9b142ddb4a115b6e58fabb05920bdd94811fda98

Subject of commit:
        m68hc1x: better arg checking for reloc_warning

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/9b/9b142ddb4a115b6e58fabb05920bdd94811fda98/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i main+
new UNRESOLVED: gdb.guile/guile.exp: collect help from uiout
new UNRESOLVED: gdb.guile/guile.exp: guile
new UNRESOLVED: gdb.guile/guile.exp: show guile command - define zzq
new UNRESOLVED: gdb.guile/guile.exp: source -s source2.scm
new UNRESOLVED: gdb.guile/guile.exp: source source2.scm
new UNRESOLVED: gdb.guile/guile.exp: verify guile support
new UNRESOLVED: gdb.guile/guile.exp: verify help to uiout
new UNRESOLVED: gdb.guile/scm-error.exp: backtrace printed
new UNRESOLVED: gdb.guile/scm-error.exp: error loading scm file caught
new UNRESOLVED: gdb.guile/scm-error.exp: error message printed
new UNRESOLVED: gdb.guile/scm-error.exp: guile
new UNRESOLVED: gdb.guile/scm-error.exp: no delayed error
new UNRESOLVED: gdb.guile/scm-error.exp: no error printed
new UNRESOLVED: gdb.guile/scm-error.exp: reset print-stack to default, post set/show tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to full, for backtrace test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error printing tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to none, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: source /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.guile/scm-error/scm-error-2.scm
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack full setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack none setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting of default
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to full
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to none
new UNRESOLVED: gdb.guile/scm-error.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-parameter.exp: Simple gdb boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: enum gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: error registering existing parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: file gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously ambiguously named boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set print s on
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: restricted gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: enum parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set invalid enum parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set print test-enum-param two
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: initial parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: new parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param bar.txt
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set print test-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 10
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 42
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: show test-restricted-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set print test-undoc-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: undocumented gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: verify guile support
==============================================

*** 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/9b/9b142ddb4a115b6e58fabb05920bdd94811fda98//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/9b/9b142ddb4a115b6e58fabb05920bdd94811fda98//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-20 18:53 [binutils-gdb] s390: Fix infcalls passing a single-field struct with static members gdb-buildbot
@ 2019-10-20 21:00 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-20 21:00 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/959

Author:
        Andreas Arnez <arnez@linux.ibm.com>

Commit tested:
        ba18312d8f2cecf88b6edcbc277f433a62131e58

Subject of commit:
        s390: Fix infcalls passing a single-field struct with static members

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/ba/ba18312d8f2cecf88b6edcbc277f433a62131e58/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/access_tagged_param.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/excep_handle.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/funcall_ptr.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/maint_with_ada.exp: compilation var_arr_typedef.adb
new UNRESOLVED: gdb.base/recpar.exp: could not run to main
new UNRESOLVED: gdb.base/siginfo-thread.exp: can't run to main
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: continue to func01
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: create varobj for ptr
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: get children of var1
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: mi: run to main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: mi: set print object on
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access array member
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access integer member
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access pointer member
new UNRESOLVED: gdb.guile/scm-gsmob.exp: gu
new UNRESOLVED: gdb.guile/scm-gsmob.exp: guile
new UNRESOLVED: gdb.guile/scm-gsmob.exp: object-properties
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: verify guile support
new UNRESOLVED: gdb.python/py-prettyprint.exp: check if python 3
new UNRESOLVED: gdb.python/py-prettyprint.exp: verify python support
new UNRESOLVED: gdb.python/py-symbol.exp: can't run to main
==============================================

*** 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/ba/ba18312d8f2cecf88b6edcbc277f433a62131e58//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/ba/ba18312d8f2cecf88b6edcbc277f433a62131e58//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-20 15:53 [binutils-gdb] remove more xmalloc in bfd gdb-buildbot
@ 2019-10-20 18:04 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-20 18:04 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/958

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        9a73315161bc07d958060847ae01996312e1b30f

Subject of commit:
        remove more xmalloc in bfd

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/9a/9a73315161bc07d958060847ae01996312e1b30f/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.ada/excep_handle.exp: cannot run to main, testcase aborted
new UNRESOLVED: gdb.ada/excep_handle.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/funcall_ptr.exp: Check that initial value of GA is null
new UNRESOLVED: gdb.ada/funcall_ptr.exp: Check that value of GA is 0x1234
new UNRESOLVED: gdb.ada/funcall_ptr.exp: call pck.p
new UNRESOLVED: gdb.ada/funcall_ptr.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/maint_with_ada.exp: maintenance check-psymtabs
new UNRESOLVED: gdb.ada/maint_with_ada.exp: maintenance check-symtabs
new UNRESOLVED: gdb.ada/maint_with_ada.exp: setting breakpoint at Do_Nothing
new UNRESOLVED: gdb.ada/maint_with_ada.exp: setting breakpoint at Var_Arr_Typedef
new UNRESOLVED: gdb.ada/maint_with_ada.exp: setting breakpoint at adainit
new UNRESOLVED: gdb.ada/str_ref_cmp.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/str_ref_cmp.exp: operator = works for strings
new UNRESOLVED: gdb.ada/str_ref_cmp.exp: print String_Var
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: history entry is print 0
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: history entry is print 1
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: printing 0
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: printing 1
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: set history remove-duplicates 0
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 0
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 1
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 2
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 0
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 1
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 2
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: set history remove-duplicates 1
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 0
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 1
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 2
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 0
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 1
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 2
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: set history remove-duplicates 2
new UNRESOLVED: gdb.base/paginate-after-ctrl-c-running.exp: ctrlc target running: can't run to main
new UNRESOLVED: gdb.base/print-file-var.exp: lang=c: hidden=0: dlopen=0: version_id_main=0: could not run to main
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: disassemble mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: p mymain_label - mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: x/2i mymain+
new UNRESOLVED: gdb.guile/guile.exp: collect help from uiout
new UNRESOLVED: gdb.guile/guile.exp: guile
new UNRESOLVED: gdb.guile/guile.exp: show guile command - define zzq
new UNRESOLVED: gdb.guile/guile.exp: source -s source2.scm
new UNRESOLVED: gdb.guile/guile.exp: source source2.scm
new UNRESOLVED: gdb.guile/guile.exp: verify guile support
new UNRESOLVED: gdb.guile/guile.exp: verify help to uiout
new UNRESOLVED: gdb.python/py-completion.exp: check if python 3
new UNRESOLVED: gdb.python/py-completion.exp: show editing
new UNRESOLVED: gdb.python/py-completion.exp: verify python support
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER_UNLIMITED - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Throwing gdb parameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: Simple gdb booleanparameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: show parameter off
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: show parameter on
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test boolean parameter value is False
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test boolean parameter value is True
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test general help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test set help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test show help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: check if python 3
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value can be set to -1
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value is -1 after setting
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: Simple gdb booleanparameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: show parameter off
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: show parameter on
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test deprecated API parameter value is False
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test deprecated API parameter value is True
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test general help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test set help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test show help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: turn off parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: enum gdb parameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: set enum to two
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: set invalid enum parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: show parameter is initial value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: show parameter is new value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: test enum parameter value is one
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: test enum parameter value is two
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: file gdb parameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: set new file parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: set test-file-param
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: show initial file value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: show new file value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: test file parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: test new file parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: gdb.GdbError does not show Python stack
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python print
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -1
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -5
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER_UNLIMITED.value = -5
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: Simple gdb booleanparameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: show parameter off
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: show parameter on
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: test general help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: test really undocumented parameter value is False
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: test set help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: test show help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: turn off parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: Simple gdb booleanparameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: show parameter off
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: show parameter on
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: test general help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: test set help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: test show help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: test undocumented parameter value is False
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: verify python support
==============================================

*** 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/9a/9a73315161bc07d958060847ae01996312e1b30f//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/9a/9a73315161bc07d958060847ae01996312e1b30f//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-20 12:48 [binutils-gdb] PR25100, Compile fails in elf64-ppc.c because of single equal sign instead of double equal for comparison gdb-buildbot
@ 2019-10-20 14:59 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-20 14:59 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/957

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        779f2ae733cc4b4da666a2405eb77ec70df2c772

Subject of commit:
        PR25100, Compile fails in elf64-ppc.c because of single equal sign instead of double equal for comparison

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/77/779f2ae733cc4b4da666a2405eb77ec70df2c772/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/assign_arr.exp: compilation main_p324_051.adb
PASS -> FAIL: gdb.ada/expr_with_funcall.exp: compilation expr_r821_013.adb
PASS -> FAIL: gdb.ada/iwide.exp: compilation p.adb
PASS -> FAIL: gdb.ada/packed_array_assign.exp: compilation tester.adb
PASS -> FAIL: gdb.ada/py_range.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/str_uninit.exp: compilation parse.adb
new UNRESOLVED: gdb.base/breakpoint-shadow.exp: start
new UNRESOLVED: gdb.python/py-recurse-unwind.exp: can't run to main
==============================================

*** 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/77/779f2ae733cc4b4da666a2405eb77ec70df2c772//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/77/779f2ae733cc4b4da666a2405eb77ec70df2c772//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-20  9:09 [binutils-gdb] Simplify power of two test gdb-buildbot
@ 2019-10-20 11:22 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-20 11:22 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/956

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        ed481f9799f2bd08a7541a5fe0a887dc5c7fd4a9

Subject of commit:
        Simplify power of two test

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/ed/ed481f9799f2bd08a7541a5fe0a887dc5c7fd4a9/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/arr_acc_idx_w_gap.exp: compilation enum_with_gap_main.adb
new UNRESOLVED: gdb.ada/assign_arr.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/assign_arr.exp: print assign_arr_input.u2 :=
PASS -> FAIL: gdb.ada/bad-task-bp-keyword.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/bp_reset.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/dyn_arrayidx.exp: compilation foo.adb
new FAIL: gdb.ada/expr_with_funcall.exp: print 1 + something
new FAIL: gdb.ada/expr_with_funcall.exp: print 246 - something
new FAIL: gdb.ada/expr_with_funcall.exp: print 3 * something
new FAIL: gdb.ada/expr_with_funcall.exp: print 496 / something
new FAIL: gdb.ada/expr_with_funcall.exp: print something
new FAIL: gdb.ada/expr_with_funcall.exp: print something * 3
new FAIL: gdb.ada/expr_with_funcall.exp: print something + 1
new FAIL: gdb.ada/expr_with_funcall.exp: print something - 2
new FAIL: gdb.ada/expr_with_funcall.exp: print something / 4
new UNRESOLVED: gdb.ada/iwide.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/iwide.exp: print My_Drawable
new UNRESOLVED: gdb.ada/iwide.exp: print d_access.all
new UNRESOLVED: gdb.ada/iwide.exp: print dp_access.all
new UNRESOLVED: gdb.ada/iwide.exp: print s_access.all
new UNRESOLVED: gdb.ada/iwide.exp: print sp_access.all
new UNRESOLVED: gdb.ada/mi_catch_ex.exp: cannot run to main, testcase aborted
new UNRESOLVED: gdb.ada/mi_catch_ex.exp: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.ada/optim_drec.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/packed_array_assign.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/packed_array_assign.exp: print npr :=
new UNRESOLVED: gdb.ada/packed_array_assign.exp: print pra :=
new UNRESOLVED: gdb.ada/packed_array_assign.exp: print pra
new UNRESOLVED: gdb.ada/py_range.exp: check if python 3
new UNRESOLVED: gdb.ada/py_range.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/py_range.exp: python print
new UNRESOLVED: gdb.ada/py_range.exp: verify python support
new UNRESOLVED: gdb.ada/str_uninit.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/frameapply.exp: can't run to setup_done
new UNRESOLVED: gdb.base/freebpcmd.exp: run program with breakpoint commands
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p g_label - g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i g+
new UNRESOLVED: gdb.dwarf2/dwz.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dwz.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dwz.exp: x/2i main+
new FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=0: -break-info
new UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=0: break add
new FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=1: -break-info
new UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=1: send -fix-multi-location-breakpoint-output
new FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=0: -break-info
new UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=0: break add
new FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=1: -break-info
new UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=1: send -fix-multi-location-breakpoint-output
new FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=0: -break-info
new UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=0: break add
new FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=1: -break-info
new UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=1: send -fix-multi-location-breakpoint-output
new UNRESOLVED: gdb.python/py-completion.exp: check if python 3
new UNRESOLVED: gdb.python/py-completion.exp: show editing
new UNRESOLVED: gdb.python/py-completion.exp: verify python support
new UNRESOLVED: gdb.python/py-prettyprint.exp: check if python 3
new UNRESOLVED: gdb.python/py-prettyprint.exp: verify python support
==============================================

*** 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/ed/ed481f9799f2bd08a7541a5fe0a887dc5c7fd4a9//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/ed/ed481f9799f2bd08a7541a5fe0a887dc5c7fd4a9//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-20  6:06 [binutils-gdb] [gdb/testsuite] Fix gdb.ada/mi_task_arg.exp gdb-buildbot
@ 2019-10-20  8:15 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-20  8:15 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/955

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        b7be2d03fb2f873e0db74c84846df97787fc0dc6

Subject of commit:
        [gdb/testsuite] Fix gdb.ada/mi_task_arg.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/b7/b7be2d03fb2f873e0db74c84846df97787fc0dc6/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.ada/bad-task-bp-keyword.exp: break *break_me'address TASK 2
new UNRESOLVED: gdb.ada/bad-task-bp-keyword.exp: break *break_me'address TASK Task TaSK 2
new UNRESOLVED: gdb.ada/bad-task-bp-keyword.exp: break *break_me'address TASK if
new UNRESOLVED: gdb.ada/bad-task-bp-keyword.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/bp_reset.exp: break do_nothing
new UNRESOLVED: gdb.ada/bp_reset.exp: break nested_sub
new UNRESOLVED: gdb.ada/dyn_arrayidx.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/dyn_arrayidx.exp: maintenance set ada ignore-descriptive-types
new UNRESOLVED: gdb.ada/dyn_arrayidx.exp: ptype array_type
new UNRESOLVED: gdb.ada/optim_drec.exp: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: history entry is print 0
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: history entry is print 1
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: printing 0
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: printing 1
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: set history remove-duplicates 0
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 0
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 1
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 2
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 0
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 1
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 2
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: set history remove-duplicates 1
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 0
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 1
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 2
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 0
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 1
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 2
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: set history remove-duplicates 2
new UNRESOLVED: gdb.base/info-types.exp: l=c: can't run to main
new UNRESOLVED: gdb.base/print-file-var.exp: lang=c: hidden=0: dlopen=0: version_id_main=0: could not run to main
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: disassemble mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: p mymain_label - mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: x/2i mymain+
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: x/2i main+
new UNRESOLVED: gdb.guile/guile.exp: collect help from uiout
new UNRESOLVED: gdb.guile/guile.exp: guile
new UNRESOLVED: gdb.guile/guile.exp: show guile command - define zzq
new UNRESOLVED: gdb.guile/guile.exp: source -s source2.scm
new UNRESOLVED: gdb.guile/guile.exp: source source2.scm
new UNRESOLVED: gdb.guile/guile.exp: verify guile support
new UNRESOLVED: gdb.guile/guile.exp: verify help to uiout
new UNRESOLVED: gdb.guile/scm-gsmob.exp: gu
new UNRESOLVED: gdb.guile/scm-gsmob.exp: guile
new UNRESOLVED: gdb.guile/scm-gsmob.exp: object-properties
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-parameter.exp: Simple gdb boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: enum gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: error registering existing parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: file gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously ambiguously named boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set print s on
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: restricted gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: enum parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set invalid enum parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set print test-enum-param two
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: initial parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: new parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param bar.txt
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set print test-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 10
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 42
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: show test-restricted-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set print test-undoc-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: undocumented gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: verify guile support
new UNRESOLVED: gdb.python/py-recurse-unwind.exp: can't run to main
==============================================

*** 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/b7/b7be2d03fb2f873e0db74c84846df97787fc0dc6//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/b7/b7be2d03fb2f873e0db74c84846df97787fc0dc6//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-20  3:13 [binutils-gdb] gdb.mi/list-thread-groups-available.exp: read entries one by one instead of increasing timeout gdb-buildbot
@ 2019-10-20  5:17 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-20  5:17 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/954

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        9223170f68f85787b9cd85e76d3bac3eaa69cafb

Subject of commit:
        gdb.mi/list-thread-groups-available.exp: read entries one by one instead of increasing timeout

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/92/9223170f68f85787b9cd85e76d3bac3eaa69cafb/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/breakpoint-shadow.exp: start
new UNRESOLVED: gdb.linespec/keywords.exp: can't run to main
new UNRESOLVED: gdb.python/py-value.exp: can't run to main
new FAIL: gdb.reverse/watch-reverse.exp: continue to breakpoint: marker1
new FAIL: gdb.reverse/watch-reverse.exp: continue to breakpoint: marker2
new FAIL: gdb.reverse/watch-reverse.exp: replay forward to marker2
new FAIL: gdb.reverse/watch-reverse.exp: set forward
new FAIL: gdb.reverse/watch-reverse.exp: set reverse, first time
new FAIL: gdb.reverse/watch-reverse.exp: set reverse, second time
new UNRESOLVED: gdb.reverse/watch-reverse.exp: turn on process record
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, HW, fifth time
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, HW, first time
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, HW, fourth time
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, HW, second time
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, HW, third time
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, fifth time
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, first time
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, fourth time
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, second time
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, third time
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, fifth time
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, first time
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, forward replay, fifth time
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, forward replay, first time
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, forward replay, fourth time
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, forward replay, second time
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, forward replay, third time
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, fourth time
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, second time
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, third time
==============================================

*** 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/92/9223170f68f85787b9cd85e76d3bac3eaa69cafb//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/92/9223170f68f85787b9cd85e76d3bac3eaa69cafb//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-20  0:10 [binutils-gdb] gdb: remove unused includes from dwarf2read.c gdb-buildbot
@ 2019-10-20  2:24 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-20  2:24 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/953

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        6acc1a0b9d3dd16741474891eddbf77415cd70b1

Subject of commit:
        gdb: remove unused includes from dwarf2read.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/6a/6acc1a0b9d3dd16741474891eddbf77415cd70b1/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/pkd_arr_elem.exp: compilation failure.adb
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: disassemble mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: p mymain_label - mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: x/2i mymain+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i main+
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: verify guile support
==============================================

*** 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/6a/6acc1a0b9d3dd16741474891eddbf77415cd70b1//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/6a/6acc1a0b9d3dd16741474891eddbf77415cd70b1//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-19 19:55 [binutils-gdb] qsort: syms.c stab sorting gdb-buildbot
@ 2019-10-19 22:14 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-19 22:14 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/952

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        47f6ff2f9e679cd1f7af6fecbba5f62daf3bee95

Subject of commit:
        qsort: syms.c stab sorting

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/47/47f6ff2f9e679cd1f7af6fecbba5f62daf3bee95/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.ada/pkd_arr_elem.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/pkd_arr_elem.exp: print test
new UNRESOLVED: gdb.ada/pkd_arr_elem.exp: print test.str
new UNRESOLVED: gdb.arch/aarch64-prologue.exp: could not run to main
new UNRESOLVED: gdb.base/shreloc.exp: can't run to main
new UNRESOLVED: gdb.base/step-break.exp: can't run to main
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p g_label - g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i g+
==============================================

*** 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/47/47f6ff2f9e679cd1f7af6fecbba5f62daf3bee95//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/47/47f6ff2f9e679cd1f7af6fecbba5f62daf3bee95//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-19 17:00 [binutils-gdb] qsort: dwarf2.c gdb-buildbot
@ 2019-10-19 19:17 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-19 19:17 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/951

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        8025b0554c5a2e2fe56b769fd556fe13268b4879

Subject of commit:
        qsort: dwarf2.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/80/8025b0554c5a2e2fe56b769fd556fe13268b4879/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.dwarf2/implptr-64bit.exp: failed to prepare
==============================================

*** 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/80/8025b0554c5a2e2fe56b769fd556fe13268b4879//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/80/8025b0554c5a2e2fe56b769fd556fe13268b4879//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-19  5:18 [binutils-gdb] qsort issues gdb-buildbot
@ 2019-10-19  7:36 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-19  7:36 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/947

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        dcea6a95d78370c8b4ac3c0033d9f15aaabf31bf

Subject of commit:
        qsort issues

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/dc/dcea6a95d78370c8b4ac3c0033d9f15aaabf31bf/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i main+
new UNRESOLVED: gdb.guile/guile.exp: collect help from uiout
new UNRESOLVED: gdb.guile/guile.exp: guile
new UNRESOLVED: gdb.guile/guile.exp: show guile command - define zzq
new UNRESOLVED: gdb.guile/guile.exp: source -s source2.scm
new UNRESOLVED: gdb.guile/guile.exp: source source2.scm
new UNRESOLVED: gdb.guile/guile.exp: verify guile support
new UNRESOLVED: gdb.guile/guile.exp: verify help to uiout
new UNRESOLVED: gdb.guile/scm-error.exp: backtrace printed
new UNRESOLVED: gdb.guile/scm-error.exp: error loading scm file caught
new UNRESOLVED: gdb.guile/scm-error.exp: error message printed
new UNRESOLVED: gdb.guile/scm-error.exp: guile
new UNRESOLVED: gdb.guile/scm-error.exp: no delayed error
new UNRESOLVED: gdb.guile/scm-error.exp: no error printed
new UNRESOLVED: gdb.guile/scm-error.exp: reset print-stack to default, post set/show tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to full, for backtrace test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error printing tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to none, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: source /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.guile/scm-error/scm-error-2.scm
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack full setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack none setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting of default
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to full
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to none
new UNRESOLVED: gdb.guile/scm-error.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-gsmob.exp: gu
new UNRESOLVED: gdb.guile/scm-gsmob.exp: guile
new UNRESOLVED: gdb.guile/scm-gsmob.exp: object-properties
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: verify guile support
new UNRESOLVED: gdb.python/py-completion.exp: check if python 3
new UNRESOLVED: gdb.python/py-completion.exp: show editing
new UNRESOLVED: gdb.python/py-completion.exp: verify python support
new UNRESOLVED: gdb.python/py-prettyprint.exp: check if python 3
new UNRESOLVED: gdb.python/py-prettyprint.exp: verify python support
==============================================

*** 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/dc/dcea6a95d78370c8b4ac3c0033d9f15aaabf31bf//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/dc/dcea6a95d78370c8b4ac3c0033d9f15aaabf31bf//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-19  2:13 [binutils-gdb] PR24955, libbfd terminating program on out of memory (part2) gdb-buildbot
@ 2019-10-19  4:35 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-19  4:35 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/946

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        ec9bd0a22dd42327ae9943937a96f1e865fb5d46

Subject of commit:
        PR24955, libbfd terminating program on out of memory (part2)

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/ec/ec9bd0a22dd42327ae9943937a96f1e865fb5d46/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/pending.exp:
new FAIL: gdb.base/pending.exp: continue to resolved breakpoint 1
new FAIL: gdb.base/pending.exp: continue to resolved breakpoint 2
new FAIL: gdb.base/pending.exp: continue to resolved breakpoint 3
new UNRESOLVED: gdb.base/pending.exp: run to resolved breakpoint 1
new UNRESOLVED: gdb.base/pending.exp: running to main
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p bar_label - bar
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p baz_label - baz
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_cold_label - foo_cold
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_label - foo
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p main_label - main
new UNRESOLVED: gdb.dwarf2/implref-struct.exp: p main_label - main
new UNRESOLVED: gdb.linespec/keywords.exp: can't run to main
new UNRESOLVED: gdb.python/py-recurse-unwind.exp: can't run to main
==============================================

*** 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/ec/ec9bd0a22dd42327ae9943937a96f1e865fb5d46//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/ec/ec9bd0a22dd42327ae9943937a96f1e865fb5d46//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-18 23:15 [binutils-gdb] gdb: Silence -Wformat-nonliteral warning with clang gdb-buildbot
@ 2019-10-19  1:35 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-19  1:35 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/945

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        284782de0750d6c0a24f2c8fd712b2954423e849

Subject of commit:
        gdb: Silence -Wformat-nonliteral warning with clang

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/28/284782de0750d6c0a24f2c8fd712b2954423e849/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.guile/guile.exp: collect help from uiout
new UNRESOLVED: gdb.guile/guile.exp: guile
new UNRESOLVED: gdb.guile/guile.exp: show guile command - define zzq
new UNRESOLVED: gdb.guile/guile.exp: source -s source2.scm
new UNRESOLVED: gdb.guile/guile.exp: source source2.scm
new UNRESOLVED: gdb.guile/guile.exp: verify guile support
new UNRESOLVED: gdb.guile/guile.exp: verify help to uiout
new UNRESOLVED: gdb.guile/scm-error.exp: backtrace printed
new UNRESOLVED: gdb.guile/scm-error.exp: error loading scm file caught
new UNRESOLVED: gdb.guile/scm-error.exp: error message printed
new UNRESOLVED: gdb.guile/scm-error.exp: guile
new UNRESOLVED: gdb.guile/scm-error.exp: no delayed error
new UNRESOLVED: gdb.guile/scm-error.exp: no error printed
new UNRESOLVED: gdb.guile/scm-error.exp: reset print-stack to default, post set/show tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to full, for backtrace test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error printing tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to none, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: source /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.guile/scm-error/scm-error-2.scm
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack full setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack none setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting of default
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to full
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to none
new UNRESOLVED: gdb.guile/scm-error.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-gsmob.exp: gu
new UNRESOLVED: gdb.guile/scm-gsmob.exp: guile
new UNRESOLVED: gdb.guile/scm-gsmob.exp: object-properties
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-parameter.exp: Simple gdb boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: enum gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: error registering existing parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: file gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously ambiguously named boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set print s on
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: restricted gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: enum parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set invalid enum parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set print test-enum-param two
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: initial parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: new parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param bar.txt
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set print test-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 10
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 42
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: show test-restricted-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set print test-undoc-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: undocumented gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: verify guile support
new UNRESOLVED: gdb.python/py-prettyprint.exp: check if python 3
new UNRESOLVED: gdb.python/py-prettyprint.exp: verify python support
==============================================

*** 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/28/284782de0750d6c0a24f2c8fd712b2954423e849//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/28/284782de0750d6c0a24f2c8fd712b2954423e849//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-18  5:41 [binutils-gdb] gdb: small cleanup in breakpoint.c's includes gdb-buildbot
@ 2019-10-18  7:57 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-18  7:57 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/943

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        073bbbb058e36c60e5d30a4a25b48307429b7128

Subject of commit:
        gdb: small cleanup in breakpoint.c's includes

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/07/073bbbb058e36c60e5d30a4a25b48307429b7128/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.python/py-recurse-unwind.exp: can't run to main
==============================================

*** 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/07/073bbbb058e36c60e5d30a4a25b48307429b7128//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/07/073bbbb058e36c60e5d30a4a25b48307429b7128//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-18  0:30 [binutils-gdb] [gdb/testsuite] Add KFAIL for missing support of reverse-debugging xsave gdb-buildbot
@ 2019-10-18  5:01 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-18  5:01 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/942

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        d6e763135663f01349ed4126b80090ea2f37fcf2

Subject of commit:
        [gdb/testsuite] Add KFAIL for missing support of reverse-debugging xsave

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/d6/d6e763135663f01349ed4126b80090ea2f37fcf2/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: disassemble mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: p mymain_label - mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: x/2i mymain+
new UNRESOLVED: gdb.guile/guile.exp: collect help from uiout
new UNRESOLVED: gdb.guile/guile.exp: guile
new UNRESOLVED: gdb.guile/guile.exp: show guile command - define zzq
new UNRESOLVED: gdb.guile/guile.exp: source -s source2.scm
new UNRESOLVED: gdb.guile/guile.exp: source source2.scm
new UNRESOLVED: gdb.guile/guile.exp: verify guile support
new UNRESOLVED: gdb.guile/guile.exp: verify help to uiout
new UNRESOLVED: gdb.guile/scm-error.exp: backtrace printed
new UNRESOLVED: gdb.guile/scm-error.exp: error loading scm file caught
new UNRESOLVED: gdb.guile/scm-error.exp: error message printed
new UNRESOLVED: gdb.guile/scm-error.exp: guile
new UNRESOLVED: gdb.guile/scm-error.exp: no delayed error
new UNRESOLVED: gdb.guile/scm-error.exp: no error printed
new UNRESOLVED: gdb.guile/scm-error.exp: reset print-stack to default, post set/show tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to full, for backtrace test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error printing tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to none, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: source /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.guile/scm-error/scm-error-2.scm
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack full setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack none setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting of default
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to full
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to none
new UNRESOLVED: gdb.guile/scm-error.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-gsmob.exp: gu
new UNRESOLVED: gdb.guile/scm-gsmob.exp: guile
new UNRESOLVED: gdb.guile/scm-gsmob.exp: object-properties
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-parameter.exp: Simple gdb boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: enum gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: error registering existing parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: file gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously ambiguously named boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set print s on
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: restricted gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: enum parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set invalid enum parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set print test-enum-param two
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: initial parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: new parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param bar.txt
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set print test-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 10
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 42
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: show test-restricted-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set print test-undoc-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: undocumented gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: verify guile support
==============================================

*** 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/d6/d6e763135663f01349ed4126b80090ea2f37fcf2//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/d6/d6e763135663f01349ed4126b80090ea2f37fcf2//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-17 20:29 [binutils-gdb] Remove unnecessary declaration of trace_regblock_size gdb-buildbot
@ 2019-10-17 22:46 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-17 22:46 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/940

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        7b9a15e1ee822aea78d546ec8fafcafd27ee6de0

Subject of commit:
        Remove unnecessary declaration of trace_regblock_size

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/7b/7b9a15e1ee822aea78d546ec8fafcafd27ee6de0/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: x/2i main+
new UNRESOLVED: gdb.python/py-prettyprint.exp: check if python 3
new UNRESOLVED: gdb.python/py-prettyprint.exp: verify python support
new FAIL: gdb.python/py-thrhandle.exp: Pass overly large object to thread_from_handle
new FAIL: gdb.python/py-thrhandle.exp: Pass too small of an object to thread_from_handle
new FAIL: gdb.python/py-thrhandle.exp: TypeError when passing a symbol object to thread_from_handle
new UNRESOLVED: gdb.python/py-thrhandle.exp: breakpoint on after_mc_barrier
new FAIL: gdb.python/py-thrhandle.exp: info threads
new FAIL: gdb.python/py-thrhandle.exp: print thread id for thrs[0]
new FAIL: gdb.python/py-thrhandle.exp: print thread id for thrs[1]
new FAIL: gdb.python/py-thrhandle.exp: print thread id for thrs[2]
new FAIL: gdb.python/py-thrhandle.exp: run to after_mc_barrier
new FAIL: gdb.python/py-thrhandle.exp: run to do_something
new FAIL: gdb.python/py-thrhandle.exp: thread 0: fetch thread handle from thread
new FAIL: gdb.python/py-thrhandle.exp: thread 0: verify that handles are the same
new FAIL: gdb.python/py-thrhandle.exp: thread 1: fetch thread handle from thread
new FAIL: gdb.python/py-thrhandle.exp: thread 1: verify that handles are the same
new FAIL: gdb.python/py-thrhandle.exp: thread 2: fetch thread handle from thread
new FAIL: gdb.python/py-thrhandle.exp: thread 2: verify that handles are the same
==============================================

*** 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/7b/7b9a15e1ee822aea78d546ec8fafcafd27ee6de0//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/7b/7b9a15e1ee822aea78d546ec8fafcafd27ee6de0//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-17 17:24 [binutils-gdb] Move declaration of max_user_call_depth to header gdb-buildbot
@ 2019-10-17 19:37 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-17 19:37 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/939

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        cc8dee1f1c67be4155225c6c29dc1245abb89812

Subject of commit:
        Move declaration of max_user_call_depth to header

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/cc/cc8dee1f1c67be4155225c6c29dc1245abb89812/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/exec-invalid-sysroot.exp: couldn't run exec-invalid-sysroot
new UNRESOLVED: gdb.python/py-recurse-unwind.exp: can't run to main
==============================================

*** 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/cc/cc8dee1f1c67be4155225c6c29dc1245abb89812//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/cc/cc8dee1f1c67be4155225c6c29dc1245abb89812//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-17 14:11 [binutils-gdb] Improve comments in print-utils.h gdb-buildbot
@ 2019-10-17 16:35 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-17 16:35 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/936

Author:
        Jim Wilson <jimw@sifive.com>

Commit tested:
        5f93c5a6d5072d0bb2e4e734a6fe3336ce86ced9

Subject of commit:
        Improve comments in print-utils.h.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/5f/5f93c5a6d5072d0bb2e4e734a6fe3336ce86ced9/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dwz.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dwz.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dwz.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: disassemble mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: p mymain_label - mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: x/2i mymain+
new UNRESOLVED: gdb.guile/guile.exp: collect help from uiout
new UNRESOLVED: gdb.guile/guile.exp: guile
new UNRESOLVED: gdb.guile/guile.exp: show guile command - define zzq
new UNRESOLVED: gdb.guile/guile.exp: source -s source2.scm
new UNRESOLVED: gdb.guile/guile.exp: source source2.scm
new UNRESOLVED: gdb.guile/guile.exp: verify guile support
new UNRESOLVED: gdb.guile/guile.exp: verify help to uiout
new UNRESOLVED: gdb.guile/scm-error.exp: backtrace printed
new UNRESOLVED: gdb.guile/scm-error.exp: error loading scm file caught
new UNRESOLVED: gdb.guile/scm-error.exp: error message printed
new UNRESOLVED: gdb.guile/scm-error.exp: guile
new UNRESOLVED: gdb.guile/scm-error.exp: no delayed error
new UNRESOLVED: gdb.guile/scm-error.exp: no error printed
new UNRESOLVED: gdb.guile/scm-error.exp: reset print-stack to default, post set/show tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to full, for backtrace test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error printing tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to none, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: source /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.guile/scm-error/scm-error-2.scm
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack full setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack none setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting of default
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to full
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to none
new UNRESOLVED: gdb.guile/scm-error.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-gsmob.exp: gu
new UNRESOLVED: gdb.guile/scm-gsmob.exp: guile
new UNRESOLVED: gdb.guile/scm-gsmob.exp: object-properties
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-parameter.exp: Simple gdb boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: enum gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: error registering existing parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: file gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously ambiguously named boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set print s on
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: restricted gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: enum parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set invalid enum parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set print test-enum-param two
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: initial parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: new parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param bar.txt
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set print test-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 10
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 42
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: show test-restricted-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set print test-undoc-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: undocumented gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: verify guile support
new UNRESOLVED: gdb.python/py-prettyprint.exp: check if python 3
new UNRESOLVED: gdb.python/py-prettyprint.exp: verify python support
==============================================

*** 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/5f/5f93c5a6d5072d0bb2e4e734a6fe3336ce86ced9//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/5f/5f93c5a6d5072d0bb2e4e734a6fe3336ce86ced9//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-17 11:15 [binutils-gdb] RISC-V: Fix two ARI warnings gdb-buildbot
@ 2019-10-17 13:29 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-17 13:29 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/935

Author:
        Jim Wilson <jimw@sifive.com>

Commit tested:
        a83d4ef693d2bda527c6b73c2580a6fcaf63462c

Subject of commit:
        RISC-V: Fix two ARI warnings.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/a8/a83d4ef693d2bda527c6b73c2580a6fcaf63462c/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/maint.exp: check maint info sections output
new FAIL: gdb.base/maint.exp: maint info breakpoints
new FAIL: gdb.base/maint.exp: maint print type
new UNRESOLVED: gdb.base/sym-file.exp: can't run to main
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p bar_label - bar
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p baz_label - baz
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_cold_label - foo_cold
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_label - foo
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p main_label - main
new UNRESOLVED: gdb.dwarf2/implref-array.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/implref-struct.exp: p main_label - main
new UNRESOLVED: gdb.python/py-recurse-unwind.exp: can't run to main
==============================================

*** 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/a8/a83d4ef693d2bda527c6b73c2580a6fcaf63462c//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/a8/a83d4ef693d2bda527c6b73c2580a6fcaf63462c//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-17  8:18 [binutils-gdb] bfd/dwarf2.c: fix assertion failure in comp_unit_hash_info gdb-buildbot
@ 2019-10-17 10:42 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-17 10:42 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/934

Author:
        Max Filippov <jcmvbkbc@gmail.com>

Commit tested:
        e168da45a26f1067cb939a91c5d673b33911023a

Subject of commit:
        bfd/dwarf2.c: fix assertion failure in comp_unit_hash_info

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/e1/e168da45a26f1067cb939a91c5d673b33911023a/

*** Diff to previous build ***
==============================================
FAIL -> UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on Child& in f2
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/var-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/var-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/var-access.exp: x/2i main+
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: verify guile support
new UNRESOLVED: gdb.threads/vfork-follow-child-exec.exp: detach-on-fork=off: can't run to main
new UNRESOLVED: gdb.threads/vfork-follow-child-exec.exp: detach-on-fork=on: can't run to main
==============================================

*** 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/e1/e168da45a26f1067cb939a91c5d673b33911023a//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/e1/e168da45a26f1067cb939a91c5d673b33911023a//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-17  5:39 [binutils-gdb] Include gdbtk.h to avoid declarations gdb-buildbot
@ 2019-10-17  7:45 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-17  7:45 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/933

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        26344e0c532379477be3a203c80722051521a55e

Subject of commit:
        Include gdbtk.h to avoid declarations

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/26/26344e0c532379477be3a203c80722051521a55e/

*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.cp/ref-params.exp: print value of f1 on Child& in f2
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p bar_label - bar
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p baz_label - baz
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_cold_label - foo_cold
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_label - foo
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p main_label - main
new UNRESOLVED: gdb.dwarf2/implref-struct.exp: p main_label - main
new UNRESOLVED: gdb.threads/watchthreads2.exp: can't run to main
new UNRESOLVED: gdb.threads/watchthreads2.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.threads/watchthreads2.exp: set can-use-hw-watchpoints 1
==============================================

*** 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/26/26344e0c532379477be3a203c80722051521a55e//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/26/26344e0c532379477be3a203c80722051521a55e//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-16 17:19 [binutils-gdb] Don't call erase_data_content from tui_data_window::show_registers gdb-buildbot
@ 2019-10-16 19:39 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-16 19:39 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/929

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        a31bff9d2d78d0d45e3e75dd2513ccbf480a7bc4

Subject of commit:
        Don't call erase_data_content from tui_data_window::show_registers

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/a3/a31bff9d2d78d0d45e3e75dd2513ccbf480a7bc4/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i main+
new UNRESOLVED: gdb.guile/guile.exp: collect help from uiout
new UNRESOLVED: gdb.guile/guile.exp: guile
new UNRESOLVED: gdb.guile/guile.exp: show guile command - define zzq
new UNRESOLVED: gdb.guile/guile.exp: source -s source2.scm
new UNRESOLVED: gdb.guile/guile.exp: source source2.scm
new UNRESOLVED: gdb.guile/guile.exp: verify guile support
new UNRESOLVED: gdb.guile/guile.exp: verify help to uiout
new UNRESOLVED: gdb.guile/scm-error.exp: backtrace printed
new UNRESOLVED: gdb.guile/scm-error.exp: error loading scm file caught
new UNRESOLVED: gdb.guile/scm-error.exp: error message printed
new UNRESOLVED: gdb.guile/scm-error.exp: guile
new UNRESOLVED: gdb.guile/scm-error.exp: no delayed error
new UNRESOLVED: gdb.guile/scm-error.exp: no error printed
new UNRESOLVED: gdb.guile/scm-error.exp: reset print-stack to default, post set/show tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to full, for backtrace test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error printing tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to none, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: source /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.guile/scm-error/scm-error-2.scm
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack full setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack none setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting of default
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to full
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to none
new UNRESOLVED: gdb.guile/scm-error.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-gsmob.exp: gu
new UNRESOLVED: gdb.guile/scm-gsmob.exp: guile
new UNRESOLVED: gdb.guile/scm-gsmob.exp: object-properties
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-parameter.exp: Simple gdb boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: enum gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: error registering existing parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: file gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously ambiguously named boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set print s on
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: restricted gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: enum parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set invalid enum parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set print test-enum-param two
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: initial parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: new parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param bar.txt
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set print test-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 10
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 42
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: show test-restricted-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set print test-undoc-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: undocumented gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: verify guile support
new UNRESOLVED: gdb.python/py-completion.exp: check if python 3
new UNRESOLVED: gdb.python/py-completion.exp: show editing
new UNRESOLVED: gdb.python/py-completion.exp: verify python support
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER_UNLIMITED - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Throwing gdb parameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: Simple gdb booleanparameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: show parameter off
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: show parameter on
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test boolean parameter value is False
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test boolean parameter value is True
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test general help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test set help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test show help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: check if python 3
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value can be set to -1
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value is -1 after setting
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: Simple gdb booleanparameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: show parameter off
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: show parameter on
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test deprecated API parameter value is False
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test deprecated API parameter value is True
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test general help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test set help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test show help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: turn off parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: enum gdb parameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: set enum to two
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: set invalid enum parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: show parameter is initial value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: show parameter is new value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: test enum parameter value is one
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: test enum parameter value is two
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: file gdb parameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: set new file parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: set test-file-param
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: show initial file value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: show new file value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: test file parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: test new file parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: gdb.GdbError does not show Python stack
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python print
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -1
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -5
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER_UNLIMITED.value = -5
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: Simple gdb booleanparameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: show parameter off
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: show parameter on
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: test general help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: test really undocumented parameter value is False
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: test set help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: test show help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: turn off parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: Simple gdb booleanparameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: show parameter off
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: show parameter on
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: test general help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: test set help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: test show help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: test undocumented parameter value is False
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: verify python support
==============================================

*** 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/a3/a31bff9d2d78d0d45e3e75dd2513ccbf480a7bc4//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/a3/a31bff9d2d78d0d45e3e75dd2513ccbf480a7bc4//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-16 14:35 [binutils-gdb] Make TUI window handle a unique_ptr gdb-buildbot
@ 2019-10-16 16:56 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-16 16:56 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/928

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        7523da63ca33a37b54c2cde18b7752d0f0f11c26

Subject of commit:
        Make TUI window handle a unique_ptr

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/75/7523da63ca33a37b54c2cde18b7752d0f0f11c26/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/bp_range_type.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/dyn_arrayidx.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/tagged.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/tick_last_segv.exp: compilation foo.adb
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: disassemble mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: p mymain_label - mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: x/2i mymain+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i main+
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: verify guile support
==============================================

*** 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/75/7523da63ca33a37b54c2cde18b7752d0f0f11c26//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/75/7523da63ca33a37b54c2cde18b7752d0f0f11c26//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-16 11:43 [binutils-gdb] Remove declaration from tui-wingeneral.h gdb-buildbot
@ 2019-10-16 13:56 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-16 13:56 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/927

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        a7798e7f7dd1c4226376d455af957e369aa2a192

Subject of commit:
        Remove declaration from tui-wingeneral.h

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/a7/a7798e7f7dd1c4226376d455af957e369aa2a192/

*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/bp_range_type.exp: print small_value
new UNRESOLVED: gdb.ada/bp_range_type.exp: run to breakpoint
new UNRESOLVED: gdb.ada/dyn_arrayidx.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/dyn_arrayidx.exp: maintenance set ada ignore-descriptive-types
new UNRESOLVED: gdb.ada/dyn_arrayidx.exp: ptype array_type
new UNRESOLVED: gdb.ada/tagged.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/tagged.exp: print obj
new UNRESOLVED: gdb.ada/tagged.exp: print segm
new UNRESOLVED: gdb.ada/tagged.exp: ptype obj
new UNRESOLVED: gdb.ada/tagged.exp: ptype segm
new UNRESOLVED: gdb.ada/tick_last_segv.exp: print short-integer'first
new UNRESOLVED: gdb.ada/tick_last_segv.exp: print short-integer'last
new UNRESOLVED: gdb.base/print-file-var.exp: lang=c: hidden=0: dlopen=0: version_id_main=0: could not run to main
new UNRESOLVED: gdb.base/shreloc.exp: can't run to main
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p bar_label - bar
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p baz_label - baz
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_cold_label - foo_cold
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_label - foo
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p main_label - main
new UNRESOLVED: gdb.dwarf2/implref-struct.exp: p main_label - main
==============================================

*** 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/a7/a7798e7f7dd1c4226376d455af957e369aa2a192//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/a7/a7798e7f7dd1c4226376d455af957e369aa2a192//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-16  8:48 [binutils-gdb] Remove tui_win_is_auxiliary gdb-buildbot
@ 2019-10-16 11:03 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-16 11: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/926

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        5c45899e280be21dad7557dad641abeccd9bb37f

Subject of commit:
        Remove tui_win_is_auxiliary

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/5c/5c45899e280be21dad7557dad641abeccd9bb37f/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: disassemble mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: p mymain_label - mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: x/2i mymain+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: x/2i main+
new UNRESOLVED: gdb.guile/guile.exp: collect help from uiout
new UNRESOLVED: gdb.guile/guile.exp: guile
new UNRESOLVED: gdb.guile/guile.exp: show guile command - define zzq
new UNRESOLVED: gdb.guile/guile.exp: source -s source2.scm
new UNRESOLVED: gdb.guile/guile.exp: source source2.scm
new UNRESOLVED: gdb.guile/guile.exp: verify guile support
new UNRESOLVED: gdb.guile/guile.exp: verify help to uiout
new UNRESOLVED: gdb.guile/scm-error.exp: backtrace printed
new UNRESOLVED: gdb.guile/scm-error.exp: error loading scm file caught
new UNRESOLVED: gdb.guile/scm-error.exp: error message printed
new UNRESOLVED: gdb.guile/scm-error.exp: guile
new UNRESOLVED: gdb.guile/scm-error.exp: no delayed error
new UNRESOLVED: gdb.guile/scm-error.exp: no error printed
new UNRESOLVED: gdb.guile/scm-error.exp: reset print-stack to default, post set/show tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to full, for backtrace test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error printing tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to none, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: source /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.guile/scm-error/scm-error-2.scm
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack full setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack none setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting of default
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to full
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to none
new UNRESOLVED: gdb.guile/scm-error.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-gsmob.exp: gu
new UNRESOLVED: gdb.guile/scm-gsmob.exp: guile
new UNRESOLVED: gdb.guile/scm-gsmob.exp: object-properties
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-parameter.exp: Simple gdb boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: enum gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: error registering existing parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: file gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously ambiguously named boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set print s on
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: restricted gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: enum parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set invalid enum parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set print test-enum-param two
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: initial parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: new parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param bar.txt
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set print test-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 10
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 42
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: show test-restricted-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set print test-undoc-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: undocumented gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: verify guile support
new FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=0: -break-info
new UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=0: break add
new FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=1: -break-info
new UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=2: use_fix_flag=1: send -fix-multi-location-breakpoint-output
new FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=0: -break-info
new UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=0: break add
new FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=1: -break-info
new UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=3: use_fix_flag=1: send -fix-multi-location-breakpoint-output
new FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=0: -break-info
new UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=0: break add
new FAIL: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=1: -break-info
new UNRESOLVED: gdb.mi/mi-breakpoint-multiple-locations.exp: mi_version=: use_fix_flag=1: send -fix-multi-location-breakpoint-output
new UNRESOLVED: gdb.python/py-completion.exp: check if python 3
new UNRESOLVED: gdb.python/py-completion.exp: show editing
new UNRESOLVED: gdb.python/py-completion.exp: verify python support
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER_UNLIMITED - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Throwing gdb parameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: Simple gdb booleanparameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: show parameter off
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: show parameter on
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test boolean parameter value is False
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test boolean parameter value is True
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test general help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test set help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test show help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: check if python 3
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value can be set to -1
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value is -1 after setting
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: Simple gdb booleanparameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: show parameter off
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: show parameter on
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test deprecated API parameter value is False
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test deprecated API parameter value is True
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test general help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test set help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test show help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: turn off parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: enum gdb parameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: set enum to two
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: set invalid enum parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: show parameter is initial value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: show parameter is new value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: test enum parameter value is one
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: test enum parameter value is two
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: file gdb parameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: set new file parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: set test-file-param
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: show initial file value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: show new file value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: test file parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: test new file parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: gdb.GdbError does not show Python stack
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python print
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -1
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -5
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER_UNLIMITED.value = -5
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: Simple gdb booleanparameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: show parameter off
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: show parameter on
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: test general help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: test really undocumented parameter value is False
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: test set help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: test show help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: turn off parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: Simple gdb booleanparameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: show parameter off
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: show parameter on
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: test general help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: test set help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: test show help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: test undocumented parameter value is False
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: verify python support
new UNRESOLVED: gdb.python/py-prettyprint.exp: check if python 3
new UNRESOLVED: gdb.python/py-prettyprint.exp: verify python support
==============================================

*** 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/5c/5c45899e280be21dad7557dad641abeccd9bb37f//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/5c/5c45899e280be21dad7557dad641abeccd9bb37f//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-16  5:51 [binutils-gdb] Remove tui_default_win_viewport_height gdb-buildbot
@ 2019-10-16  8:04 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-16  8:04 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/925

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        6d7fd9aa4768c3fad5b5354c87eefb8026a0ba10

Subject of commit:
        Remove tui_default_win_viewport_height

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/6d/6d7fd9aa4768c3fad5b5354c87eefb8026a0ba10/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p bar_label - bar
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p baz_label - baz
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_cold_label - foo_cold
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_label - foo
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p main_label - main
new UNRESOLVED: gdb.dwarf2/implref-struct.exp: p main_label - main
new UNRESOLVED: gdb.python/py-recurse-unwind.exp: can't run to main
==============================================

*** 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/6d/6d7fd9aa4768c3fad5b5354c87eefb8026a0ba10//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/6d/6d7fd9aa4768c3fad5b5354c87eefb8026a0ba10//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-16  2:58 [binutils-gdb] Remove two TUI comments gdb-buildbot
@ 2019-10-16  5:18 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-16  5:18 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/924

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        d2dd1084c10839efb916a0bfe57ca7a056d08b47

Subject of commit:
        Remove two TUI comments

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/d2/d2dd1084c10839efb916a0bfe57ca7a056d08b47/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: disassemble mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: p mymain_label - mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: x/2i mymain+
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i main+
new UNRESOLVED: gdb.guile/guile.exp: collect help from uiout
new UNRESOLVED: gdb.guile/guile.exp: guile
new UNRESOLVED: gdb.guile/guile.exp: show guile command - define zzq
new UNRESOLVED: gdb.guile/guile.exp: source -s source2.scm
new UNRESOLVED: gdb.guile/guile.exp: source source2.scm
new UNRESOLVED: gdb.guile/guile.exp: verify guile support
new UNRESOLVED: gdb.guile/guile.exp: verify help to uiout
new UNRESOLVED: gdb.guile/scm-gsmob.exp: gu
new UNRESOLVED: gdb.guile/scm-gsmob.exp: guile
new UNRESOLVED: gdb.guile/scm-gsmob.exp: object-properties
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: verify guile support
==============================================

*** 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/d2/d2dd1084c10839efb916a0bfe57ca7a056d08b47//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/d2/d2dd1084c10839efb916a0bfe57ca7a056d08b47//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-15 23:51 [binutils-gdb] [gdb/testsuite] Add XFAILs in gdb.rust/simple.exp for incorrect DWARF gdb-buildbot
@ 2019-10-16  2:09 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-16  2:09 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/923

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        a50faaf6207b7556f691369097cd5bf903298794

Subject of commit:
        [gdb/testsuite] Add XFAILs in gdb.rust/simple.exp for incorrect DWARF

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/a5/a50faaf6207b7556f691369097cd5bf903298794/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/recpar.exp: could not run to main
new UNRESOLVED: gdb.base/sym-file.exp: can't run to main
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p bar_label - bar
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p baz_label - baz
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_cold_label - foo_cold
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_label - foo
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p main_label - main
new UNRESOLVED: gdb.dwarf2/implref-array.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/implref-struct.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: x/2i main+
new UNRESOLVED: gdb.guile/scm-error.exp: backtrace printed
new UNRESOLVED: gdb.guile/scm-error.exp: error loading scm file caught
new UNRESOLVED: gdb.guile/scm-error.exp: error message printed
new UNRESOLVED: gdb.guile/scm-error.exp: guile
new UNRESOLVED: gdb.guile/scm-error.exp: no delayed error
new UNRESOLVED: gdb.guile/scm-error.exp: no error printed
new UNRESOLVED: gdb.guile/scm-error.exp: reset print-stack to default, post set/show tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to full, for backtrace test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error printing tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to none, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: source /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.guile/scm-error/scm-error-2.scm
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack full setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack none setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting of default
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to full
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to none
new UNRESOLVED: gdb.guile/scm-error.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-parameter.exp: Simple gdb boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: enum gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: error registering existing parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: file gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously ambiguously named boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set print s on
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: restricted gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: enum parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set invalid enum parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set print test-enum-param two
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: initial parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: new parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param bar.txt
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set print test-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 10
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 42
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: show test-restricted-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set print test-undoc-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: undocumented gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: verify guile support
new UNRESOLVED: gdb.python/py-completion.exp: check if python 3
new UNRESOLVED: gdb.python/py-completion.exp: show editing
new UNRESOLVED: gdb.python/py-completion.exp: verify python support
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER_UNLIMITED - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Throwing gdb parameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: Simple gdb booleanparameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: show parameter off
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: show parameter on
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test boolean parameter value is False
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test boolean parameter value is True
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test general help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test set help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test show help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: check if python 3
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value can be set to -1
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value is -1 after setting
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: Simple gdb booleanparameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: show parameter off
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: show parameter on
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test deprecated API parameter value is False
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test deprecated API parameter value is True
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test general help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test set help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test show help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: turn off parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: enum gdb parameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: set enum to two
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: set invalid enum parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: show parameter is initial value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: show parameter is new value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: test enum parameter value is one
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: test enum parameter value is two
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: file gdb parameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: set new file parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: set test-file-param
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: show initial file value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: show new file value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: test file parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: test new file parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: gdb.GdbError does not show Python stack
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python print
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -1
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -5
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER_UNLIMITED.value = -5
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: Simple gdb booleanparameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: show parameter off
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: show parameter on
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: test general help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: test really undocumented parameter value is False
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: test set help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: test show help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: turn off parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: Simple gdb booleanparameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: show parameter off
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: show parameter on
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: test general help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: test set help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: test show help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: test undocumented parameter value is False
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: verify python support
new UNRESOLVED: gdb.python/py-prettyprint.exp: check if python 3
new UNRESOLVED: gdb.python/py-prettyprint.exp: verify python support
==============================================

*** 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/a5/a50faaf6207b7556f691369097cd5bf903298794//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/a5/a50faaf6207b7556f691369097cd5bf903298794//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-15 20:43 [binutils-gdb] [gdb/target] Fix pretty-printer for MPX bnd registers gdb-buildbot
@ 2019-10-15 23:02 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-15 23:02 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/922

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        cff32449e888c9ccb3c7e5fee7a0c14c5dcc4178

Subject of commit:
        [gdb/target] Fix pretty-printer for MPX bnd registers

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/cf/cff32449e888c9ccb3c7e5fee7a0c14c5dcc4178/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/attr_ref_and_charlit.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/print_pc.exp: compilation dummy.adb
PASS -> FAIL: gdb.ada/scoped_watch.exp: compilation foo_p708_025.adb
new UNRESOLVED: gdb.arch/aarch64-fp.exp: could not run to main
new UNRESOLVED: gdb.python/py-recurse-unwind.exp: can't run to main
==============================================

*** 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/cf/cff32449e888c9ccb3c7e5fee7a0c14c5dcc4178//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/cf/cff32449e888c9ccb3c7e5fee7a0c14c5dcc4178//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-15 17:34 [binutils-gdb] Mark guile_{extension_,}script_ops as static gdb-buildbot
@ 2019-10-15 19:54 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-15 19:54 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/921

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        6a25e8a290eb5453d1464f68889c9c9a1084191a

Subject of commit:
        Mark guile_{extension_,}script_ops as static

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/6a/6a25e8a290eb5453d1464f68889c9c9a1084191a/

*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/attr_ref_and_charlit.exp: gdb_test
new UNRESOLVED: gdb.ada/attr_ref_and_charlit.exp: print s'first
new FAIL: gdb.ada/attr_ref_and_charlit.exp: print s'last
new FAIL: gdb.ada/attr_ref_and_charlit.exp: print s
new UNRESOLVED: gdb.ada/print_pc.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/print_pc.exp: p /x $pc
new UNRESOLVED: gdb.ada/scoped_watch.exp: break foo_p708_025.adb:22
new UNRESOLVED: gdb.ada/scoped_watch.exp: break pck.increment
new UNRESOLVED: gdb.ada/scoped_watch.exp: continuing to breakpoint in pck.increment
new UNRESOLVED: gdb.ada/scoped_watch.exp: continuing to breakpoint on call to Do_Nothing
new UNRESOLVED: gdb.ada/scoped_watch.exp: continuing to watchpoint hit
new UNRESOLVED: gdb.ada/scoped_watch.exp: continuing until watchpoint automatic deletion
new UNRESOLVED: gdb.ada/scoped_watch.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/scoped_watch.exp: next to call to Call_Me
new UNRESOLVED: gdb.ada/scoped_watch.exp: watch result
new UNRESOLVED: gdb.base/dprintf-non-stop.exp: can't run to main
new UNRESOLVED: gdb.base/recpar.exp: could not run to main
new FAIL: gdb.server/file-transfer.exp: compare binary file
new FAIL: gdb.server/file-transfer.exp: compare intermediate binary file
new FAIL: gdb.server/file-transfer.exp: compare intermediate text file
new FAIL: gdb.server/file-transfer.exp: compare text file
new UNRESOLVED: gdb.server/file-transfer.exp: deleted binary file
new UNRESOLVED: gdb.server/file-transfer.exp: deleted text file
new UNRESOLVED: gdb.server/file-transfer.exp: disconnect
new UNRESOLVED: gdb.server/file-transfer.exp: get binary file
new UNRESOLVED: gdb.server/file-transfer.exp: get text file
new UNRESOLVED: gdb.server/file-transfer.exp: put binary file
new UNRESOLVED: gdb.server/file-transfer.exp: put text file
new UNRESOLVED: gdb.trace/actions.exp: failed to compile
==============================================

*** 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/6a/6a25e8a290eb5453d1464f68889c9c9a1084191a//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/6a/6a25e8a290eb5453d1464f68889c9c9a1084191a//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-15 14:31 [binutils-gdb] Fix the disassembly of the LDS and STS instructions of the AVR architecture gdb-buildbot
@ 2019-10-15 16:50 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-15 16:50 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/920

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        1d3787499d6edd07b30f3fc7b26962a1c695b8a4

Subject of commit:
        Fix the disassembly of the LDS and STS instructions of the AVR architecture.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/1d/1d3787499d6edd07b30f3fc7b26962a1c695b8a4/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/bigcore.exp: can't run to main
new UNRESOLVED: gdb.base/sym-file.exp: can't run to main
new UNRESOLVED: gdb.trace/tstatus.exp: can't run to main to check for trace support
==============================================

*** 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/1d/1d3787499d6edd07b30f3fc7b26962a1c695b8a4//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/1d/1d3787499d6edd07b30f3fc7b26962a1c695b8a4//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-15  7:56 [binutils-gdb] PR25070, SEGV in function _bfd_dwarf2_find_nearest_line gdb-buildbot
@ 2019-10-15 10:21 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-15 10:21 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/918

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        336bfbeb1848f4b9558456fdcf283ee8a32d7fd1

Subject of commit:
        PR25070, SEGV in function _bfd_dwarf2_find_nearest_line

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/33/336bfbeb1848f4b9558456fdcf283ee8a32d7fd1/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.guile/scm-disasm.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-disasm.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-disasm.exp: verify guile support
==============================================

*** 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/33/336bfbeb1848f4b9558456fdcf283ee8a32d7fd1//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/33/336bfbeb1848f4b9558456fdcf283ee8a32d7fd1//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-15  4:49 [binutils-gdb] Remove two unused items from windows-nat.c gdb-buildbot
@ 2019-10-15  7:07 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-15  7:07 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/917

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        3abea05d9b60032391971f7fefd44fb4ab560ddd

Subject of commit:
        Remove two unused items from windows-nat.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/3a/3abea05d9b60032391971f7fefd44fb4ab560ddd/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/attr_ref_and_charlit.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/expr_delims.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/fullname_bp.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/int_deref.exp: compilation foo.adb
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: disassemble mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: p mymain_label - mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: x/2i mymain+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: x/2i main+
==============================================

*** 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/3a/3abea05d9b60032391971f7fefd44fb4ab560ddd//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/3a/3abea05d9b60032391971f7fefd44fb4ab560ddd//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-15  1:29 [binutils-gdb] Don't include buildsym-legacy.h in windows-nat.c gdb-buildbot
@ 2019-10-15  3:52 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-15  3:52 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/916

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        dde996e213c916e9440045231a4ac7fda130a888

Subject of commit:
        Don't include buildsym-legacy.h in windows-nat.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/dd/dde996e213c916e9440045231a4ac7fda130a888/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.ada/attr_ref_and_charlit.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/attr_ref_and_charlit.exp: gdb_test
new UNRESOLVED: gdb.ada/attr_ref_and_charlit.exp: print s'first
new UNRESOLVED: gdb.ada/attr_ref_and_charlit.exp: print s'last
new UNRESOLVED: gdb.ada/attr_ref_and_charlit.exp: print s
new UNRESOLVED: gdb.ada/expr_delims.exp: break foo.adb:23
new UNRESOLVED: gdb.ada/expr_delims.exp: check that watchpoint is set correctly.
new UNRESOLVED: gdb.ada/expr_delims.exp: combination of 'if' and 'thread' delimiters.
new UNRESOLVED: gdb.ada/expr_delims.exp: continue
new UNRESOLVED: gdb.ada/expr_delims.exp: delete 1
new UNRESOLVED: gdb.ada/expr_delims.exp: print variable 'thread'
new UNRESOLVED: gdb.ada/expr_delims.exp: set conditional watchpoint.
new UNRESOLVED: gdb.ada/expr_delims.exp: set plain watchpoint on variable 'thread'
new UNRESOLVED: gdb.ada/int_deref.exp: print watch'address
new UNRESOLVED: gdb.ada/str_ref_cmp.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/str_ref_cmp.exp: operator = works for strings
new UNRESOLVED: gdb.ada/str_ref_cmp.exp: print String_Var
new UNRESOLVED: gdb.base/breakpoint-shadow.exp: start
new UNRESOLVED: gdb.base/print-file-var.exp: lang=c: hidden=0: dlopen=0: version_id_main=0: could not run to main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/var-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/var-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/var-access.exp: x/2i main+
==============================================

*** 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/dd/dde996e213c916e9440045231a4ac7fda130a888//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/dd/dde996e213c916e9440045231a4ac7fda130a888//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-14 22:32 [binutils-gdb] Let ARI allow gdb %p printf extensions gdb-buildbot
@ 2019-10-15  0:51 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-15  0:51 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/915

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        cd6fdaa1edac2a543aa23d77f0001f25f45c026b

Subject of commit:
        Let ARI allow gdb %p printf extensions

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/cd/cd6fdaa1edac2a543aa23d77f0001f25f45c026b/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/reread.exp: opts= "" "" : continue until exit at second pass
new UNRESOLVED: gdb.base/reread.exp: opts= "" "" : run to foo
new UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: run to foo
FAIL -> UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on Child& in f2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Parent&& in f1: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: disassemble mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: p mymain_label - mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: x/2i mymain+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i main+
new UNRESOLVED: gdb.guile/guile.exp: collect help from uiout
new UNRESOLVED: gdb.guile/guile.exp: guile
new UNRESOLVED: gdb.guile/guile.exp: show guile command - define zzq
new UNRESOLVED: gdb.guile/guile.exp: source -s source2.scm
new UNRESOLVED: gdb.guile/guile.exp: source source2.scm
new UNRESOLVED: gdb.guile/guile.exp: verify guile support
new UNRESOLVED: gdb.guile/guile.exp: verify help to uiout
new UNRESOLVED: gdb.guile/scm-error.exp: backtrace printed
new UNRESOLVED: gdb.guile/scm-error.exp: error loading scm file caught
new UNRESOLVED: gdb.guile/scm-error.exp: error message printed
new UNRESOLVED: gdb.guile/scm-error.exp: guile
new UNRESOLVED: gdb.guile/scm-error.exp: no delayed error
new UNRESOLVED: gdb.guile/scm-error.exp: no error printed
new UNRESOLVED: gdb.guile/scm-error.exp: reset print-stack to default, post set/show tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to full, for backtrace test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error printing tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to none, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: source /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.guile/scm-error/scm-error-2.scm
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack full setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack none setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting of default
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to full
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to none
new UNRESOLVED: gdb.guile/scm-error.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-gsmob.exp: gu
new UNRESOLVED: gdb.guile/scm-gsmob.exp: guile
new UNRESOLVED: gdb.guile/scm-gsmob.exp: object-properties
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-parameter.exp: Simple gdb boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: enum gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: error registering existing parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: file gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously ambiguously named boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set print s on
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: restricted gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: enum parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set invalid enum parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set print test-enum-param two
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: initial parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: new parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param bar.txt
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set print test-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 10
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 42
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: show test-restricted-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set print test-undoc-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: undocumented gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: verify guile support
==============================================

*** 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/cd/cd6fdaa1edac2a543aa23d77f0001f25f45c026b//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/cd/cd6fdaa1edac2a543aa23d77f0001f25f45c026b//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-14 19:47 [binutils-gdb] Move declaration of overload_debug to header gdb-buildbot
@ 2019-10-14 21:53 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-14 21:53 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/914

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        79bb1944d63eb04f86cfacc62321c1062c292ac0

Subject of commit:
        Move declaration of overload_debug to header

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/79/79bb1944d63eb04f86cfacc62321c1062c292ac0/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/line-symtabs.exp: can't run to main
UNRESOLVED -> FAIL: gdb.cp/ref-params.exp: print value of f1 on Child& in f2
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p bar_label - bar
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p baz_label - baz
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_cold_label - foo_cold
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_label - foo
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p main_label - main
new UNRESOLVED: gdb.dwarf2/implref-struct.exp: p main_label - main
new FAIL: gdb.guile/scm-lazy-string.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-lazy-string.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-lazy-string.exp: verify guile support
new UNRESOLVED: gdb.python/py-completion.exp: check if python 3
new UNRESOLVED: gdb.python/py-completion.exp: show editing
new UNRESOLVED: gdb.python/py-completion.exp: verify python support
new UNRESOLVED: gdb.python/py-prettyprint.exp: check if python 3
new UNRESOLVED: gdb.python/py-prettyprint.exp: verify python support
==============================================

*** 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/79/79bb1944d63eb04f86cfacc62321c1062c292ac0//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/79/79bb1944d63eb04f86cfacc62321c1062c292ac0//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-14 16:38 [binutils-gdb] Move declaration of lang_frame_mismatch_warn to header gdb-buildbot
@ 2019-10-14 19:03 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-14 19: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/913

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        34916edc47a26d591bf95784cd90fe1dcd533ab5

Subject of commit:
        Move declaration of lang_frame_mismatch_warn to header.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/34/34916edc47a26d591bf95784cd90fe1dcd533ab5/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.python/py-recurse-unwind.exp: can't run to main
==============================================

*** 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/34/34916edc47a26d591bf95784cd90fe1dcd533ab5//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/34/34916edc47a26d591bf95784cd90fe1dcd533ab5//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-14 13:42 [binutils-gdb] PR25078, stack overflow in function find_abstract_instance gdb-buildbot
@ 2019-10-14 15:59 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-14 15:59 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/912

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        063c511bd79281f33fd33f0964541a73511b9e2b

Subject of commit:
        PR25078, stack overflow in function find_abstract_instance

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/06/063c511bd79281f33fd33f0964541a73511b9e2b/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.guile/guile.exp: collect help from uiout
new UNRESOLVED: gdb.guile/guile.exp: guile
new UNRESOLVED: gdb.guile/guile.exp: show guile command - define zzq
new UNRESOLVED: gdb.guile/guile.exp: source -s source2.scm
new UNRESOLVED: gdb.guile/guile.exp: source source2.scm
new UNRESOLVED: gdb.guile/guile.exp: verify guile support
new UNRESOLVED: gdb.guile/guile.exp: verify help to uiout
new UNRESOLVED: gdb.guile/scm-error.exp: backtrace printed
new UNRESOLVED: gdb.guile/scm-error.exp: error loading scm file caught
new UNRESOLVED: gdb.guile/scm-error.exp: error message printed
new UNRESOLVED: gdb.guile/scm-error.exp: guile
new UNRESOLVED: gdb.guile/scm-error.exp: no delayed error
new UNRESOLVED: gdb.guile/scm-error.exp: no error printed
new UNRESOLVED: gdb.guile/scm-error.exp: reset print-stack to default, post set/show tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to full, for backtrace test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error printing tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to none, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: source /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.guile/scm-error/scm-error-2.scm
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack full setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack none setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting of default
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to full
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to none
new UNRESOLVED: gdb.guile/scm-error.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-gsmob.exp: gu
new UNRESOLVED: gdb.guile/scm-gsmob.exp: guile
new UNRESOLVED: gdb.guile/scm-gsmob.exp: object-properties
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: verify guile support
new UNRESOLVED: gdb.python/py-completion.exp: check if python 3
new UNRESOLVED: gdb.python/py-completion.exp: show editing
new UNRESOLVED: gdb.python/py-completion.exp: verify python support
new UNRESOLVED: gdb.python/py-prettyprint.exp: check if python 3
new UNRESOLVED: gdb.python/py-prettyprint.exp: verify python support
==============================================

*** 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/06/063c511bd79281f33fd33f0964541a73511b9e2b//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/06/063c511bd79281f33fd33f0964541a73511b9e2b//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-14 10:39 [binutils-gdb] S/390: Add support for z15 as CPU name gdb-buildbot
@ 2019-10-14 12:53 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-14 12:53 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/911

Author:
        Andreas Krebbel <krebbel@linux.ibm.com>

Commit tested:
        46e292ab0af65d13675b54f808fa24e12999e405

Subject of commit:
        S/390: Add support for z15 as CPU name.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/46/46e292ab0af65d13675b54f808fa24e12999e405/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/comp-unit-lang.exp: failed to prepare
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p g_label - g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i g+
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: disassemble mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: p mymain_label - mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: x/2i mymain+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: x/2i main+
new UNRESOLVED: gdb.guile/scm-parameter.exp: Simple gdb boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: enum gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: error registering existing parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: file gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously ambiguously named boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set print s on
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: restricted gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: enum parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set invalid enum parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set print test-enum-param two
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: initial parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: new parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param bar.txt
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set print test-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 10
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 42
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: show test-restricted-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set print test-undoc-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: undocumented gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: verify guile support
==============================================

*** 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/46/46e292ab0af65d13675b54f808fa24e12999e405//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/46/46e292ab0af65d13675b54f808fa24e12999e405//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-14  9:23 [binutils-gdb] Move declaration of vtbl_ptr_name to the header gdb-buildbot
@ 2019-10-14 10:01 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-14 10:01 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/910

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        bad5c02618a27f8f1c5c0858c323dba060aed905

Subject of commit:
        Move declaration of vtbl_ptr_name to the header.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/ba/bad5c02618a27f8f1c5c0858c323dba060aed905/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/gdb11531.exp: run to main
new UNRESOLVED: gdb.dwarf2/dw2-ref-missing-frame.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.python/py-recurse-unwind.exp: can't run to main
==============================================

*** 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/ba/bad5c02618a27f8f1c5c0858c323dba060aed905//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/ba/bad5c02618a27f8f1c5c0858c323dba060aed905//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-14  1:47 [binutils-gdb] Add support for new functionality in the msp430 backend of GCC gdb-buildbot
@ 2019-10-14  4:03 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-14  4: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/908

Author:
        Jozef Lawrynowicz <jozef.l@mittosystems.com>

Commit tested:
        c0ea7c52e10024ecd29b8f0e23b666b6af926c6e

Subject of commit:
        Add support for new functionality in the msp430 backend of GCC.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/c0/c0ea7c52e10024ecd29b8f0e23b666b6af926c6e/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dwz.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dwz.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dwz.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: disassemble mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: p mymain_label - mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: x/2i mymain+
new UNRESOLVED: gdb.guile/scm-parameter.exp: Simple gdb boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: enum gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: error registering existing parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: file gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously ambiguously named boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set print s on
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: restricted gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: enum parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set invalid enum parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set print test-enum-param two
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: initial parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: new parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param bar.txt
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set print test-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 10
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 42
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: show test-restricted-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set print test-undoc-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: undocumented gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: verify guile support
==============================================

*** 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/c0/c0ea7c52e10024ecd29b8f0e23b666b6af926c6e//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/c0/c0ea7c52e10024ecd29b8f0e23b666b6af926c6e//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-13 22:44 [binutils-gdb] Re: PowerPC PIC vs. DLL TLS issues gdb-buildbot
@ 2019-10-14  1:08 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-14  1:08 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/907

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        93370e8e7b406cf0aeedcf57cf457c07d6a2c7e6

Subject of commit:
        Re: PowerPC PIC vs. DLL TLS issues

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/93/93370e8e7b406cf0aeedcf57cf457c07d6a2c7e6/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/dprintf-non-stop.exp: can't run to main
new UNRESOLVED: gdb.base/load-command.exp: can't run to main
new UNRESOLVED: gdb.base/memattr.exp: 0x30 0x0: 0x00 0x10: no-overlap
new UNRESOLVED: gdb.base/memattr.exp: 0x30 0x0: 0x20 0x0: overlap
new UNRESOLVED: gdb.base/memattr.exp: 0x30 0x0: 0x20 0x30: no-overlap
new UNRESOLVED: gdb.base/memattr.exp: 0x30 0x0: 0x20 0x50: overlap
new UNRESOLVED: gdb.base/memattr.exp: 0x30 0x0: 0x30 0x0: overlap
new UNRESOLVED: gdb.base/memattr.exp: 0x30 0x0: 0x30 0x50: overlap
new UNRESOLVED: gdb.base/memattr.exp: 0x30 0x0: 0x40 0x0: overlap
new UNRESOLVED: gdb.base/memattr.exp: 0x30 0x0: 0x40 0x50: overlap
new UNRESOLVED: gdb.base/memattr.exp: 0x30 0x60: 0x20 0x0: overlap
new UNRESOLVED: gdb.base/memattr.exp: 0x30 0x60: 0x20 0x30: no-overlap
new UNRESOLVED: gdb.base/memattr.exp: 0x30 0x60: 0x20 0x40: overlap
new UNRESOLVED: gdb.base/memattr.exp: 0x30 0x60: 0x20 0x70: overlap
new UNRESOLVED: gdb.base/memattr.exp: 0x30 0x60: 0x30 0x0: overlap
new UNRESOLVED: gdb.base/memattr.exp: 0x30 0x60: 0x30 0x40: overlap
new UNRESOLVED: gdb.base/memattr.exp: 0x30 0x60: 0x30 0x60: overlap
new UNRESOLVED: gdb.base/memattr.exp: 0x30 0x60: 0x40 0x0: overlap
new UNRESOLVED: gdb.base/memattr.exp: 0x30 0x60: 0x40 0x50: overlap
new UNRESOLVED: gdb.base/memattr.exp: 0x30 0x60: 0x50 0x60: overlap
new UNRESOLVED: gdb.base/memattr.exp: 0x30 0x60: 0x50 0x70: overlap
new UNRESOLVED: gdb.base/memattr.exp: 0x30 0x60: 0x60 0x70: no-overlap
new UNRESOLVED: gdb.base/memattr.exp: 0x30 0x60: 0x80 0x0: no-overlap
new UNRESOLVED: gdb.base/memattr.exp: create mem region 1
new UNRESOLVED: gdb.base/memattr.exp: create mem region 2
new UNRESOLVED: gdb.base/memattr.exp: create mem region 3
new UNRESOLVED: gdb.base/memattr.exp: create mem region 4
new UNRESOLVED: gdb.base/memattr.exp: create mem region 5
new UNRESOLVED: gdb.base/memattr.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/memattr.exp: delete mem
new UNRESOLVED: gdb.base/memattr.exp: delete mem 1
new UNRESOLVED: gdb.base/memattr.exp: delete mem 2 4
new UNRESOLVED: gdb.base/memattr.exp: delete mem 2-4
new UNRESOLVED: gdb.base/memattr.exp: delete non-existant region
new UNRESOLVED: gdb.base/memattr.exp: disable mem
new UNRESOLVED: gdb.base/memattr.exp: disable mem 1
new UNRESOLVED: gdb.base/memattr.exp: disable mem 2 4
new UNRESOLVED: gdb.base/memattr.exp: disable non-existant regions
new UNRESOLVED: gdb.base/memattr.exp: enable mem
new UNRESOLVED: gdb.base/memattr.exp: enable mem 1
new UNRESOLVED: gdb.base/memattr.exp: enable mem 2-4
new UNRESOLVED: gdb.base/memattr.exp: get address of mem1
new UNRESOLVED: gdb.base/memattr.exp: get address of mem2
new UNRESOLVED: gdb.base/memattr.exp: get address of mem3
new UNRESOLVED: gdb.base/memattr.exp: get address of mem4
new UNRESOLVED: gdb.base/memattr.exp: get address of mem5
new UNRESOLVED: gdb.base/memattr.exp: get end of mem1
new UNRESOLVED: gdb.base/memattr.exp: get end of mem2
new UNRESOLVED: gdb.base/memattr.exp: get end of mem3
new UNRESOLVED: gdb.base/memattr.exp: get end of mem4
new UNRESOLVED: gdb.base/memattr.exp: get end of mem5
new UNRESOLVED: gdb.base/memattr.exp: info mem
new UNRESOLVED: gdb.base/memattr.exp: mem 0x30 0x0 ro
new UNRESOLVED: gdb.base/memattr.exp: mem 0x30 0x60 ro
new UNRESOLVED: gdb.base/memattr.exp: mem 1 to 5 were disabled
new UNRESOLVED: gdb.base/memattr.exp: mem 1 to 5 were enabled
new UNRESOLVED: gdb.base/memattr.exp: mem 1 was deleted
new UNRESOLVED: gdb.base/memattr.exp: mem 1 was disabled
new UNRESOLVED: gdb.base/memattr.exp: mem 1 was enabled
new UNRESOLVED: gdb.base/memattr.exp: mem 2 and 4 were deleted
new UNRESOLVED: gdb.base/memattr.exp: mem 2 and 4 were disabled
new UNRESOLVED: gdb.base/memattr.exp: mem 2-4 were deleted
new UNRESOLVED: gdb.base/memattr.exp: mem 2-4 were enabled
new UNRESOLVED: gdb.base/memattr.exp: mem1 can be written
new UNRESOLVED: gdb.base/memattr.exp: mem1 cannot be read
new UNRESOLVED: gdb.base/memattr.exp: mem2 can be read
new UNRESOLVED: gdb.base/memattr.exp: mem2 cannot be written
new UNRESOLVED: gdb.base/recpar.exp: could not run to main
new UNRESOLVED: gdb.base/wrong_frame_bt_full.exp: could not run to opaque_routine
new UNRESOLVED: gdb.base/wrong_frame_bt_full.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p g_label - g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i g+
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p bar_label - bar
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p baz_label - baz
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_cold_label - foo_cold
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_label - foo
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p main_label - main
new UNRESOLVED: gdb.dwarf2/implref-array.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/implref-struct.exp: p main_label - main
new UNRESOLVED: gdb.guile/guile.exp: collect help from uiout
new UNRESOLVED: gdb.guile/guile.exp: guile
new UNRESOLVED: gdb.guile/guile.exp: show guile command - define zzq
new UNRESOLVED: gdb.guile/guile.exp: source -s source2.scm
new UNRESOLVED: gdb.guile/guile.exp: source source2.scm
new UNRESOLVED: gdb.guile/guile.exp: verify guile support
new UNRESOLVED: gdb.guile/guile.exp: verify help to uiout
new UNRESOLVED: gdb.guile/scm-error.exp: backtrace printed
new UNRESOLVED: gdb.guile/scm-error.exp: error loading scm file caught
new UNRESOLVED: gdb.guile/scm-error.exp: error message printed
new UNRESOLVED: gdb.guile/scm-error.exp: guile
new UNRESOLVED: gdb.guile/scm-error.exp: no delayed error
new UNRESOLVED: gdb.guile/scm-error.exp: no error printed
new UNRESOLVED: gdb.guile/scm-error.exp: reset print-stack to default, post set/show tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to full, for backtrace test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error printing tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to none, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: source /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.guile/scm-error/scm-error-2.scm
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack full setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack none setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting of default
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to full
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to none
new UNRESOLVED: gdb.guile/scm-error.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-gsmob.exp: gu
new UNRESOLVED: gdb.guile/scm-gsmob.exp: guile
new UNRESOLVED: gdb.guile/scm-gsmob.exp: object-properties
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: verify guile support
==============================================

*** 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/93/93370e8e7b406cf0aeedcf57cf457c07d6a2c7e6//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/93/93370e8e7b406cf0aeedcf57cf457c07d6a2c7e6//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-13 13:44 [binutils-gdb] [gdb/testsuite] Update expected _gdb_major/_gdb_minor in default.exp gdb-buildbot
@ 2019-10-13 16:00 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-13 16:00 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/904

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        dfee856674428aa0137efc3051eac170955f9532

Subject of commit:
        [gdb/testsuite] Update expected _gdb_major/_gdb_minor in default.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/df/dfee856674428aa0137efc3051eac170955f9532/

*** Diff to previous build ***
==============================================
new FAIL: gdb.python/py-symtab.exp:
new UNRESOLVED: gdb.python/py-symtab.exp: can't run to main
new UNRESOLVED: gdb.python/py-symtab.exp: check if python 3
new UNRESOLVED: gdb.python/py-symtab.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.python/py-symtab.exp: verify python support
new UNRESOLVED: gdb.reverse/finish-reverse-bkpt.exp: can't run to main
new UNRESOLVED: gdb.reverse/finish-reverse-bkpt.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.reverse/insn-reverse.exp: run to main
new UNRESOLVED: gdb.reverse/until-precsave.exp: advance to factorial
new UNRESOLVED: gdb.reverse/until-precsave.exp: advance to marker2
new UNRESOLVED: gdb.reverse/until-precsave.exp: breakpoint at end of main
new UNRESOLVED: gdb.reverse/until-precsave.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.reverse/until-precsave.exp: finish to main
new UNRESOLVED: gdb.reverse/until-precsave.exp: kill process, prepare to debug log file
new UNRESOLVED: gdb.reverse/until-precsave.exp: reload core file
new UNRESOLVED: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial
new UNRESOLVED: gdb.reverse/until-precsave.exp: reverse-advance to marker2
new UNRESOLVED: gdb.reverse/until-precsave.exp: reverse-finish from marker2
new UNRESOLVED: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial
new UNRESOLVED: gdb.reverse/until-precsave.exp: run to end of main
new UNRESOLVED: gdb.reverse/until-precsave.exp: save process recfile
new UNRESOLVED: gdb.reverse/until-precsave.exp: set reverse execution
new UNRESOLVED: gdb.reverse/until-precsave.exp: turn on process record
new UNRESOLVED: gdb.reverse/until-precsave.exp: until factorial, recursive function
new UNRESOLVED: gdb.reverse/until-precsave.exp: until func, not called by current frame
new UNRESOLVED: gdb.reverse/until-precsave.exp: until line number
==============================================

*** 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/df/dfee856674428aa0137efc3051eac170955f9532//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/df/dfee856674428aa0137efc3051eac170955f9532//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-13 10:50 [binutils-gdb] gdb/testsuite: Add gdb_test_name variable gdb-buildbot
@ 2019-10-13 13:06 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-13 13:06 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/903

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        3d63690a0316d92cf248542ee12a3fc8b30152ea

Subject of commit:
        gdb/testsuite: Add gdb_test_name variable

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/3d/3d63690a0316d92cf248542ee12a3fc8b30152ea/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.guile/guile.exp: collect help from uiout
new UNRESOLVED: gdb.guile/guile.exp: guile
new UNRESOLVED: gdb.guile/guile.exp: show guile command - define zzq
new UNRESOLVED: gdb.guile/guile.exp: source -s source2.scm
new UNRESOLVED: gdb.guile/guile.exp: source source2.scm
new UNRESOLVED: gdb.guile/guile.exp: verify guile support
new UNRESOLVED: gdb.guile/guile.exp: verify help to uiout
new UNRESOLVED: gdb.guile/scm-gsmob.exp: gu
new UNRESOLVED: gdb.guile/scm-gsmob.exp: guile
new UNRESOLVED: gdb.guile/scm-gsmob.exp: object-properties
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-parameter.exp: Simple gdb boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: enum gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: error registering existing parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: file gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously ambiguously named boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set print s on
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: restricted gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: enum parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set invalid enum parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set print test-enum-param two
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: initial parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: new parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param bar.txt
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set print test-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 10
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 42
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: show test-restricted-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set print test-undoc-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: undocumented gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: verify guile support
new UNRESOLVED: gdb.python/py-lookup-type.exp: check if python 3
PASS -> UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type CARDINAL using language modula-2
PASS -> UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language c
PASS -> UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language objective-c
PASS -> UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language pascal
PASS -> UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type character using language ada
PASS -> UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type character using language fortran
PASS -> UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type int32 using language go
PASS -> UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type ucent using language d
PASS -> UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type ushort using language opencl
PASS -> UNRESOLVED: gdb.python/py-lookup-type.exp: set language ada
PASS -> UNRESOLVED: gdb.python/py-lookup-type.exp: set language c
PASS -> UNRESOLVED: gdb.python/py-lookup-type.exp: set language d
PASS -> UNRESOLVED: gdb.python/py-lookup-type.exp: set language fortran
PASS -> UNRESOLVED: gdb.python/py-lookup-type.exp: set language go
PASS -> UNRESOLVED: gdb.python/py-lookup-type.exp: set language modula-2
PASS -> UNRESOLVED: gdb.python/py-lookup-type.exp: set language objective-c
PASS -> UNRESOLVED: gdb.python/py-lookup-type.exp: set language opencl
PASS -> UNRESOLVED: gdb.python/py-lookup-type.exp: set language pascal
new UNRESOLVED: gdb.python/py-lookup-type.exp: verify python support
==============================================

*** 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/3d/3d63690a0316d92cf248542ee12a3fc8b30152ea//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/3d/3d63690a0316d92cf248542ee12a3fc8b30152ea//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-13  7:52 [binutils-gdb] x86/Intel: correct MOVSD and CMPSD handling gdb-buildbot
@ 2019-10-13 10:12 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-13 10:12 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/902

Author:
        Jan Beulich <jbeulich@suse.com>

Commit tested:
        d241b91073165f99fe404d9b38c65f03835ecaf4

Subject of commit:
        x86/Intel: correct MOVSD and CMPSD handling

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/d2/d241b91073165f99fe404d9b38c65f03835ecaf4/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=off: awatch: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=off: break: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=off: hbreak: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=off: rwatch: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=off: watch: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=on: awatch: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=on: break: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=on: hbreak: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=on: rwatch: can't run to main
new UNRESOLVED: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=on: watch: can't run to main
new FAIL: gdb.guile/scm-cmd.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-cmd.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-cmd.exp: verify guile support
new FAIL: gdb.guile/scm-frame-args.exp:
new UNRESOLVED: gdb.guile/scm-frame-args.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-frame-args.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-frame-args.exp: verify guile support
new FAIL: gdb.guile/scm-symbol.exp:
new UNRESOLVED: gdb.guile/scm-symbol.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-symbol.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-symbol.exp: guile
new UNRESOLVED: gdb.guile/scm-symbol.exp: lookup main
new UNRESOLVED: gdb.guile/scm-symbol.exp: lookup qq
new UNRESOLVED: gdb.guile/scm-symbol.exp: print line number of qq
new UNRESOLVED: gdb.guile/scm-symbol.exp: print value of main
new UNRESOLVED: gdb.guile/scm-symbol.exp: print value of qq
new UNRESOLVED: gdb.guile/scm-symbol.exp: print whether qq needs a frame
new UNRESOLVED: gdb.guile/scm-symbol.exp: test
new UNRESOLVED: gdb.guile/scm-symbol.exp: verify guile support
new FAIL: gdb.guile/scm-symtab.exp:
new UNRESOLVED: gdb.guile/scm-symtab.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-symtab.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-symtab.exp: verify guile support
new FAIL: gdb.guile/types-module.exp:
new UNRESOLVED: gdb.guile/types-module.exp: can't run to main
new UNRESOLVED: gdb.guile/types-module.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/types-module.exp: verify guile support
new UNRESOLVED: gdb.reverse/insn-reverse.exp: run to main
==============================================

*** 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/d2/d241b91073165f99fe404d9b38c65f03835ecaf4//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/d2/d241b91073165f99fe404d9b38c65f03835ecaf4//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-13  4:56 [binutils-gdb] Bogus "final link failed" messages gdb-buildbot
@ 2019-10-13  7:14 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-13  7:14 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/901

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        847d518374be1c73b812e312a26341115d3f6f5a

Subject of commit:
        Bogus "final link failed" messages

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/84/847d518374be1c73b812e312a26341115d3f6f5a/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/access_tagged_param.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/array_subscript_addr.exp: compilation p.adb
PASS -> FAIL: gdb.ada/arrayidx.exp: compilation p.adb
PASS -> FAIL: gdb.ada/attr_ref_and_charlit.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/byte_packed_arr.exp: compilation reprod_main.adb
PASS -> FAIL: gdb.ada/enum_idx_packed.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/expr_delims.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/int_deref.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/maint_with_ada.exp: compilation var_arr_typedef.adb
PASS -> FAIL: gdb.ada/mi_catch_ex_hand.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/mod_from_name.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/optim_drec.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/str_uninit.exp: compilation parse.adb
PASS -> FAIL: gdb.ada/taft_type.exp: compilation p.adb
PASS -> FAIL: gdb.ada/tick_last_segv.exp: compilation foo.adb
PASS -> UNRESOLVED: gdb.base/radix.exp: Output radix unchanged after rejecting 0
PASS -> UNRESOLVED: gdb.base/radix.exp: Reject input-radix 0
PASS -> UNRESOLVED: gdb.base/radix.exp: Reject input-radix 1
PASS -> UNRESOLVED: gdb.base/radix.exp: Reject output-radix 0
PASS -> UNRESOLVED: gdb.base/radix.exp: Reject output-radix 1
PASS -> UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: input radix unchanged after rejecting 0
PASS -> UNRESOLVED: gdb.base/radix.exp: input radix unchanged after rejecting 1
PASS -> UNRESOLVED: gdb.base/radix.exp: output radix unchanged after rejecting 1
PASS -> UNRESOLVED: gdb.base/radix.exp: output radix unchanged after rejection through set radix command
PASS -> UNRESOLVED: gdb.base/radix.exp: print
PASS -> UNRESOLVED: gdb.base/radix.exp: print -100; expect -100; input radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print -100; expect -256; input radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print -100; expect -4; input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: print -100; expect -64; input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print -100; expect -9; input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: print -101; expect -101; input radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print -101; expect -10; input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: print -101; expect -257; input radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print -101; expect -5; input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: print -101; expect -65; input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print -10; expect -10; input radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print -10; expect -16; input radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print -10; expect -2; input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: print -10; expect -3; input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: print -10; expect -8; input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print -11; expect -11; input radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print -11; expect -17; input radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print -11; expect -3; input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: print -11; expect -4; input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: print -11; expect -9; input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print -12; expect -12; input radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print -20; expect -16; input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print -2; expect Invalid number "2"\.; input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: print -9; expect Invalid number "9".; input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print 010; expect 010; output radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; output radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; output radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; output radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 17; output radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print 0xf; expect f; output radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print 100; expect 100; input radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print 100; expect 100; output radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print 100; expect 144; output radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print 100; expect 256; input radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print 100; expect 4; input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: print 100; expect 64; input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print 100; expect 64; output radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print 100; expect 9; input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: print 10101; expect 10101; input radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print 10101; expect 21; input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: print 10101; expect 4161; input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print 10101; expect 65793; input radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print 10101; expect 91; input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: print 101; expect 101; input radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print 101; expect 10; input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: print 101; expect 257; input radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print 101; expect 5; input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: print 101; expect 65; input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print 10; expect 10; input radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print 10; expect 10; output radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print 10; expect 12; output radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print 10; expect 16; input radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print 10; expect 2; input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: print 10; expect 3; input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: print 10; expect 8; input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print 10; expect a; output radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print 11; expect 11; input radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print 11; expect 17; input radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print 11; expect 3; input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: print 11; expect 4; input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: print 11; expect 9; input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 8
KFAIL -> UNRESOLVED: gdb.base/radix.exp: print 20.; expect 14; output radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; output radix 10
KFAIL -> UNRESOLVED: gdb.base/radix.exp: print 20.; expect 24; output radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print 20; expect 16; input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print 20; expect 6; input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: print 2; expect 2; input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: print 30; expect Invalid number "30"\.; input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: print 3; expect Invalid number "3"\.; input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: print 4; expect Invalid number "4"\.; input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: print 8; expect Invalid number "8".; input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: reset radices
PASS -> UNRESOLVED: gdb.base/radix.exp: set input-radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: set input-radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: set input-radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: set input-radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: set input-radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: set output-radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: set output-radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: set output-radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: set radix 7 rejected
PASS -> UNRESOLVED: gdb.base/radix.exp: show radix, input radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: show radix, input radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: show radix, input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: show radix, input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: show radix, input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: show radix, output radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: show radix, output radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: show radix, output radix 8
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: disassemble mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: p mymain_label - mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: x/2i mymain+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i main+
==============================================

*** 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/84/847d518374be1c73b812e312a26341115d3f6f5a//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/84/847d518374be1c73b812e312a26341115d3f6f5a//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-13  1:26 [binutils-gdb] PowerPC TLS miscounting PLT for __tls_get_addr gdb-buildbot
@ 2019-10-13  4:12 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-13  4:12 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/900

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        7d04a20ae4af0f1f6e75ec642413c27de4c1e1b8

Subject of commit:
        PowerPC TLS miscounting PLT for __tls_get_addr

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/7d/7d04a20ae4af0f1f6e75ec642413c27de4c1e1b8/

*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/O2_float_param.exp: compilation foo.adb
new FAIL: gdb.ada/access_to_unbounded_array.exp: compilation foo.adb
new FAIL: gdb.ada/addr_arith.exp: compilation foo_na07_019.adb
new FAIL: gdb.ada/aliased_array.exp: compilation foo.adb
new FAIL: gdb.ada/arr_acc_idx_w_gap.exp: compilation enum_with_gap_main.adb
new FAIL: gdb.ada/arr_arr.exp: compilation foo.adb
new FAIL: gdb.ada/arr_enum_idx_w_gap.exp: compilation foo_q418_043.adb
new FAIL: gdb.ada/array_bounds.exp: compilation bar.adb
new FAIL: gdb.ada/array_char_idx.exp: compilation foo.adb
new FAIL: gdb.ada/array_of_variable_length.exp: compilation foo.adb
new FAIL: gdb.ada/array_ptr_renaming.exp: compilation foo.adb
new FAIL: gdb.ada/array_return.exp: compilation p.adb
new UNRESOLVED: gdb.ada/array_subscript_addr.exp: print a
new FAIL: gdb.ada/arraydim.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/arrayidx.exp: print e_one_two_three
new UNRESOLVED: gdb.ada/arrayidx.exp: print e_one_two_three, indexes off
new UNRESOLVED: gdb.ada/arrayidx.exp: print empty
new UNRESOLVED: gdb.ada/arrayidx.exp: print empty, indexes off
new UNRESOLVED: gdb.ada/arrayidx.exp: print few_reps
new UNRESOLVED: gdb.ada/arrayidx.exp: print few_reps, indexes off
new UNRESOLVED: gdb.ada/arrayidx.exp: print many_reps
new UNRESOLVED: gdb.ada/arrayidx.exp: print many_reps, indexes off
new UNRESOLVED: gdb.ada/arrayidx.exp: print one_two_three
new UNRESOLVED: gdb.ada/arrayidx.exp: print one_two_three, indexes off
new UNRESOLVED: gdb.ada/arrayidx.exp: print p_one_two_three
new UNRESOLVED: gdb.ada/arrayidx.exp: print p_one_two_three, indexes off
new UNRESOLVED: gdb.ada/arrayidx.exp: print r_two_three
new UNRESOLVED: gdb.ada/arrayidx.exp: print r_two_three, indexes off
new UNRESOLVED: gdb.ada/arrayidx.exp: print u_one_two_three
new UNRESOLVED: gdb.ada/arrayidx.exp: print u_one_two_three, indexes off
new UNRESOLVED: gdb.ada/arrayidx.exp: set print array-indexes off
new UNRESOLVED: gdb.ada/arrayidx.exp: set print array-indexes on
new FAIL: gdb.ada/arrayparam.exp: compilation foo.adb
new FAIL: gdb.ada/arrayptr.exp: compilation foo.adb
new FAIL: gdb.ada/assign_arr.exp: compilation main_p324_051.adb
new FAIL: gdb.ada/atomic_enum.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/attr_ref_and_charlit.exp: gdb_test
new UNRESOLVED: gdb.ada/attr_ref_and_charlit.exp: print s'first
new UNRESOLVED: gdb.ada/attr_ref_and_charlit.exp: print s'last
new UNRESOLVED: gdb.ada/attr_ref_and_charlit.exp: print s
new FAIL: gdb.ada/bad-task-bp-keyword.exp: compilation foo.adb
new FAIL: gdb.ada/big_packed_array.exp: compilation foo_ra24_010.adb
new FAIL: gdb.ada/bp_c_mixed_case.exp: compilation foo_h731_021.adb
new FAIL: gdb.ada/bp_enum_homonym.exp: compilation p.adb
new FAIL: gdb.ada/bp_fun_addr.exp: compilation bp_fun_addr.adb
new FAIL: gdb.ada/bp_inlined_func.exp: compilation foo.adb
new FAIL: gdb.ada/bp_on_var.exp: compilation foo.adb
new FAIL: gdb.ada/bp_range_type.exp: compilation foo.adb
new FAIL: gdb.ada/bp_reset.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/byte_packed_arr.exp: print broken
new FAIL: gdb.ada/catch_assert_if.exp: compilation bla.adb
new FAIL: gdb.ada/catch_ex.exp: compilation foo.adb
new FAIL: gdb.ada/char_enum.exp: compilation foo.adb
new FAIL: gdb.ada/char_param.exp: compilation foo.adb
new FAIL: gdb.ada/complete.exp: compilation foo.adb
new FAIL: gdb.ada/cond_lang.exp: compilation a.adb
new FAIL: gdb.ada/dgopt.exp: compilation x.adb
new FAIL: gdb.ada/disc_arr_bound.exp: compilation foo_n612_026.adb
new FAIL: gdb.ada/display_nested.exp: compilation foo.adb
new FAIL: gdb.ada/dyn_arrayidx.exp: compilation foo.adb
new FAIL: gdb.ada/dyn_loc.exp: compilation p.adb
new FAIL: gdb.ada/dyn_stride.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/enum_idx_packed.exp: print full
new UNRESOLVED: gdb.ada/enum_idx_packed.exp: print full'first
new FAIL: gdb.ada/excep_handle.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/expr_delims.exp: break foo.adb:23
new UNRESOLVED: gdb.ada/expr_delims.exp: check that watchpoint is set correctly.
new UNRESOLVED: gdb.ada/expr_delims.exp: combination of 'if' and 'thread' delimiters.
new UNRESOLVED: gdb.ada/expr_delims.exp: continue
new UNRESOLVED: gdb.ada/expr_delims.exp: delete 1
new UNRESOLVED: gdb.ada/expr_delims.exp: print variable 'thread'
new UNRESOLVED: gdb.ada/expr_delims.exp: set conditional watchpoint.
new UNRESOLVED: gdb.ada/expr_delims.exp: set plain watchpoint on variable 'thread'
new FAIL: gdb.ada/expr_with_funcall.exp: compilation expr_r821_013.adb
new FAIL: gdb.ada/exprs.exp: compilation p.adb
new FAIL: gdb.ada/fin_fun_out.exp: compilation foo_o525_013.adb
new FAIL: gdb.ada/fixed_cmp.exp: compilation fixed.adb
new FAIL: gdb.ada/fixed_points.exp: compilation fixed_points.adb
new FAIL: gdb.ada/float_param.exp: compilation foo.adb
new FAIL: gdb.ada/formatted_ref.exp: compilation formatted_ref.adb
new FAIL: gdb.ada/frame_arg_lang.exp: compilation bla.adb
new FAIL: gdb.ada/frame_args.exp: compilation foo.adb
new FAIL: gdb.ada/fullname_bp.exp: compilation foo.adb
new FAIL: gdb.ada/fun_addr.exp: compilation foo.adb
new FAIL: gdb.ada/fun_in_declare.exp: compilation foo.adb
new FAIL: gdb.ada/fun_overload_menu.exp: compilation foo.adb
new FAIL: gdb.ada/fun_renaming.exp: compilation fun_renaming.adb
new FAIL: gdb.ada/funcall_param.exp: compilation foo.adb
new FAIL: gdb.ada/funcall_ptr.exp: compilation foo.adb
new FAIL: gdb.ada/funcall_ref.exp: compilation foo.adb
new FAIL: gdb.ada/homonym.exp: compilation homonym_main.adb
new FAIL: gdb.ada/info_addr_mixed_case.exp: compilation foo.adb
new FAIL: gdb.ada/info_exc.exp: compilation foo.adb
new FAIL: gdb.ada/info_locals_renaming.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/int_deref.exp: print watch'address
new FAIL: gdb.ada/interface.exp: compilation foo.adb
new FAIL: gdb.ada/iwide.exp: compilation p.adb
new FAIL: gdb.ada/lang_switch.exp: compilation lang_switch.adb
new FAIL: gdb.ada/length_cond.exp: compilation length_cond.adb
new UNRESOLVED: gdb.ada/maint_with_ada.exp: maintenance check-psymtabs
new UNRESOLVED: gdb.ada/maint_with_ada.exp: maintenance check-symtabs
new UNRESOLVED: gdb.ada/maint_with_ada.exp: setting breakpoint at Do_Nothing
new UNRESOLVED: gdb.ada/maint_with_ada.exp: setting breakpoint at Var_Arr_Typedef
new FAIL: gdb.ada/maint_with_ada.exp: setting breakpoint at adainit
new FAIL: gdb.ada/mi_catch_assert.exp: compilation bla.adb
new UNRESOLVED: gdb.ada/mi_catch_ex_hand.exp: cannot run to main, testcase aborted
new UNRESOLVED: gdb.ada/mi_catch_ex_hand.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.ada/mi_ex_cond.exp: compilation foo.adb
new FAIL: gdb.ada/mi_exc_info.exp: compilation foo.adb
new FAIL: gdb.ada/mi_interface.exp: compilation foo.adb
new FAIL: gdb.ada/mi_ref_changeable.exp: compilation foo_rb20_056.adb
new FAIL: gdb.ada/mi_string_access.exp: compilation bar.adb
new FAIL: gdb.ada/mi_task_arg.exp: compilation task_switch.adb
new FAIL: gdb.ada/mi_task_info.exp: compilation task_switch.adb
new FAIL: gdb.ada/mi_var_array.exp: compilation bar.adb
new FAIL: gdb.ada/mi_var_union.exp: compilation bar.adb
new FAIL: gdb.ada/n_arr_bound.exp: compilation foo.adb
new FAIL: gdb.ada/notcplusplus.exp: compilation foo.adb
new FAIL: gdb.ada/null_array.exp: compilation foo.adb
new FAIL: gdb.ada/null_record.exp: compilation null_record.adb
new FAIL: gdb.ada/operator_bp.exp: compilation ops_test.adb
new FAIL: gdb.ada/out_of_line_in_inlined.exp: compilation foo_o224_021.adb
new FAIL: gdb.ada/packed_array.exp: compilation pa.adb
new FAIL: gdb.ada/packed_array_assign.exp: compilation tester.adb
new FAIL: gdb.ada/packed_tagged.exp: compilation comp_bug.adb
new FAIL: gdb.ada/pckd_arr_ren.exp: compilation foo.adb
new FAIL: gdb.ada/pckd_neg.exp: compilation foo_o508_021.adb
new FAIL: gdb.ada/pkd_arr_elem.exp: compilation failure.adb
new FAIL: gdb.ada/pp-rec-component.exp: compilation foo.adb
new FAIL: gdb.ada/print_chars.exp: compilation foo.adb
new FAIL: gdb.ada/print_pc.exp: compilation dummy.adb
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: ptype 3 * 2.0
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: ptype 3 / 2.0
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: set lang ada
new FAIL: gdb.ada/ptype_array.exp: compilation foo.adb
new FAIL: gdb.ada/ptype_field.exp: compilation foo.adb
new FAIL: gdb.ada/ptype_tagged_param.exp: compilation foo.adb
new FAIL: gdb.ada/py_range.exp: compilation foo.adb
new FAIL: gdb.ada/py_taft.exp: compilation main.adb
new FAIL: gdb.ada/rdv_wait.exp: compilation foo.adb
new FAIL: gdb.ada/rec_comp.exp: compilation bar_o203_012.adb
new FAIL: gdb.ada/rec_return.exp: compilation foo.adb
new FAIL: gdb.ada/ref_param.exp: compilation foo.adb
new FAIL: gdb.ada/ref_tick_size.exp: compilation p.adb
new FAIL: gdb.ada/repeat_dyn.exp: compilation foo_oc22_002.adb
new FAIL: gdb.ada/same_component_name.exp: compilation foo.adb
new FAIL: gdb.ada/same_enum.exp: compilation a.adb
new FAIL: gdb.ada/scoped_watch.exp: compilation foo_p708_025.adb
new FAIL: gdb.ada/set_pckd_arr_elt.exp: compilation foo.adb
new FAIL: gdb.ada/set_wstr.exp: compilation a.adb
new FAIL: gdb.ada/small_reg_param.exp: compilation foo.adb
new FAIL: gdb.ada/str_binop_equal.exp: compilation foo_p211_061.adb
new FAIL: gdb.ada/sym_print_name.exp: compilation foo.adb
new FAIL: gdb.ada/tagged.exp: compilation foo.adb
new FAIL: gdb.ada/tagged_access.exp: compilation p.adb
new FAIL: gdb.ada/tagged_not_init.exp: compilation foo.adb
new FAIL: gdb.ada/task_bp.exp: compilation foo.adb
new FAIL: gdb.ada/task_switch_in_core.exp: compilation crash.adb
new FAIL: gdb.ada/tasks.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/tick_last_segv.exp: print short-integer'first
new UNRESOLVED: gdb.ada/tick_last_segv.exp: print short-integer'last
new FAIL: gdb.ada/tick_length_array_enum_idx.exp: compilation foo_n207_004.adb
new FAIL: gdb.ada/type_coercion.exp: compilation assign.adb
new FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: compilation foo.adb
new FAIL: gdb.ada/var_arr_attrs.exp: compilation foo_o115_002.adb
new UNRESOLVED: gdb.ada/var_rec_arr.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/var_rec_arr.exp: print a1
new UNRESOLVED: gdb.ada/var_rec_arr.exp: print a2
new UNRESOLVED: gdb.ada/var_rec_arr.exp: ptype a1
new FAIL: gdb.ada/variant_record_packed_array.exp: compilation foo.adb
new FAIL: gdb.ada/varsize_limit.exp: compilation vsizelim.adb
new FAIL: gdb.ada/vla.exp: compilation vla.adb
new FAIL: gdb.ada/watch_minus_l.exp: compilation foo_ra10_006.adb
new FAIL: gdb.ada/whatis_array_val.exp: compilation foo.adb
new FAIL: gdb.ada/widewide.exp: compilation foo.adb
new FAIL: gdb.ada/win_fu_syms.exp: compilation foo.adb
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: set tdesc filename $srcdir/gdb.arch/arc-tdesc-cpu.xml
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: set tdesc filename /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.arch/arc-tdesc-cpu/trivial.xml
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: setting HS architecture
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: .text is readable
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: complete set architecture i386
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: complete set gnutarget
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: load core file
new UNRESOLVED: gdb.base/alias.exp: -a print elements 47
new UNRESOLVED: gdb.base/alias.exp: abbrev -a not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set2 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set3 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set4 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set5 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set6 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: alias -a -- -a = set
new UNRESOLVED: gdb.base/alias.exp: alias -a -- set6 = set
new UNRESOLVED: gdb.base/alias.exp: alias -a set2=set
new UNRESOLVED: gdb.base/alias.exp: alias -a set3= set
new UNRESOLVED: gdb.base/alias.exp: alias -a set4 =set
new UNRESOLVED: gdb.base/alias.exp: alias -a set5 = set
new UNRESOLVED: gdb.base/alias.exp: alias assigne
new UNRESOLVED: gdb.base/alias.exp: alias assigne imprime
new UNRESOLVED: gdb.base/alias.exp: alias assigne imprime limite-elements
new UNRESOLVED: gdb.base/alias.exp: alias foo=bar
new UNRESOLVED: gdb.base/alias.exp: alias set pr elms = set p elem
new UNRESOLVED: gdb.base/alias.exp: alias set print max-elements using assigne imprime
new UNRESOLVED: gdb.base/alias.exp: alias set2=set
new UNRESOLVED: gdb.base/alias.exp: alias spe = set p elem
new UNRESOLVED: gdb.base/alias.exp: assigne imprime elements 53
new UNRESOLVED: gdb.base/alias.exp: assigne imprime limite-elements 54
new UNRESOLVED: gdb.base/alias.exp: assigne imprime prefix not defined
new UNRESOLVED: gdb.base/alias.exp: assigne print elements 52
new UNRESOLVED: gdb.base/alias.exp: help set print
new UNRESOLVED: gdb.base/alias.exp: mismatched length
new UNRESOLVED: gdb.base/alias.exp: mismatched prefix
new UNRESOLVED: gdb.base/alias.exp: set imprime elements 55
new UNRESOLVED: gdb.base/alias.exp: set imprime prefix not defined
new UNRESOLVED: gdb.base/alias.exp: set pr elms 51
new UNRESOLVED: gdb.base/alias.exp: set print limite-elements 56
new UNRESOLVED: gdb.base/alias.exp: set print max-elements 57
new UNRESOLVED: gdb.base/alias.exp: set2 print elements 42
new UNRESOLVED: gdb.base/alias.exp: set3 print elements 43
new UNRESOLVED: gdb.base/alias.exp: set4 print elements 44
new UNRESOLVED: gdb.base/alias.exp: set5 print elements 45
new UNRESOLVED: gdb.base/alias.exp: set6 print elements 46
new UNRESOLVED: gdb.base/alias.exp: spe 50
new UNRESOLVED: gdb.base/alias.exp: verify -a
new UNRESOLVED: gdb.base/alias.exp: verify 52
new UNRESOLVED: gdb.base/alias.exp: verify 53
new UNRESOLVED: gdb.base/alias.exp: verify 54
new UNRESOLVED: gdb.base/alias.exp: verify 55
new UNRESOLVED: gdb.base/alias.exp: verify 56
new UNRESOLVED: gdb.base/alias.exp: verify 57
new UNRESOLVED: gdb.base/alias.exp: verify set pr elms
new UNRESOLVED: gdb.base/alias.exp: verify set2
new UNRESOLVED: gdb.base/alias.exp: verify set3
new UNRESOLVED: gdb.base/alias.exp: verify set4
new UNRESOLVED: gdb.base/alias.exp: verify set5
new UNRESOLVED: gdb.base/alias.exp: verify set6
new UNRESOLVED: gdb.base/alias.exp: verify spe
new FAIL: gdb.base/all-architectures-0.exp: all passed
new FAIL: gdb.base/all-architectures-0.exp: at least one architecture
new FAIL: gdb.base/all-architectures-0.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-0.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-0.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-0.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-1.exp: all passed
new FAIL: gdb.base/all-architectures-1.exp: at least one architecture
new FAIL: gdb.base/all-architectures-1.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-1.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-1.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-1.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-2.exp: all passed
new FAIL: gdb.base/all-architectures-2.exp: at least one architecture
new FAIL: gdb.base/all-architectures-2.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-2.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-2.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-2.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-3.exp: all passed
new FAIL: gdb.base/all-architectures-3.exp: at least one architecture
new FAIL: gdb.base/all-architectures-3.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-3.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-3.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-3.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-4.exp: all passed
new FAIL: gdb.base/all-architectures-4.exp: at least one architecture
new FAIL: gdb.base/all-architectures-4.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-4.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-4.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-4.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-5.exp: all passed
new FAIL: gdb.base/all-architectures-5.exp: at least one architecture
new FAIL: gdb.base/all-architectures-5.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-5.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-5.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-5.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-6.exp: all passed
new FAIL: gdb.base/all-architectures-6.exp: at least one architecture
new FAIL: gdb.base/all-architectures-6.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-6.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-7.exp: all passed
new FAIL: gdb.base/all-architectures-7.exp: at least one architecture
new FAIL: gdb.base/all-architectures-7.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-7.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-7.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-7.exp: set max-completions unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: break main
new UNRESOLVED: gdb.base/argv0-symlink.exp: p argc
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print elements 200
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print elements unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print repeats 200
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print repeats unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: show print elements
new UNRESOLVED: gdb.base/argv0-symlink.exp: show print repeats
new UNRESOLVED: gdb.base/bad-file.exp: directory
new UNRESOLVED: gdb.base/bad-file.exp: neither file nor directory
new UNRESOLVED: gdb.base/bad-file.exp: non-existent file
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "info source": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "set not-a-thing 4" -x good-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "set not-a-thing 4": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -jslkflsdjlkfjlksdjf: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x bad-commands -ex "info source": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x bad-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands -ex "set not-a-thing 4": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands -x bad-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch: spawn
new UNRESOLVED: gdb.base/bitops.exp: print value of !0
new UNRESOLVED: gdb.base/bitops.exp: print value of !1
new UNRESOLVED: gdb.base/bitops.exp: print value of !10
new UNRESOLVED: gdb.base/bitops.exp: print value of !100
new UNRESOLVED: gdb.base/bitops.exp: print value of !1000
new UNRESOLVED: gdb.base/bitops.exp: print value of !2
new UNRESOLVED: gdb.base/bitops.exp: print value of
new UNRESOLVED: gdb.base/bitops.exp: print value of -!0
new UNRESOLVED: gdb.base/bitops.exp: print value of -1 < 0 > 1
new UNRESOLVED: gdb.base/bitops.exp: print value of -3>4
new UNRESOLVED: gdb.base/bitops.exp: print value of 0 == 8 > 128 >> 1 + 2 * 2
new UNRESOLVED: gdb.base/bitops.exp: print value of 0 || 1 && 0 | 0 ^ 0 == 8
new UNRESOLVED: gdb.base/bitops.exp: print value of 0 || 1 && 0 | 0 ^ 0 == 8 > 128 >>1 +2 *2
new UNRESOLVED: gdb.base/bitops.exp: print value of 0.0 || 0
new UNRESOLVED: gdb.base/bitops.exp: print value of 0.0 || 1.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 1.0 || 0
new UNRESOLVED: gdb.base/bitops.exp: print value of 10 & 5
new UNRESOLVED: gdb.base/bitops.exp: print value of 10 ^ 5
new UNRESOLVED: gdb.base/bitops.exp: print value of 10 | 5
new UNRESOLVED: gdb.base/bitops.exp: print value of 15 ^ 10 ^ 5 ^ 7
new UNRESOLVED: gdb.base/bitops.exp: print value of 2 > -3
new UNRESOLVED: gdb.base/bitops.exp: print value of 3 * 2 / 4.0 * 2.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3!=3.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3!=5.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3.5 < -4.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3.5 < 4.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3==3.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3==4.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3>=2.5
new UNRESOLVED: gdb.base/bitops.exp: print value of 3>=4.5
new UNRESOLVED: gdb.base/bitops.exp: print value of 8 << 2 >> 4
new UNRESOLVED: gdb.base/bitops.exp: print value of ~-!0
new UNRESOLVED: gdb.base/catch-follow-exec.exp: could not run to main
new UNRESOLVED: gdb.base/catch-follow-exec.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/catch-fork-static.exp: run to fork
new UNRESOLVED: gdb.base/command-line-input.exp: print 1\\n + 2
new UNRESOLVED: gdb.base/command-line-input.exp: print 1\\n2
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: cmd complete ""
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: set max-completions 1
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: show editing
new UNRESOLVED: gdb.base/complete-empty.exp: show editing
new UNRESOLVED: gdb.base/dcache-line-read-error.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/default.exp:
new UNRESOLVED: gdb.base/default.exp: add-symbol-file
new UNRESOLVED: gdb.base/default.exp: append
new UNRESOLVED: gdb.base/default.exp: append binary
new UNRESOLVED: gdb.base/default.exp: append binary memory
new UNRESOLVED: gdb.base/default.exp: append binary value
new UNRESOLVED: gdb.base/default.exp: append memory
new UNRESOLVED: gdb.base/default.exp: append value
new UNRESOLVED: gdb.base/default.exp: call
new UNRESOLVED: gdb.base/default.exp: catch
new UNRESOLVED: gdb.base/default.exp: cd
new UNRESOLVED: gdb.base/default.exp: check if python 3
new UNRESOLVED: gdb.base/default.exp: clear
new UNRESOLVED: gdb.base/default.exp: commands
new UNRESOLVED: gdb.base/default.exp: condition
new UNRESOLVED: gdb.base/default.exp: continue
new UNRESOLVED: gdb.base/default.exp: continue "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: core-file
new UNRESOLVED: gdb.base/default.exp: define
new UNRESOLVED: gdb.base/default.exp: delete
new UNRESOLVED: gdb.base/default.exp: delete "d" abbreviation
new UNRESOLVED: gdb.base/default.exp: delete breakpoints
new UNRESOLVED: gdb.base/default.exp: delete display prompt
new UNRESOLVED: gdb.base/default.exp: detach
new UNRESOLVED: gdb.base/default.exp: directory prompt
new UNRESOLVED: gdb.base/default.exp: disable
new UNRESOLVED: gdb.base/default.exp: disable "dis" abbreviation
new UNRESOLVED: gdb.base/default.exp: disable "disa" abbreviation
new UNRESOLVED: gdb.base/default.exp: disable breakpoints
new UNRESOLVED: gdb.base/default.exp: disable display
new UNRESOLVED: gdb.base/default.exp: disassemble
new UNRESOLVED: gdb.base/default.exp: display
new UNRESOLVED: gdb.base/default.exp: do
new UNRESOLVED: gdb.base/default.exp: document
new UNRESOLVED: gdb.base/default.exp: down
new UNRESOLVED: gdb.base/default.exp: down-silently
new UNRESOLVED: gdb.base/default.exp: dump
new UNRESOLVED: gdb.base/default.exp: dump binary
new UNRESOLVED: gdb.base/default.exp: dump binary memory
new UNRESOLVED: gdb.base/default.exp: dump binary value
new UNRESOLVED: gdb.base/default.exp: dump ihex
new UNRESOLVED: gdb.base/default.exp: dump ihex memory
new UNRESOLVED: gdb.base/default.exp: dump ihex value
new UNRESOLVED: gdb.base/default.exp: dump memory
new UNRESOLVED: gdb.base/default.exp: dump srec
new UNRESOLVED: gdb.base/default.exp: dump srec memory
new UNRESOLVED: gdb.base/default.exp: dump srec value
new UNRESOLVED: gdb.base/default.exp: dump tekhex
new UNRESOLVED: gdb.base/default.exp: dump tekhex memory
new UNRESOLVED: gdb.base/default.exp: dump tekhex value
new UNRESOLVED: gdb.base/default.exp: dump value
new UNRESOLVED: gdb.base/default.exp: echo
new UNRESOLVED: gdb.base/default.exp: enable
new UNRESOLVED: gdb.base/default.exp: enable breakpoints
new UNRESOLVED: gdb.base/default.exp: enable breakpoints delete
new UNRESOLVED: gdb.base/default.exp: enable breakpoints once
new UNRESOLVED: gdb.base/default.exp: enable delete
new UNRESOLVED: gdb.base/default.exp: enable display
new UNRESOLVED: gdb.base/default.exp: enable once
new UNRESOLVED: gdb.base/default.exp: fg
new UNRESOLVED: gdb.base/default.exp: finish
new UNRESOLVED: gdb.base/default.exp: forward-search
new UNRESOLVED: gdb.base/default.exp: frame
new UNRESOLVED: gdb.base/default.exp: frame "f" abbreviation
new UNRESOLVED: gdb.base/default.exp: gcore
new UNRESOLVED: gdb.base/default.exp: generate-core-file
new UNRESOLVED: gdb.base/default.exp: handle
new UNRESOLVED: gdb.base/default.exp: help
new UNRESOLVED: gdb.base/default.exp: help "h" abbreviation
new UNRESOLVED: gdb.base/default.exp: ignore
new UNRESOLVED: gdb.base/default.exp: info
new UNRESOLVED: gdb.base/default.exp: info "i" abbreviation
new UNRESOLVED: gdb.base/default.exp: info address
new UNRESOLVED: gdb.base/default.exp: info all-registers
new UNRESOLVED: gdb.base/default.exp: info args
new UNRESOLVED: gdb.base/default.exp: info bogus-gdb-command
new UNRESOLVED: gdb.base/default.exp: info breakpoints
new UNRESOLVED: gdb.base/default.exp: info copying
new UNRESOLVED: gdb.base/default.exp: info display
new UNRESOLVED: gdb.base/default.exp: info files
new UNRESOLVED: gdb.base/default.exp: info float
new UNRESOLVED: gdb.base/default.exp: info frame
new UNRESOLVED: gdb.base/default.exp: info frame "f" abbreviation
new UNRESOLVED: gdb.base/default.exp: info functions
new UNRESOLVED: gdb.base/default.exp: info locals
new UNRESOLVED: gdb.base/default.exp: info program
new UNRESOLVED: gdb.base/default.exp: info registers
new UNRESOLVED: gdb.base/default.exp: info set
new UNRESOLVED: gdb.base/default.exp: info source
new UNRESOLVED: gdb.base/default.exp: info sources
new UNRESOLVED: gdb.base/default.exp: info stack
new UNRESOLVED: gdb.base/default.exp: info stack "s" abbreviation
new UNRESOLVED: gdb.base/default.exp: info symbol
new UNRESOLVED: gdb.base/default.exp: info target
new UNRESOLVED: gdb.base/default.exp: info terminal
new UNRESOLVED: gdb.base/default.exp: info threads
new UNRESOLVED: gdb.base/default.exp: info types
new UNRESOLVED: gdb.base/default.exp: info variables
new UNRESOLVED: gdb.base/default.exp: info vector
new UNRESOLVED: gdb.base/default.exp: info warranty
new UNRESOLVED: gdb.base/default.exp: info watchpoints
new UNRESOLVED: gdb.base/default.exp: inspect
new UNRESOLVED: gdb.base/default.exp: jump
new UNRESOLVED: gdb.base/default.exp: kill
new UNRESOLVED: gdb.base/default.exp: list
new UNRESOLVED: gdb.base/default.exp: list "l" abbreviation
new UNRESOLVED: gdb.base/default.exp: load
new UNRESOLVED: gdb.base/default.exp: next
new UNRESOLVED: gdb.base/default.exp: next "n" abbreviation
new UNRESOLVED: gdb.base/default.exp: nexti
new UNRESOLVED: gdb.base/default.exp: nexti "ni" abbreviation
new UNRESOLVED: gdb.base/default.exp: output
new UNRESOLVED: gdb.base/default.exp: overlay
new UNRESOLVED: gdb.base/default.exp: overlay auto
new UNRESOLVED: gdb.base/default.exp: overlay list
new UNRESOLVED: gdb.base/default.exp: overlay manual #1
new UNRESOLVED: gdb.base/default.exp: overlay manual #2
new UNRESOLVED: gdb.base/default.exp: overlay map #1
new UNRESOLVED: gdb.base/default.exp: overlay map #2
new UNRESOLVED: gdb.base/default.exp: overlay off
new UNRESOLVED: gdb.base/default.exp: overlay on
new UNRESOLVED: gdb.base/default.exp: overlay unmap #1
new UNRESOLVED: gdb.base/default.exp: overlay unmap #2
new UNRESOLVED: gdb.base/default.exp: print
new UNRESOLVED: gdb.base/default.exp: print "p" abbreviation
new UNRESOLVED: gdb.base/default.exp: printf
new UNRESOLVED: gdb.base/default.exp: ptype
new UNRESOLVED: gdb.base/default.exp: pwd
new UNRESOLVED: gdb.base/default.exp: rbreak
new UNRESOLVED: gdb.base/default.exp: restore
new UNRESOLVED: gdb.base/default.exp: return
new UNRESOLVED: gdb.base/default.exp: reverse-search
new UNRESOLVED: gdb.base/default.exp: search
new UNRESOLVED: gdb.base/default.exp: section
new UNRESOLVED: gdb.base/default.exp: set
new UNRESOLVED: gdb.base/default.exp: set annotate
new UNRESOLVED: gdb.base/default.exp: set args
new UNRESOLVED: gdb.base/default.exp: set check "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check "ch" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check "check" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check range
new UNRESOLVED: gdb.base/default.exp: set check type
new UNRESOLVED: gdb.base/default.exp: set complaints
new UNRESOLVED: gdb.base/default.exp: set confirm
new UNRESOLVED: gdb.base/default.exp: set environment
new UNRESOLVED: gdb.base/default.exp: set height
new UNRESOLVED: gdb.base/default.exp: set history
new UNRESOLVED: gdb.base/default.exp: set history expansion
new UNRESOLVED: gdb.base/default.exp: set history filename
new UNRESOLVED: gdb.base/default.exp: set history save
new UNRESOLVED: gdb.base/default.exp: set history save off
new UNRESOLVED: gdb.base/default.exp: set history size
new UNRESOLVED: gdb.base/default.exp: set language
new UNRESOLVED: gdb.base/default.exp: set listsize
new UNRESOLVED: gdb.base/default.exp: set print
new UNRESOLVED: gdb.base/default.exp: set print "p" abbreviation
new UNRESOLVED: gdb.base/default.exp: set print "pr" abbreviation
new UNRESOLVED: gdb.base/default.exp: set print address
new UNRESOLVED: gdb.base/default.exp: set print array
new UNRESOLVED: gdb.base/default.exp: set print asm-demangle
new UNRESOLVED: gdb.base/default.exp: set print demangle
new UNRESOLVED: gdb.base/default.exp: set print elements
new UNRESOLVED: gdb.base/default.exp: set print object
new UNRESOLVED: gdb.base/default.exp: set print pretty
new UNRESOLVED: gdb.base/default.exp: set print sevenbit-strings
new UNRESOLVED: gdb.base/default.exp: set print union
new UNRESOLVED: gdb.base/default.exp: set print vtbl
new UNRESOLVED: gdb.base/default.exp: set radix
new UNRESOLVED: gdb.base/default.exp: set the history filename
new UNRESOLVED: gdb.base/default.exp: set variable
new UNRESOLVED: gdb.base/default.exp: set verbose
new UNRESOLVED: gdb.base/default.exp: set width
new UNRESOLVED: gdb.base/default.exp: set write
new UNRESOLVED: gdb.base/default.exp: shell echo Hi dad!
new UNRESOLVED: gdb.base/default.exp: show
new UNRESOLVED: gdb.base/default.exp: show annotate
new UNRESOLVED: gdb.base/default.exp: show args
new UNRESOLVED: gdb.base/default.exp: show check "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check "ch" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check "check" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check range
new UNRESOLVED: gdb.base/default.exp: show check type
new UNRESOLVED: gdb.base/default.exp: show commands
new UNRESOLVED: gdb.base/default.exp: show complaints
new UNRESOLVED: gdb.base/default.exp: show confirm
new UNRESOLVED: gdb.base/default.exp: show convenience
new UNRESOLVED: gdb.base/default.exp: show directories
new UNRESOLVED: gdb.base/default.exp: show editing
new UNRESOLVED: gdb.base/default.exp: show height
new UNRESOLVED: gdb.base/default.exp: show history
new UNRESOLVED: gdb.base/default.exp: show history expansion
new UNRESOLVED: gdb.base/default.exp: show history filename
new UNRESOLVED: gdb.base/default.exp: show history save
new UNRESOLVED: gdb.base/default.exp: show history size
new UNRESOLVED: gdb.base/default.exp: show language
new UNRESOLVED: gdb.base/default.exp: show listsize
new UNRESOLVED: gdb.base/default.exp: show p
new UNRESOLVED: gdb.base/default.exp: show paths
new UNRESOLVED: gdb.base/default.exp: show pr
new UNRESOLVED: gdb.base/default.exp: show print
new UNRESOLVED: gdb.base/default.exp: show print address
new UNRESOLVED: gdb.base/default.exp: show print array
new UNRESOLVED: gdb.base/default.exp: show print asm-demangle
new UNRESOLVED: gdb.base/default.exp: show print demangle
new UNRESOLVED: gdb.base/default.exp: show print elements
new UNRESOLVED: gdb.base/default.exp: show print object
new UNRESOLVED: gdb.base/default.exp: show print pretty
new UNRESOLVED: gdb.base/default.exp: show print sevenbit-strings
new UNRESOLVED: gdb.base/default.exp: show print union
new UNRESOLVED: gdb.base/default.exp: show print vtbl
new UNRESOLVED: gdb.base/default.exp: show prompt
new UNRESOLVED: gdb.base/default.exp: show radix
new UNRESOLVED: gdb.base/default.exp: show user
new UNRESOLVED: gdb.base/default.exp: show values
new UNRESOLVED: gdb.base/default.exp: show verbose
new UNRESOLVED: gdb.base/default.exp: show version
new UNRESOLVED: gdb.base/default.exp: show width
new UNRESOLVED: gdb.base/default.exp: show write
new UNRESOLVED: gdb.base/default.exp: signal
new UNRESOLVED: gdb.base/default.exp: source
new UNRESOLVED: gdb.base/default.exp: step "s" abbreviation #1
new UNRESOLVED: gdb.base/default.exp: step "s" abbreviation #2
new UNRESOLVED: gdb.base/default.exp: step #1
new UNRESOLVED: gdb.base/default.exp: step #2
new UNRESOLVED: gdb.base/default.exp: stepi
new UNRESOLVED: gdb.base/default.exp: stepi "si" abbreviation
new UNRESOLVED: gdb.base/default.exp: symbol-file
new UNRESOLVED: gdb.base/default.exp: target
new UNRESOLVED: gdb.base/default.exp: target native
new UNRESOLVED: gdb.base/default.exp: tbreak
new UNRESOLVED: gdb.base/default.exp: thread
new UNRESOLVED: gdb.base/default.exp: thread apply
new UNRESOLVED: gdb.base/default.exp: thread find
new UNRESOLVED: gdb.base/default.exp: thread name
new UNRESOLVED: gdb.base/default.exp: undisplay prompt
new UNRESOLVED: gdb.base/default.exp: unset
new UNRESOLVED: gdb.base/default.exp: unset environment prompt
new UNRESOLVED: gdb.base/default.exp: until
new UNRESOLVED: gdb.base/default.exp: until "u" abbreviation
new UNRESOLVED: gdb.base/default.exp: up-silently
new UNRESOLVED: gdb.base/default.exp: verify python support
new UNRESOLVED: gdb.base/default.exp: watch
new UNRESOLVED: gdb.base/default.exp: whatis
new UNRESOLVED: gdb.base/default.exp: where
new UNRESOLVED: gdb.base/default.exp: x
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567890123456789012345678901234dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567890123456dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567890123456.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567890123456789012345678901234.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567890123456789012345678901234dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567890123456dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E384dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E6144dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E96df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2147483648ll
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2147483648ull
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2ll
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 4294967296ull
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd < 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd < 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df + 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df + 1.2f
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df < 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df < 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df > 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl < 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl < 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl > 2
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd * 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd + 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd - 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd / 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df * 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df + 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df - 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df / 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl * 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl + 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl - 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl / 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567890123456.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567890123456789012345678901234.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 + 1.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 > 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 > 3.1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.1dd + 2.7df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.1df + 2.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.3dd + 2.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.3dl + 2.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.6df + 2.7dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.6dl + 2.7df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 3 + 2.1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 1.2df + 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2 + 1.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dd + 2.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dd + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dl + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 3 + 2.1dl
new UNRESOLVED: gdb.base/display.exp: could not run to main - other tests will fail.
new UNRESOLVED: gdb.base/display.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/dump.exp: couldn't run to checkpoint
new UNRESOLVED: gdb.base/dump.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/dump.exp: get hexadecimal valueof "&intarray"
new UNRESOLVED: gdb.base/echo.exp: echo test
new UNRESOLVED: gdb.base/empty_exe.exp: file ''
new UNRESOLVED: gdb.base/empty_exe.exp: print 1
new UNRESOLVED: gdb.base/endian.exp: auto target endianness
new UNRESOLVED: gdb.base/endian.exp: auto target endianness big
new UNRESOLVED: gdb.base/endian.exp: auto target endianness little
new UNRESOLVED: gdb.base/endian.exp: default target endianness
new UNRESOLVED: gdb.base/endian.exp: get target endianness
new FAIL: gdb.base/endian.exp: override auto target endianness big
new FAIL: gdb.base/endian.exp: override auto target endianness little
new UNRESOLVED: gdb.base/endian.exp: override target endianness big
new FAIL: gdb.base/endian.exp: override target endianness little
new UNRESOLVED: gdb.base/endian.exp: previously big default executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously big default no executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously little default executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously little default no executable endianness
new UNRESOLVED: gdb.base/endian.exp: set target endianness
new UNRESOLVED: gdb.base/endian.exp: set target endianness big
new UNRESOLVED: gdb.base/endian.exp: set target endianness little
new UNRESOLVED: gdb.base/environ.exp: all environment variables have been unset
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable previously undefined
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable using = syntax
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable with trailing equals
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable with trailing whitespace
new UNRESOLVED: gdb.base/environ.exp: confirm unset environment variable worked
new UNRESOLVED: gdb.base/environ.exp: set environment variable
new UNRESOLVED: gdb.base/environ.exp: set environment variable previously undefined
new UNRESOLVED: gdb.base/environ.exp: set environment variable to null value
new UNRESOLVED: gdb.base/environ.exp: set environment variable using = syntax
new UNRESOLVED: gdb.base/environ.exp: set environment variable with trailing equals
new UNRESOLVED: gdb.base/environ.exp: set environment variable with trailing whitespace
new UNRESOLVED: gdb.base/environ.exp: set environment without arguments
new UNRESOLVED: gdb.base/environ.exp: set environment without variable name
new UNRESOLVED: gdb.base/environ.exp: set path works properly
new UNRESOLVED: gdb.base/environ.exp: show environment works
new UNRESOLVED: gdb.base/environ.exp: show non-existent environment variable
new UNRESOLVED: gdb.base/environ.exp: show null environment variable
new UNRESOLVED: gdb.base/environ.exp: show paths works properly
new UNRESOLVED: gdb.base/environ.exp: unset all environment variables
new UNRESOLVED: gdb.base/environ.exp: unset environment variable
new UNRESOLVED: gdb.base/eval.exp: first eval.
new UNRESOLVED: gdb.base/eval.exp: initialize $a.
new UNRESOLVED: gdb.base/eval.exp: second eval.
new UNRESOLVED: gdb.base/execl-update-breakpoints.exp: couldn't run to main
new UNRESOLVED: gdb.base/execl-update-breakpoints.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/foll-fork.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/foll-fork.exp: follow child, detach off, command "continue": could not run to main
new UNRESOLVED: gdb.base/foll-fork.exp: follow child, detach off, command "continue": delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/foll-fork.exp: follow child, detach off, command "next 2": could not run to main
new UNRESOLVED: gdb.base/foll-fork.exp: follow child, detach off, command "next 2": delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/foll-fork.exp: follow child, detach on, command "continue": could not run to main
new UNRESOLVED: gdb.base/foll-fork.exp: follow child, detach on, command "continue": delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/foll-fork.exp: follow child, detach on, command "next 2": could not run to main
new UNRESOLVED: gdb.base/foll-fork.exp: follow child, detach on, command "next 2": delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/foll-fork.exp: follow default, detach default, command "continue": could not run to main
new UNRESOLVED: gdb.base/foll-fork.exp: follow default, detach default, command "continue": delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/foll-fork.exp: follow default, detach default, command "next 2": could not run to main
new UNRESOLVED: gdb.base/foll-fork.exp: follow default, detach default, command "next 2": delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/foll-fork.exp: follow parent, detach off, command "continue": could not run to main
new UNRESOLVED: gdb.base/foll-fork.exp: follow parent, detach off, command "continue": delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/foll-fork.exp: follow parent, detach off, command "next 2": could not run to main
new UNRESOLVED: gdb.base/foll-fork.exp: follow parent, detach off, command "next 2": delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/foll-fork.exp: follow parent, detach on, command "continue": could not run to main
new UNRESOLVED: gdb.base/foll-fork.exp: follow parent, detach on, command "continue": delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/foll-fork.exp: follow parent, detach on, command "next 2": could not run to main
new UNRESOLVED: gdb.base/foll-fork.exp: follow parent, detach on, command "next 2": delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/foll-fork.exp: help set follow-fork
new UNRESOLVED: gdb.base/foll-fork.exp: reset parent
new UNRESOLVED: gdb.base/foll-fork.exp: set follow-fork ch
new UNRESOLVED: gdb.base/foll-fork.exp: set follow-fork to nonsense is prohibited
new UNRESOLVED: gdb.base/foll-fork.exp: set follow-fork, using abbreviations
new UNRESOLVED: gdb.base/foll-fork.exp: set verbose
new UNRESOLVED: gdb.base/frameapply.exp: can't run to setup_done
new UNRESOLVED: gdb.base/gdb1056.exp: print 1/0
new UNRESOLVED: gdb.base/gdb1056.exp: test unsigned division by zero
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize= 20 : show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize= 20 : show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5ab: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5ab: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=0: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=0: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=10zab: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=10zab: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=20: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=20: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=50: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=50: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=99999999999999999999999999999999999: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=99999999999999999999999999999999999: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=not_an_integer: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=not_an_integer: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=1000: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=1000: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=foo: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=foo: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/zero: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/zero: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: appending: server show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: creating: server show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: print 1
new UNRESOLVED: gdb.base/help.exp: apropos \
new UNRESOLVED: gdb.base/help.exp: apropos apropos
new UNRESOLVED: gdb.base/help.exp: apropos handle signal
new UNRESOLVED: gdb.base/help.exp: disable pagination
new UNRESOLVED: gdb.base/help.exp: help aliases
new UNRESOLVED: gdb.base/help.exp: help backtrace
new UNRESOLVED: gdb.base/help.exp: help backtrace "bt" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "b" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "br" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "bre" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "brea" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "break" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoints
new UNRESOLVED: gdb.base/help.exp: help commands
new UNRESOLVED: gdb.base/help.exp: help data
new UNRESOLVED: gdb.base/help.exp: help delete
new UNRESOLVED: gdb.base/help.exp: help delete "d" abbreviation
new UNRESOLVED: gdb.base/help.exp: help files
new UNRESOLVED: gdb.base/help.exp: help gotcha
new UNRESOLVED: gdb.base/help.exp: help help
new UNRESOLVED: gdb.base/help.exp: help help "h" abbreviation
new UNRESOLVED: gdb.base/help.exp: help info bogus-gdb-command
new UNRESOLVED: gdb.base/help.exp: help internals
new UNRESOLVED: gdb.base/help.exp: help obscure
new UNRESOLVED: gdb.base/help.exp: help running
new UNRESOLVED: gdb.base/help.exp: help show commands
new UNRESOLVED: gdb.base/help.exp: help show confirm
new UNRESOLVED: gdb.base/help.exp: help show copying
new UNRESOLVED: gdb.base/help.exp: help show warranty
new UNRESOLVED: gdb.base/help.exp: help stack
new UNRESOLVED: gdb.base/help.exp: help status
new UNRESOLVED: gdb.base/help.exp: help support
new UNRESOLVED: gdb.base/help.exp: help tracepoints
new UNRESOLVED: gdb.base/help.exp: help user-defined
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: set history remove-duplicates 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: set history remove-duplicates 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: set history remove-duplicates 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 3
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 4
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 3
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 4
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: set history remove-duplicates unlimited
new UNRESOLVED: gdb.base/history-duplicates.exp: show editing
new UNRESOLVED: gdb.base/history-duplicates.exp: show history remove-duplicates
new UNRESOLVED: gdb.base/ifelse.exp: call original define
new UNRESOLVED: gdb.base/ifelse.exp: call replacement define
new UNRESOLVED: gdb.base/ifelse.exp: create define with empty else
new UNRESOLVED: gdb.base/ifelse.exp: if 0 .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 0 with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 1 .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 1 with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #1
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #2
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #3
new UNRESOLVED: gdb.base/ifelse.exp: replace define with if .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: set confirm off
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tc-td: 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-tc-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ts: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tf: 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-tf-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-ts: 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-ti-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tl-td: 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-tl-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-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-td: 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-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tld: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tll-tf: 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-td: 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-ts-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ts: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tc-td: 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-tc-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-ts: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tf: 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-tf-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-ts: 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-ti-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tl-td: 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-tl-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-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-td: 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-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tld: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tll-tf: 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-td: 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-ts-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ts: failed to compile
new FAIL: gdb.base/info-os.exp: cannot compile test program
new UNRESOLVED: gdb.base/info-types.exp: l=c++: can't run to main
new UNRESOLVED: gdb.base/info-types.exp: l=c++: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/info-types.exp: l=c: can't run to main
new UNRESOLVED: gdb.base/info-types.exp: l=c: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode on
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode on
new UNRESOLVED: gdb.base/interact.exp: show interactive-mode
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode on
new UNRESOLVED: gdb.base/multi-forks.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/multi-forks.exp: detach 2
new UNRESOLVED: gdb.base/multi-forks.exp: detach 3
new UNRESOLVED: gdb.base/multi-forks.exp: detach 4
new UNRESOLVED: gdb.base/multi-forks.exp: detach 5
new UNRESOLVED: gdb.base/multi-forks.exp: did kill 10
new UNRESOLVED: gdb.base/multi-forks.exp: did kill 11
new UNRESOLVED: gdb.base/multi-forks.exp: did kill 12
new UNRESOLVED: gdb.base/multi-forks.exp: did kill 13
new UNRESOLVED: gdb.base/multi-forks.exp: did kill 14
new UNRESOLVED: gdb.base/multi-forks.exp: did kill 15
new UNRESOLVED: gdb.base/multi-forks.exp: did kill 16
new UNRESOLVED: gdb.base/multi-forks.exp: did kill 6
new UNRESOLVED: gdb.base/multi-forks.exp: did kill 7
new UNRESOLVED: gdb.base/multi-forks.exp: did kill 8
new UNRESOLVED: gdb.base/multi-forks.exp: did kill 9
new UNRESOLVED: gdb.base/multi-forks.exp: follow child, print pids
new UNRESOLVED: gdb.base/multi-forks.exp: follow parent, print pids
new UNRESOLVED: gdb.base/multi-forks.exp: help set detach
new UNRESOLVED: gdb.base/multi-forks.exp: inferior 1
new UNRESOLVED: gdb.base/multi-forks.exp: inferior 10
new UNRESOLVED: gdb.base/multi-forks.exp: inferior 11
new UNRESOLVED: gdb.base/multi-forks.exp: inferior 12
new UNRESOLVED: gdb.base/multi-forks.exp: inferior 13
new UNRESOLVED: gdb.base/multi-forks.exp: inferior 14
new UNRESOLVED: gdb.base/multi-forks.exp: inferior 15
new UNRESOLVED: gdb.base/multi-forks.exp: inferior 2
new UNRESOLVED: gdb.base/multi-forks.exp: inferior 3
new UNRESOLVED: gdb.base/multi-forks.exp: inferior 4
new UNRESOLVED: gdb.base/multi-forks.exp: inferior 5
new UNRESOLVED: gdb.base/multi-forks.exp: inferior 6
new UNRESOLVED: gdb.base/multi-forks.exp: inferior 7
new UNRESOLVED: gdb.base/multi-forks.exp: inferior 8
new UNRESOLVED: gdb.base/multi-forks.exp: inferior 9
new UNRESOLVED: gdb.base/multi-forks.exp: info inferior 1
new UNRESOLVED: gdb.base/multi-forks.exp: info inferior 10
new UNRESOLVED: gdb.base/multi-forks.exp: info inferior 11
new UNRESOLVED: gdb.base/multi-forks.exp: info inferior 12
new UNRESOLVED: gdb.base/multi-forks.exp: info inferior 13
new UNRESOLVED: gdb.base/multi-forks.exp: info inferior 14
new UNRESOLVED: gdb.base/multi-forks.exp: info inferior 15
new UNRESOLVED: gdb.base/multi-forks.exp: info inferior 16
new UNRESOLVED: gdb.base/multi-forks.exp: info inferior 2
new UNRESOLVED: gdb.base/multi-forks.exp: info inferior 3
new UNRESOLVED: gdb.base/multi-forks.exp: info inferior 4
new UNRESOLVED: gdb.base/multi-forks.exp: info inferior 5
new UNRESOLVED: gdb.base/multi-forks.exp: info inferior 6
new UNRESOLVED: gdb.base/multi-forks.exp: info inferior 7
new UNRESOLVED: gdb.base/multi-forks.exp: info inferior 8
new UNRESOLVED: gdb.base/multi-forks.exp: info inferior 9
new UNRESOLVED: gdb.base/multi-forks.exp: kill 10
new UNRESOLVED: gdb.base/multi-forks.exp: kill 11
new UNRESOLVED: gdb.base/multi-forks.exp: kill 12
new UNRESOLVED: gdb.base/multi-forks.exp: kill 13
new UNRESOLVED: gdb.base/multi-forks.exp: kill 14
new UNRESOLVED: gdb.base/multi-forks.exp: kill 15
new UNRESOLVED: gdb.base/multi-forks.exp: kill 16
new UNRESOLVED: gdb.base/multi-forks.exp: kill 6
new UNRESOLVED: gdb.base/multi-forks.exp: kill 7
new UNRESOLVED: gdb.base/multi-forks.exp: kill 8
new UNRESOLVED: gdb.base/multi-forks.exp: kill 9
new UNRESOLVED: gdb.base/multi-forks.exp: restart final
new UNRESOLVED: gdb.base/multi-forks.exp: run to exit 1
new UNRESOLVED: gdb.base/multi-forks.exp: run to exit 10
new UNRESOLVED: gdb.base/multi-forks.exp: run to exit 11
new UNRESOLVED: gdb.base/multi-forks.exp: run to exit 12
new UNRESOLVED: gdb.base/multi-forks.exp: run to exit 13
new UNRESOLVED: gdb.base/multi-forks.exp: run to exit 14
new UNRESOLVED: gdb.base/multi-forks.exp: run to exit 15
new UNRESOLVED: gdb.base/multi-forks.exp: run to exit 16
new UNRESOLVED: gdb.base/multi-forks.exp: run to exit 2
new UNRESOLVED: gdb.base/multi-forks.exp: run to exit 3
new UNRESOLVED: gdb.base/multi-forks.exp: run to exit 4
new UNRESOLVED: gdb.base/multi-forks.exp: run to exit 5
new UNRESOLVED: gdb.base/multi-forks.exp: run to exit 6
new UNRESOLVED: gdb.base/multi-forks.exp: run to exit 7
new UNRESOLVED: gdb.base/multi-forks.exp: run to exit 8
new UNRESOLVED: gdb.base/multi-forks.exp: run to exit 9
new UNRESOLVED: gdb.base/multi-forks.exp: set detach off
new UNRESOLVED: gdb.base/multi-forks.exp: set follow-fork child
new UNRESOLVED: gdb.base/multi-forks.exp: set follow-fork parent
new UNRESOLVED: gdb.base/multi-forks.exp: setting breakpoint at 40
new UNRESOLVED: gdb.base/multi-forks.exp: show detach default on
new UNRESOLVED: gdb.base/multi-line-starts-subshell.exp: gdb input still works
new UNRESOLVED: gdb.base/multi-line-starts-subshell.exp: spawn subshell from multi-line
new UNRESOLVED: gdb.base/osabi.exp: set debug arch 1
new UNRESOLVED: gdb.base/osabi.exp: set osabi none
new UNRESOLVED: gdb.base/page.exp: paged count
new UNRESOLVED: gdb.base/page.exp: paged count for interrupt
new UNRESOLVED: gdb.base/page.exp: paged count remainder
new UNRESOLVED: gdb.base/page.exp: paged help
new UNRESOLVED: gdb.base/page.exp: pagination is off
new UNRESOLVED: gdb.base/page.exp: pagination is on
new UNRESOLVED: gdb.base/page.exp: q
new UNRESOLVED: gdb.base/page.exp: quit while paging
new UNRESOLVED: gdb.base/page.exp: set editing off
new UNRESOLVED: gdb.base/page.exp: set height -1
new UNRESOLVED: gdb.base/page.exp: set height 10
new UNRESOLVED: gdb.base/page.exp: set height 5
new UNRESOLVED: gdb.base/page.exp: set pagination off
new UNRESOLVED: gdb.base/page.exp: set pagination on
new UNRESOLVED: gdb.base/page.exp: set width -1
new UNRESOLVED: gdb.base/page.exp: set width 30
new UNRESOLVED: gdb.base/page.exp: size=0: set height 0
new UNRESOLVED: gdb.base/page.exp: size=0: set height 200
new UNRESOLVED: gdb.base/page.exp: size=0: set width 0
new UNRESOLVED: gdb.base/page.exp: size=0: set width 200
new UNRESOLVED: gdb.base/page.exp: size=0: show height
new UNRESOLVED: gdb.base/page.exp: size=0: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=0: show width
new UNRESOLVED: gdb.base/page.exp: size=0: show width unlimited
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set height 0x80000000
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set height 200
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set width 0x80000000
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set width 200
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show height
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show width
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show width unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set height 200
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set height unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set width 200
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set width unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show height
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show width
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show width unlimited
new UNRESOLVED: gdb.base/page.exp: unpaged help
new UNRESOLVED: gdb.base/quit.exp: quit with expression
new UNRESOLVED: gdb.base/quit.exp: quit with syntax error
new KFAIL: gdb.base/radix.exp: print 20.; expect 14; output radix 16
new KFAIL: gdb.base/radix.exp: print 20.; expect 24; output radix 8
new UNRESOLVED: gdb.base/readline.exp: Simple operate-and-get-next - send p 1
new UNRESOLVED: gdb.base/readline.exp: arrow keys with secondary prompt
new UNRESOLVED: gdb.base/readline.exp: operate-and-get-next with secondary prompt - send if 1 > 0
new UNRESOLVED: gdb.base/readline.exp: print 42
new UNRESOLVED: gdb.base/readline.exp: show editing
new UNRESOLVED: gdb.base/remotetimeout.exp: correct remotetimeout printed
new UNRESOLVED: gdb.base/set-noassign.exp: can't run to main
new UNRESOLVED: gdb.base/set-noassign.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/shell.exp: ! echo foo
new UNRESOLVED: gdb.base/shell.exp: ! exit 0
new UNRESOLVED: gdb.base/shell.exp: ! exit 1
new UNRESOLVED: gdb.base/shell.exp: ! kill -2 $$
new UNRESOLVED: gdb.base/shell.exp: !echo foo
new UNRESOLVED: gdb.base/shell.exp: -d spaces value missing
new UNRESOLVED: gdb.base/shell.exp: -d value missing
new UNRESOLVED: gdb.base/shell.exp: DELIM delimiter missing
new UNRESOLVED: gdb.base/shell.exp: SHELL_COMMAND missing
new UNRESOLVED: gdb.base/shell.exp: SHELL_COMMAND missing with delimiter
new UNRESOLVED: gdb.base/shell.exp: all missing
new UNRESOLVED: gdb.base/shell.exp: alternate 1char delim
new UNRESOLVED: gdb.base/shell.exp: alternate 1char delim, no space
new UNRESOLVED: gdb.base/shell.exp: alternate 3char delim
new UNRESOLVED: gdb.base/shell.exp: alternate 3char delim, no space
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe print 1 | "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| print 1 | "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|print 1 | "
new UNRESOLVED: gdb.base/shell.exp: define foo
new UNRESOLVED: gdb.base/shell.exp: delimiter missing due to missing space
new UNRESOLVED: gdb.base/shell.exp: double pipe
new UNRESOLVED: gdb.base/shell.exp: double pipe, pipe char
new UNRESOLVED: gdb.base/shell.exp: echo coucou
new UNRESOLVED: gdb.base/shell.exp: enter commands
new UNRESOLVED: gdb.base/shell.exp: no space around pipe char
new UNRESOLVED: gdb.base/shell.exp: pipe fail exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe fail exitsignal
new UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitsignal
new UNRESOLVED: gdb.base/shell.exp: pipe success exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe success exitsignal
new UNRESOLVED: gdb.base/shell.exp: repeat previous command
new UNRESOLVED: gdb.base/shell.exp: set max-completions 0
new UNRESOLVED: gdb.base/shell.exp: set max-completions 2
new UNRESOLVED: gdb.base/shell.exp: shell echo foo
new UNRESOLVED: gdb.base/shell.exp: shell fail exitcode
new UNRESOLVED: gdb.base/shell.exp: shell fail exitsignal
new UNRESOLVED: gdb.base/shell.exp: shell interrupt exitcode
new UNRESOLVED: gdb.base/shell.exp: shell interrupt exitsignal
new UNRESOLVED: gdb.base/shell.exp: shell success exitcode
new UNRESOLVED: gdb.base/shell.exp: shell success exitsignal
new UNRESOLVED: gdb.base/shell.exp: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
new UNRESOLVED: gdb.base/shell.exp: simple pipe
new UNRESOLVED: gdb.base/shell.exp: simple pipe with arg
new UNRESOLVED: gdb.base/shell.exp: | delimiter missing
new UNRESOLVED: gdb.base/shell.exp: |p 123| exit 0
new UNRESOLVED: gdb.base/shell.exp: |p 123| exit 1
new UNRESOLVED: gdb.base/shell.exp: |p 123| kill -2 $$
new UNRESOLVED: gdb.base/source-dir.exp: directory /nOtExStInG/a /nOtExStInG/b /nOtExStInG/c
new UNRESOLVED: gdb.base/source-dir.exp: directory /nOtExStInG/b /nOtExStInG/d /nOtExStInG/c
new UNRESOLVED: gdb.base/source.exp: script contains error
new UNRESOLVED: gdb.base/source.exp: set search directories
new UNRESOLVED: gdb.base/source.exp: source -s
new UNRESOLVED: gdb.base/source.exp: source -s -v
new UNRESOLVED: gdb.base/source.exp: source -v
new UNRESOLVED: gdb.base/source.exp: source -v -s
new UNRESOLVED: gdb.base/source.exp: source after -v
new UNRESOLVED: gdb.base/source.exp: source for-sure-nonexistant-file
new UNRESOLVED: gdb.base/source.exp: source source-nofile.gdb
new UNRESOLVED: gdb.base/step-over-syscall.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/step-over-syscall.exp: run to main
new UNRESOLVED: gdb.base/subst.exp: add depuis -> vers substitution rule
new UNRESOLVED: gdb.base/subst.exp: add from -> to substitution rule
new UNRESOLVED: gdb.base/subst.exp: add from1 -> to1 substitution rule
new UNRESOLVED: gdb.base/subst.exp: add source -> destination substitution rule
new UNRESOLVED: gdb.base/subst.exp: add substitution rule to empty string
new UNRESOLVED: gdb.base/subst.exp: deactivate GDB's confirmation interface
new UNRESOLVED: gdb.base/subst.exp: remove all remaining substitution rules
new UNRESOLVED: gdb.base/subst.exp: remove default substitution rules
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, first argument is empty string
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, too few arguments
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, too many arguments
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after all remaining rules removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after depuis rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after empty rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after from rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path depuis, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, after unsetting it
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from/path, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from_a_bad_path, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path garbage, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: show substitute-path, too many arguments
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path depuis
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path empty
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from after the rule was removed
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path, too many arguments
new UNRESOLVED: gdb.base/trace-commands.exp: define user command
new UNRESOLVED: gdb.base/trace-commands.exp: depth resets on error part 1
new UNRESOLVED: gdb.base/trace-commands.exp: depth resets on error part 2
new UNRESOLVED: gdb.base/trace-commands.exp: nested trace-commands test
new UNRESOLVED: gdb.base/trace-commands.exp: nested trace-commands test with source
new UNRESOLVED: gdb.base/trace-commands.exp: set trace-commands
new UNRESOLVED: gdb.base/trace-commands.exp: show trace-commands says off
new UNRESOLVED: gdb.base/trace-commands.exp: show trace-commands says on
new UNRESOLVED: gdb.base/trace-commands.exp: simple trace-commands test
new UNRESOLVED: gdb.base/trace-commands.exp: source -v
new UNRESOLVED: gdb.base/warning.exp: echo 23\n
new UNRESOLVED: gdb.btrace/cpu.exp: default cpu
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu auto
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/1
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0x0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo/bar
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu none
new UNRESOLVED: gdb.btrace/cpu.exp: set record
new UNRESOLVED: gdb.btrace/cpu.exp: set record btrace
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu auto
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/1
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0x0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo/bar
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu none
new UNRESOLVED: gdb.cp/debug-expr.exp: print dynamic_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: print reinterpret_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: print static_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: set debug expression 1
new UNRESOLVED: gdb.cp/debug-expr.exp: set language c++
new UNRESOLVED: gdb.cp/demangle.exp: auto: check demangling style
new UNRESOLVED: gdb.cp/demangle.exp: auto: set demangle-style
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c -- _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c++ -- _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c++ _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l garbage xyzdje
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z13BitPatterntoaOK10BitPatternccc
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z31DrawDestinationTransformedImageP7_XImageiiS0_iimjiijmmP4_XGCOK13ivTransformeriiii
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z3argOK7Complex
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN11RelateManip6EffectEO7ivEvent
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN20DisplayList_IteratorC4EO11DisplayList
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN3fooC4EOS_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN3fooC4EiOS_iS0_iS0_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE3PixC4EOKS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE7elementC2EOKS0_PS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE7elementC4EOKS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityEC4EOKS1_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4PixXI11VHDLLibrary14VHDLLibraryRep4ListI10VHDLEntityEEC2EOKS5_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN7ivWorldC2EPKcOiPPcPK12ivOptionDescPK14ivPropertyData
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN8TextCode14CoreConstDeclsEO7ostream
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic: gnu-v3: check demangling style
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic: gnu-v3: set demangle-style
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK11VHDLLibrary5nextEEO4PixXIS_14VHDLLibraryRep4ListI10VHDLEntityEE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK4ListI10VHDLEntityE4nextEONS1_3PixE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK4ListI10VHDLEntityEclEOKNS1_3PixE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOK10BitPattern
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOK12BitSubStringi
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOKS_
new UNRESOLVED: gdb.cp/demangle.exp: set language c++
new UNRESOLVED: gdb.cp/demangle.exp: set language unknown
new UNRESOLVED: gdb.cp/demangle.exp: set width 0
new UNRESOLVED: gdb.cp/maint.exp: help maint cp
new UNRESOLVED: gdb.cp/maint.exp: help maint cp first_component
new UNRESOLVED: gdb.cp/maint.exp: help maint cp namespace
new UNRESOLVED: gdb.cp/maint.exp: help maintenance cplus
new UNRESOLVED: gdb.cp/maint.exp: maint cp
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component C<A>::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component C<std::basic_streambuf<wchar_t,std::char_traits<wchar_t> > >::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component T<Cooperator>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component bool operator<<char>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo::bar::baz
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<&
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<&operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int operator<< <char>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator  ->
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator ->
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator>>
new UNRESOLVED: gdb.cp/maint.exp: maint cp namespace
new UNRESOLVED: gdb.cp/maint.exp: set complaints 1000
new UNRESOLVED: gdb.cp/punctuator.exp: print
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 1
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 2
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 3
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 1
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 2
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 3
new UNRESOLVED: gdb.cp/punctuator.exp: set lang c++
new UNRESOLVED: gdb.cp/ref-params.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/ref-params.exp: print value of Child& in f2
new UNRESOLVED: gdb.cp/ref-params.exp: print value of Parent& in f1
new UNRESOLVED: gdb.cp/ref-params.exp: print value of a Child in main
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on Child in main
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on Child& in f2
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f2 on
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f2 on Child in main
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print f1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print mf1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print mf2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Child&& in f2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Child&& in f2: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Parent&& in f1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Parent&& in f1: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f1 on
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f1 on Child&& in f2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f2 on
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char16_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char16_t is unsigned
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char32_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char32_t is unsigned
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p L"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p U"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p u"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: set language c++
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: sizeof
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: wchar_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: wchar_t sign
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: char16_t is not built-in
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: char32_t is not built-in
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p L"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p U"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p u"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: set language c
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: wchar_t is not built-in
new UNRESOLVED: gdb.disasm/disassembler-options.exp: set disassembler-options
new UNRESOLVED: gdb.disasm/disassembler-options.exp: set disassembler-options invalid_option_value
new UNRESOLVED: gdb.disasm/disassembler-options.exp: show NULL disassembler-options
new UNRESOLVED: gdb.dlang/debug-expr.exp: print *
new UNRESOLVED: gdb.dlang/debug-expr.exp: set debug expression 1
new UNRESOLVED: gdb.dlang/debug-expr.exp: set language d
new UNRESOLVED: gdb.dlang/demangle.exp: set language d
new UNRESOLVED: gdb.dlang/expression.exp: set language d
new UNRESOLVED: gdb.dlang/primitive-types.exp: set language d
new UNRESOLVED: gdb.dlang/properties.exp: set language d
new UNRESOLVED: gdb.dlang/watch-loc.exp: disassemble _Dmain
new UNRESOLVED: gdb.dlang/watch-loc.exp: p _Dmain_label - _Dmain
new UNRESOLVED: gdb.dlang/watch-loc.exp: x/2i _Dmain+
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: disassemble first
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: disassemble second
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p first_label - first
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p second_label - second
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: x/2i first+
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: x/2i second+
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p g_label - g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i g+
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: console: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: console: set print object on
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: disassemble func01
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: p func01_label - func01
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: x/2i func01+
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p bar_label - bar
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p baz_label - baz
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_cold_label - foo_cold
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_label - foo
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p main_label - main
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble bar
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble baz
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble foo
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble foo_low
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p bar_label - bar
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p baz_label - baz
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p foo_label - foo
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p foo_low_label - foo_low
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i bar+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i baz+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i foo+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i foo_low+
new FAIL: gdb.dwarf2/dw2-unusual-field-names.exp:
new UNRESOLVED: gdb.dwarf2/dwz.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dwz.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dwz.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/implref-array.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/implref-struct.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: x/2i main+
new FAIL: gdb.dwarf2/inlined_subroutine-inheritance.exp: setting breakpoint at bytes_repeat
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/var-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/var-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/var-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/void-type.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/void-type.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i main+
new UNRESOLVED: gdb.guile/guile.exp: collect help from uiout
new UNRESOLVED: gdb.guile/guile.exp: guile
new UNRESOLVED: gdb.guile/guile.exp: show guile command - define zzq
new UNRESOLVED: gdb.guile/guile.exp: source -s source2.scm
new UNRESOLVED: gdb.guile/guile.exp: source source2.scm
new UNRESOLVED: gdb.guile/guile.exp: verify guile support
new UNRESOLVED: gdb.guile/guile.exp: verify help to uiout
new UNRESOLVED: gdb.guile/scm-error.exp: backtrace printed
new UNRESOLVED: gdb.guile/scm-error.exp: error loading scm file caught
new UNRESOLVED: gdb.guile/scm-error.exp: error message printed
new UNRESOLVED: gdb.guile/scm-error.exp: guile
new UNRESOLVED: gdb.guile/scm-error.exp: no delayed error
new UNRESOLVED: gdb.guile/scm-error.exp: no error printed
new UNRESOLVED: gdb.guile/scm-error.exp: reset print-stack to default, post set/show tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to full, for backtrace test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error printing tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to none, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: source /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.guile/scm-error/scm-error-2.scm
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack full setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack none setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting of default
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to full
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to none
new UNRESOLVED: gdb.guile/scm-error.exp: verify guile support
new FAIL: gdb.guile/scm-frame-args.exp:
new UNRESOLVED: gdb.guile/scm-frame-args.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-frame-args.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-frame-args.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-gsmob.exp: gu
new UNRESOLVED: gdb.guile/scm-gsmob.exp: guile
new UNRESOLVED: gdb.guile/scm-gsmob.exp: object-properties
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-parameter.exp: Simple gdb boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: enum gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: error registering existing parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: file gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously ambiguously named boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set print s on
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: restricted gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: enum parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set invalid enum parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set print test-enum-param two
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: initial parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: new parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param bar.txt
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set print test-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 10
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 42
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: show test-restricted-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set print test-undoc-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: undocumented gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: verify guile support
new FAIL: gdb.guile/scm-symbol.exp:
new UNRESOLVED: gdb.guile/scm-symbol.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-symbol.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-symbol.exp: guile
new UNRESOLVED: gdb.guile/scm-symbol.exp: lookup main
new UNRESOLVED: gdb.guile/scm-symbol.exp: lookup qq
new UNRESOLVED: gdb.guile/scm-symbol.exp: print line number of qq
new UNRESOLVED: gdb.guile/scm-symbol.exp: print value of main
new UNRESOLVED: gdb.guile/scm-symbol.exp: print value of qq
new UNRESOLVED: gdb.guile/scm-symbol.exp: print whether qq needs a frame
new UNRESOLVED: gdb.guile/scm-symbol.exp: test
new UNRESOLVED: gdb.guile/scm-symbol.exp: verify guile support
new UNRESOLVED: gdb.objc/print.exp: set language objective-c
new UNRESOLVED: gdb.pascal/print.exp: set language pascal
new UNRESOLVED: gdb.pascal/types.exp: set language pascal
new UNRESOLVED: gdb.python/py-completion.exp: check if python 3
new UNRESOLVED: gdb.python/py-completion.exp: show editing
new UNRESOLVED: gdb.python/py-completion.exp: verify python support
new UNRESOLVED: gdb.python/py-error.exp: check if python 3
new UNRESOLVED: gdb.python/py-error.exp: main reached
new UNRESOLVED: gdb.python/py-error.exp: no delayed error
new UNRESOLVED: gdb.python/py-error.exp: set host-charset IBM1047
new UNRESOLVED: gdb.python/py-error.exp: verify python support
new KFAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new UNRESOLVED: gdb.python/py-function.exp: Test GDBError - python
new UNRESOLVED: gdb.python/py-function.exp: Test GdbError.  There should not be a stack trace
new UNRESOLVED: gdb.python/py-function.exp: Test Normal Error - python
new UNRESOLVED: gdb.python/py-function.exp: Test a Runtime error.  There should be a stack trace.
new UNRESOLVED: gdb.python/py-function.exp: call function
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = ada
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = asm
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = auto
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = c
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = c++
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = d
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = fortran
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = go
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = minimal
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = modula-2
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = objective-c
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = opencl
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = pascal
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = rust
new UNRESOLVED: gdb.python/py-function.exp: call yes with &&
new UNRESOLVED: gdb.python/py-function.exp: call yes with ||
new UNRESOLVED: gdb.python/py-function.exp: check if python 3
new UNRESOLVED: gdb.python/py-function.exp: input command-calling function - python
new UNRESOLVED: gdb.python/py-function.exp: input convenience function - python
new UNRESOLVED: gdb.python/py-function.exp: input int-returning function - python
new UNRESOLVED: gdb.python/py-function.exp: input value-returning convenience function - python
new UNRESOLVED: gdb.python/py-function.exp: set language ada
new UNRESOLVED: gdb.python/py-function.exp: set language asm
new UNRESOLVED: gdb.python/py-function.exp: set language auto
new UNRESOLVED: gdb.python/py-function.exp: set language c
new UNRESOLVED: gdb.python/py-function.exp: set language c++
new UNRESOLVED: gdb.python/py-function.exp: set language d
new UNRESOLVED: gdb.python/py-function.exp: set language fortran
new UNRESOLVED: gdb.python/py-function.exp: set language go
new UNRESOLVED: gdb.python/py-function.exp: set language minimal
new UNRESOLVED: gdb.python/py-function.exp: set language modula-2
new UNRESOLVED: gdb.python/py-function.exp: set language objective-c
new UNRESOLVED: gdb.python/py-function.exp: set language opencl
new UNRESOLVED: gdb.python/py-function.exp: set language pascal
new UNRESOLVED: gdb.python/py-function.exp: set language rust
new UNRESOLVED: gdb.python/py-function.exp: set python print-stack full
new UNRESOLVED: gdb.python/py-function.exp: setting a value from a function which executes a command, again.
new UNRESOLVED: gdb.python/py-function.exp: setting a value from a function which executes a command.
new UNRESOLVED: gdb.python/py-function.exp: verify python support
new UNRESOLVED: gdb.python/py-lookup-type.exp: check if python 3
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type CARDINAL using language modula-2
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language c
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language objective-c
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language pascal
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type character using language ada
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type character using language fortran
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type int32 using language go
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type ucent using language d
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type ushort using language opencl
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language ada
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language c
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language d
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language fortran
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language go
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language modula-2
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language objective-c
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language opencl
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language pascal
new UNRESOLVED: gdb.python/py-lookup-type.exp: verify python support
new UNRESOLVED: gdb.python/py-nested-maps.exp: check if python 3
new UNRESOLVED: gdb.python/py-nested-maps.exp: verify python support
new UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER - python
new UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER_UNLIMITED - python
new UNRESOLVED: gdb.python/py-parameter.exp: Throwing gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: Simple gdb booleanparameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: show parameter off
new UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: show parameter on
new UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test boolean parameter value is False
new UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test boolean parameter value is True
new UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test general help
new UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test set help
new UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test show help
new UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: check if python 3
new UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value can be set to -1
new UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value is -1 after setting
new UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: Simple gdb booleanparameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: show parameter off
new UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: show parameter on
new UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test deprecated API parameter value is False
new UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test deprecated API parameter value is True
new UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test general help
new UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test set help
new UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test show help
new UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: enum gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: set enum to two
new UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: set invalid enum parameter
new UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: show parameter is initial value
new UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: show parameter is new value
new UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: test enum parameter value is one
new UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: test enum parameter value is two
new UNRESOLVED: gdb.python/py-parameter.exp: file parameter: file gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: file parameter: set new file parameter
new UNRESOLVED: gdb.python/py-parameter.exp: file parameter: set test-file-param
new UNRESOLVED: gdb.python/py-parameter.exp: file parameter: show initial file value
new UNRESOLVED: gdb.python/py-parameter.exp: file parameter: show new file value
new UNRESOLVED: gdb.python/py-parameter.exp: file parameter: test file parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: file parameter: test new file parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: gdb.GdbError does not show Python stack
new UNRESOLVED: gdb.python/py-parameter.exp: python print
new UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -1
new UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -5
new UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER_UNLIMITED.value = -5
new UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: Simple gdb booleanparameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: show parameter off
new UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: show parameter on
new UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: test general help
new UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: test really undocumented parameter value is False
new UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: test set help
new UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: test show help
new UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: Simple gdb booleanparameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: show parameter off
new UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: show parameter on
new UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: test general help
new UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: test set help
new UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: test show help
new UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: test undocumented parameter value is False
new UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: verify python support
new UNRESOLVED: gdb.python/py-prettyprint.exp: check if python 3
new UNRESOLVED: gdb.python/py-prettyprint.exp: verify python support
new UNRESOLVED: gdb.python/py-prompt.exp: check if python 3
new UNRESOLVED: gdb.python/py-prompt.exp: verify python support
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sigall-precsave.exp
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sigall-reverse.exp
new UNRESOLVED: gdb.rust/expr.exp: set language rust
new UNRESOLVED: gdb.rust/expr.exp: set var $something = 27
new FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
new FAIL: gdb.server/unittest.exp: unit tests
new UNRESOLVED: gdb.trace/actions.exp: failed to compile
new UNRESOLVED: gdb.trace/ax.exp: failed to compile
new UNRESOLVED: gdb.trace/deltrace.exp: failed to compile
new UNRESOLVED: gdb.trace/infotrace.exp: failed to compile
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with missing argument
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with too many arguments
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with wrong option
new UNRESOLVED: gdb.trace/packetlen.exp: failed to compile
new UNRESOLVED: gdb.trace/passc-dyn.exp: failed to compile
new UNRESOLVED: gdb.trace/passcount.exp: failed to compile
new UNRESOLVED: gdb.trace/report.exp: failed to compile
new UNRESOLVED: gdb.trace/save-trace.exp: failed to compile
new UNRESOLVED: gdb.trace/tfind.exp: failed to compile
new UNRESOLVED: gdb.trace/tracecmd.exp: failed to compile
new UNRESOLVED: gdb.trace/tsv.exp: failed to compile
new UNRESOLVED: gdb.trace/while-dyn.exp: failed to compile
new UNRESOLVED: gdb.trace/while-stepping.exp: failed to compile
new UNRESOLVED: gdb.tui/completion.exp: verify tui support
new UNRESOLVED: gdb.tui/empty.exp: set tui border-kind ascii
new UNRESOLVED: gdb.tui/empty.exp: src: 80x24: box 1
new UNRESOLVED: gdb.tui/empty.exp: verify tui support
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: correct line breaks
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: set height 2000
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: set pagination on
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: tui enable
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: verify tui support
new UNRESOLVED: gdb.xml/maint_print_struct.exp: printing tdesc with a structure and a bitfield
new UNRESOLVED: gdb.xml/maint_print_struct.exp: setting a new tdesc having only a structure
new UNRESOLVED: gdb.xml/tdesc-arch.exp: architecture XML tests
new UNRESOLVED: gdb.xml/tdesc-arch.exp: read default architecture
new UNRESOLVED: gdb.xml/tdesc-arch.exp: read valid architectures
new UNRESOLVED: gdb.xml/tdesc-errors.exp: set tdesc filename gdb.xml/tdesc-bogus.xml
new UNRESOLVED: gdb.xml/tdesc-errors.exp: set tdesc filename gdb.xml/tdesc-unknown.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: cd to directory holding xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: maintenance print reggroups
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $bitfields
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $extrareg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $flags
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $mixed_flags
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $structreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $structreg.v4
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $uintreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $unionreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $unionreg.v4
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $vecreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc file single-reg.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc filename test-extra-regs.xml - from extra-regs.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc filename test-regs.xml - from core-only.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/bad-include.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/includes.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/loop.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-gdbserver-m64/7d/7d04a20ae4af0f1f6e75ec642413c27de4c1e1b8//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/7d/7d04a20ae4af0f1f6e75ec642413c27de4c1e1b8//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-12 16:07 [binutils-gdb] Renaming of ctf (the trace format) files gdb-buildbot
@ 2019-10-12 18:18 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-12 18:18 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/897

Author:
        Weimin Pan <weimin.pan@oracle.com>

Commit tested:
        518fe38cd9c206b2a239d9b93677017203c385cb

Subject of commit:
        Renaming of ctf (the trace format) files

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/51/518fe38cd9c206b2a239d9b93677017203c385cb/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/byte_packed_arr.exp: compilation reprod_main.adb
PASS -> FAIL: gdb.ada/excep_handle.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/mi_exc_info.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/notcplusplus.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/str_uninit.exp: compilation parse.adb
PASS -> FAIL: gdb.ada/tick_last_segv.exp: compilation foo.adb
new UNRESOLVED: gdb.base/max-value-size.exp: can't run to main
new UNRESOLVED: gdb.base/shreloc.exp: can't run to main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.python/py-recurse-unwind.exp: can't run to main
==============================================

*** 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/51/518fe38cd9c206b2a239d9b93677017203c385cb//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/51/518fe38cd9c206b2a239d9b93677017203c385cb//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-12 13:04 [binutils-gdb] Change gdb/version.in to 9.0.50.DATE-git (new version numbering scheme) gdb-buildbot
@ 2019-10-12 15:23 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-12 15:23 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/896

Author:
        Joel Brobecker <brobecker@adacore.com>

Commit tested:
        225f296a0239417c01b2439128cb1c2cdfdb8fc2

Subject of commit:
        Change gdb/version.in to 9.0.50.DATE-git (new version numbering scheme)

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/22/225f296a0239417c01b2439128cb1c2cdfdb8fc2/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.ada/byte_packed_arr.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/byte_packed_arr.exp: print broken
new UNRESOLVED: gdb.ada/excep_handle.exp: cannot run to main, testcase aborted
new UNRESOLVED: gdb.ada/excep_handle.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/notcplusplus.exp: list ver.ads:16
new UNRESOLVED: gdb.ada/notcplusplus.exp: print <symada__cS> after loading symbols from ver.ads
new UNRESOLVED: gdb.ada/notcplusplus.exp: print <symada__cS> before loading symbols from ver.ads
new UNRESOLVED: gdb.ada/tick_last_segv.exp: print short-integer'first
new UNRESOLVED: gdb.ada/tick_last_segv.exp: print short-integer'last
new UNRESOLVED: gdb.base/recpar.exp: could not run to main
new UNRESOLVED: gdb.cp/m-data.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid
new UNRESOLVED: gdb.cp/typeid.exp: typeid
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p bar_label - bar
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p baz_label - baz
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_cold_label - foo_cold
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_label - foo
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p main_label - main
new UNRESOLVED: gdb.dwarf2/implref-struct.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i main+
new UNRESOLVED: gdb.guile/guile.exp: collect help from uiout
new UNRESOLVED: gdb.guile/guile.exp: guile
new UNRESOLVED: gdb.guile/guile.exp: show guile command - define zzq
new UNRESOLVED: gdb.guile/guile.exp: source -s source2.scm
new UNRESOLVED: gdb.guile/guile.exp: source source2.scm
new UNRESOLVED: gdb.guile/guile.exp: verify guile support
new UNRESOLVED: gdb.guile/guile.exp: verify help to uiout
new UNRESOLVED: gdb.guile/scm-error.exp: backtrace printed
new UNRESOLVED: gdb.guile/scm-error.exp: error loading scm file caught
new UNRESOLVED: gdb.guile/scm-error.exp: error message printed
new UNRESOLVED: gdb.guile/scm-error.exp: guile
new UNRESOLVED: gdb.guile/scm-error.exp: no delayed error
new UNRESOLVED: gdb.guile/scm-error.exp: no error printed
new UNRESOLVED: gdb.guile/scm-error.exp: reset print-stack to default, post set/show tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to full, for backtrace test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error printing tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to none, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: source /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.guile/scm-error/scm-error-2.scm
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack full setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack none setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting of default
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to full
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to none
new UNRESOLVED: gdb.guile/scm-error.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-gsmob.exp: gu
new UNRESOLVED: gdb.guile/scm-gsmob.exp: guile
new UNRESOLVED: gdb.guile/scm-gsmob.exp: object-properties
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-parameter.exp: Simple gdb boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: enum gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: error registering existing parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: file gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously ambiguously named boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set print s on
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: restricted gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: enum parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set invalid enum parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set print test-enum-param two
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: initial parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: new parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param bar.txt
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set print test-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 10
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 42
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: show test-restricted-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set print test-undoc-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: undocumented gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: verify guile support
==============================================

*** 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/22/225f296a0239417c01b2439128cb1c2cdfdb8fc2//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/22/225f296a0239417c01b2439128cb1c2cdfdb8fc2//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-11 19:28 [binutils-gdb] [gdb/testsuite] Fix local-static.exp with gcc-4.8 gdb-buildbot
@ 2019-10-11 21:56 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-11 21:56 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/894

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        4dbbb47c168a617ce27c1bdb05ebbd7842fceada

Subject of commit:
        [gdb/testsuite] Fix local-static.exp with gcc-4.8

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/4d/4dbbb47c168a617ce27c1bdb05ebbd7842fceada/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.python/py-prettyprint.exp: check if python 3
new UNRESOLVED: gdb.python/py-prettyprint.exp: verify python support
new UNRESOLVED: gdb.reverse/recvmsg-reverse.exp: turn on process record
==============================================

*** 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/4d/4dbbb47c168a617ce27c1bdb05ebbd7842fceada//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/4d/4dbbb47c168a617ce27c1bdb05ebbd7842fceada//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-11 16:19 [binutils-gdb] PowerPC PIC vs. DLL TLS issues gdb-buildbot
@ 2019-10-11 18:39 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-11 18:39 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/893

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        f749f26eea052459c27e21d0d15f5fac060961dc

Subject of commit:
        PowerPC PIC vs. DLL TLS issues

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/f7/f749f26eea052459c27e21d0d15f5fac060961dc/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/length_cond.exp: compilation length_cond.adb
PASS -> FAIL: gdb.ada/pckd_arr_ren.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/print_chars.exp: compilation foo.adb
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: disassemble mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: p mymain_label - mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: x/2i mymain+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i main+
==============================================

*** 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/f7/f749f26eea052459c27e21d0d15f5fac060961dc//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/f7/f749f26eea052459c27e21d0d15f5fac060961dc//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-11 10:59 [binutils-gdb] [PR ld/22263][PR ld/25056] arm: Avoid dynamic TLS relocs in PIE gdb-buildbot
@ 2019-10-11 15:30 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-11 15:30 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/892

Author:
        Szabolcs Nagy <szabolcs.nagy@arm.com>

Commit tested:
        9cb09e33e04feb12df2aaa6e81d61b82ad609ce5

Subject of commit:
        [PR ld/22263][PR ld/25056] arm: Avoid dynamic TLS relocs in PIE

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/9c/9cb09e33e04feb12df2aaa6e81d61b82ad609ce5/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.ada/length_cond.exp: cond 1 enum_val'first > 15
new UNRESOLVED: gdb.ada/length_cond.exp: cond 1 enum_val'last > 15
new UNRESOLVED: gdb.ada/length_cond.exp: cond 1 int_val'first > 15
new UNRESOLVED: gdb.ada/length_cond.exp: cond 1 int_val'last > 15
new UNRESOLVED: gdb.ada/length_cond.exp: cond 1 loc'first > 15
new UNRESOLVED: gdb.ada/length_cond.exp: cond 1 loc'last > 15
new UNRESOLVED: gdb.ada/length_cond.exp: cond 1 loc'length > 15
new UNRESOLVED: gdb.ada/length_cond.exp: cond 1 my_array'first
new UNRESOLVED: gdb.ada/length_cond.exp: cond 1 my_array'last
new UNRESOLVED: gdb.ada/length_cond.exp: cond 1 my_array'length
new UNRESOLVED: gdb.ada/length_cond.exp: setting breakpoint at length_cond.adb:31
new UNRESOLVED: gdb.ada/pckd_arr_ren.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/pckd_arr_ren.exp: print var
new UNRESOLVED: gdb.ada/print_chars.exp: print C
new FAIL: gdb.ada/print_chars.exp: print MC
new FAIL: gdb.ada/print_chars.exp: print WC
new FAIL: gdb.ada/print_chars.exp: print WWC
new UNRESOLVED: gdb.base/dprintf-non-stop.exp: can't run to main
new UNRESOLVED: gdb.base/recpar.exp: could not run to main
new UNRESOLVED: gdb.python/py-recurse-unwind.exp: can't run to main
PASS -> UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with missing argument
PASS -> UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with too many arguments
PASS -> UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with wrong option
new UNRESOLVED: gdb.trace/save-trace.exp: failed to compile
==============================================

*** 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/9c/9cb09e33e04feb12df2aaa6e81d61b82ad609ce5//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/9c/9cb09e33e04feb12df2aaa6e81d61b82ad609ce5//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-11 12:25 [binutils-gdb] [PR ld/25062] arm: sign extend the addend of R_ARM_TLS_GOTDESC gdb-buildbot
@ 2019-10-11 14:39 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-11 14:39 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/891

Author:
        Szabolcs Nagy <szabolcs.nagy@arm.com>

Commit tested:
        b627f56244cb2930c5891cfde03586987d46b5d2

Subject of commit:
        [PR ld/25062] arm: sign extend the addend of R_ARM_TLS_GOTDESC

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/b6/b627f56244cb2930c5891cfde03586987d46b5d2/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: disassemble mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: p mymain_label - mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: x/2i mymain+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/var-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/var-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/var-access.exp: x/2i main+
new UNRESOLVED: gdb.guile/guile.exp: collect help from uiout
new UNRESOLVED: gdb.guile/guile.exp: guile
new UNRESOLVED: gdb.guile/guile.exp: show guile command - define zzq
new UNRESOLVED: gdb.guile/guile.exp: source -s source2.scm
new UNRESOLVED: gdb.guile/guile.exp: source source2.scm
new UNRESOLVED: gdb.guile/guile.exp: verify guile support
new UNRESOLVED: gdb.guile/guile.exp: verify help to uiout
new UNRESOLVED: gdb.guile/scm-error.exp: backtrace printed
new UNRESOLVED: gdb.guile/scm-error.exp: error loading scm file caught
new UNRESOLVED: gdb.guile/scm-error.exp: error message printed
new UNRESOLVED: gdb.guile/scm-error.exp: guile
new UNRESOLVED: gdb.guile/scm-error.exp: no delayed error
new UNRESOLVED: gdb.guile/scm-error.exp: no error printed
new UNRESOLVED: gdb.guile/scm-error.exp: reset print-stack to default, post set/show tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to full, for backtrace test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error printing tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to none, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: source /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.guile/scm-error/scm-error-2.scm
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack full setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack none setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting of default
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to full
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to none
new UNRESOLVED: gdb.guile/scm-error.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-gsmob.exp: gu
new UNRESOLVED: gdb.guile/scm-gsmob.exp: guile
new UNRESOLVED: gdb.guile/scm-gsmob.exp: object-properties
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: verify guile support
new UNRESOLVED: gdb.python/py-prettyprint.exp: check if python 3
new UNRESOLVED: gdb.python/py-prettyprint.exp: verify python support
new UNRESOLVED: gdb.trace/mi-traceframe-changed.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/save-trace.exp: could not find gdb_recursion_test function
new UNRESOLVED: gdb.trace/save-trace.exp: list actions.c:1
==============================================

*** 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/b6/b627f56244cb2930c5891cfde03586987d46b5d2//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/b6/b627f56244cb2930c5891cfde03586987d46b5d2//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-07 16:27 [binutils-gdb] Avoid crash on single-field union in Rust gdb-buildbot
@ 2019-10-11  9:20 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-11  9:20 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/890

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        77c2dba3e843694fae090e237ccdf1b8f65b94e6

Subject of commit:
        Avoid crash on single-field union in Rust

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/77/77c2dba3e843694fae090e237ccdf1b8f65b94e6/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/arr_enum_idx_w_gap.exp: compilation foo_q418_043.adb
PASS -> FAIL: gdb.ada/array_subscript_addr.exp: compilation p.adb
PASS -> FAIL: gdb.ada/funcall_ptr.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/homonym.exp: compilation homonym_main.adb
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p bar_label - bar
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p baz_label - baz
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_cold_label - foo_cold
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_label - foo
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p main_label - main
new UNRESOLVED: gdb.dwarf2/implref-struct.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i main+
new UNRESOLVED: gdb.guile/scm-parameter.exp: Simple gdb boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: enum gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: error registering existing parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: file gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously ambiguously named boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set print s on
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: restricted gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: enum parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set invalid enum parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set print test-enum-param two
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: initial parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: new parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param bar.txt
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set print test-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 10
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 42
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: show test-restricted-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set print test-undoc-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: undocumented gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: verify guile support
new UNRESOLVED: gdb.python/py-completion.exp: check if python 3
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #1
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #2
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #3
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #4
PASS -> UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completel'
PASS -> UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit1 c'
PASS -> UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit2 c'
PASS -> UNRESOLVED: gdb.python/py-completion.exp: load python file
PASS -> UNRESOLVED: gdb.python/py-completion.exp: load python file again
new UNRESOLVED: gdb.python/py-completion.exp: show editing
new UNRESOLVED: gdb.python/py-completion.exp: verify python support
==============================================

*** 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/77/77c2dba3e843694fae090e237ccdf1b8f65b94e6//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/77/77c2dba3e843694fae090e237ccdf1b8f65b94e6//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-11  1:58 [binutils-gdb] gdb/fortran: Allow for matching symbols with missing scope gdb-buildbot
@ 2019-10-11  6:20 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-11  6:20 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/889

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        179aed7fdc7864ad3623a680b371a98baadb7705

Subject of commit:
        gdb/fortran: Allow for matching symbols with missing scope

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/17/179aed7fdc7864ad3623a680b371a98baadb7705/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.ada/arr_enum_idx_w_gap.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/array_subscript_addr.exp: print a
new UNRESOLVED: gdb.ada/funcall_ptr.exp: Check that initial value of GA is null
new UNRESOLVED: gdb.ada/funcall_ptr.exp: Check that value of GA is 0x1234
new UNRESOLVED: gdb.ada/funcall_ptr.exp: call pck.p
new UNRESOLVED: gdb.ada/funcall_ptr.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/homonym.exp: break at BREAK_2
new UNRESOLVED: gdb.ada/homonym.exp: continue until BREAK_2
new UNRESOLVED: gdb.ada/homonym.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/homonym.exp: print lcl at BREAK_1
new UNRESOLVED: gdb.ada/homonym.exp: print lcl at BREAK_2
new UNRESOLVED: gdb.ada/homonym.exp: ptype int_type at BREAK_1
new UNRESOLVED: gdb.ada/homonym.exp: ptype lcl at BREAK_1
new UNRESOLVED: gdb.ada/homonym.exp: ptype lcl at BREAK_2
new UNRESOLVED: gdb.ada/homonym.exp: ptype local_type at BREAK_1
new UNRESOLVED: gdb.ada/homonym.exp: ptype local_type at BREAK_2
new UNRESOLVED: gdb.ada/homonym.exp: ptype local_type_subtype at BREAK_1
new UNRESOLVED: gdb.ada/homonym.exp: ptype local_type_subtype at BREAK_2
new UNRESOLVED: gdb.ada/homonym.exp: set breakpoint at <homonym__get_value>
new UNRESOLVED: gdb.ada/homonym.exp: set breakpoint at Get_Value
new UNRESOLVED: gdb.ada/homonym.exp: set breakpoint at homonym.adb:Get_Value
new UNRESOLVED: gdb.base/breakpoint-shadow.exp: start
new UNRESOLVED: gdb.base/print-file-var.exp: lang=c: hidden=0: dlopen=0: version_id_main=0: could not run to main
==============================================

*** 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/17/179aed7fdc7864ad3623a680b371a98baadb7705//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/17/179aed7fdc7864ad3623a680b371a98baadb7705//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-11  1:15 [binutils-gdb] gdb/fortran: Nested subroutine support gdb-buildbot
@ 2019-10-11  5:38 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-11  5:38 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/888

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        0a4b09130aa8c2d2e1c1605a69962fe0a2499479

Subject of commit:
        gdb/fortran: Nested subroutine support

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/0a/0a4b09130aa8c2d2e1c1605a69962fe0a2499479/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/big_packed_array.exp: compilation foo_ra24_010.adb
PASS -> FAIL: gdb.ada/mi_exc_info.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/mi_interface.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/str_uninit.exp: compilation parse.adb
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: disassemble mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: p mymain_label - mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: x/2i mymain+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i main+
new UNRESOLVED: gdb.guile/scm-gsmob.exp: gu
new UNRESOLVED: gdb.guile/scm-gsmob.exp: guile
new UNRESOLVED: gdb.guile/scm-gsmob.exp: object-properties
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: verify guile support
new UNRESOLVED: gdb.python/py-completion.exp: check if python 3
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #1
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #2
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #3
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #4
PASS -> UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completel'
PASS -> UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit1 c'
PASS -> UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit2 c'
PASS -> UNRESOLVED: gdb.python/py-completion.exp: load python file
PASS -> UNRESOLVED: gdb.python/py-completion.exp: load python file again
new UNRESOLVED: gdb.python/py-completion.exp: show editing
new UNRESOLVED: gdb.python/py-completion.exp: verify python support
==============================================

*** 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/0a/0a4b09130aa8c2d2e1c1605a69962fe0a2499479//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/0a/0a4b09130aa8c2d2e1c1605a69962fe0a2499479//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-10 21:46 [binutils-gdb] gdb/testsuite: Reduce test name duplication in gdb.python tests gdb-buildbot
@ 2019-10-10 23:53 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-10 23:53 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/887

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        082cce059d78bdb4a9fadbbacc2cd1dc3668f084

Subject of commit:
        gdb/testsuite: Reduce test name duplication in gdb.python tests

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/08/082cce059d78bdb4a9fadbbacc2cd1dc3668f084/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.ada/big_packed_array.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/big_packed_array.exp: print bad
new UNRESOLVED: gdb.ada/big_packed_array.exp: print good
new FAIL: gdb.ada/mi_interface.exp: create ggg1 varobj
new FAIL: gdb.ada/mi_interface.exp: list ggg1's children
new UNRESOLVED: gdb.ada/mi_interface.exp: run to foo.adb:22
new FAIL: gdb.ada/mi_interface.exp: wait for stop
new UNRESOLVED: gdb.ada/str_uninit.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/recpar.exp: could not run to main
new UNRESOLVED: gdb.dwarf2/dw2-noloc.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.dwarf2/varval.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/varval.exp: p main_label - main
new FAIL: gdb.dwarf2/varval.exp: x/2i main+
new UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: Simple gdb booleanparameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: show parameter off
new UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: show parameter on
new UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test boolean parameter value is False
new UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test boolean parameter value is True
new UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test general help
new UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test set help
new UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test show help
new UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: Simple gdb booleanparameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: show parameter off
new UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: show parameter on
new UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test deprecated API parameter value is False
new UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test deprecated API parameter value is True
new UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test general help
new UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test set help
new UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test show help
new UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: enum gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: set enum to two
new UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: set invalid enum parameter
new UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: show parameter is initial value
new UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: show parameter is new value
new UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: test enum parameter value is one
new UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: test enum parameter value is two
new UNRESOLVED: gdb.python/py-parameter.exp: file parameter: file gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: file parameter: set new file parameter
new UNRESOLVED: gdb.python/py-parameter.exp: file parameter: set test-file-param
new UNRESOLVED: gdb.python/py-parameter.exp: file parameter: show initial file value
new UNRESOLVED: gdb.python/py-parameter.exp: file parameter: show new file value
new UNRESOLVED: gdb.python/py-parameter.exp: file parameter: test file parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: file parameter: test new file parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: Simple gdb booleanparameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: show parameter off
new UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: show parameter on
new UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: test general help
new UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: test really undocumented parameter value is False
new UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: test set help
new UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: test show help
new UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: Simple gdb booleanparameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: show parameter off
new UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: show parameter on
new UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: test general help
new UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: test set help
new UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: test show help
new UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: test undocumented parameter value is False
new UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: turn off parameter
new UNRESOLVED: gdb.python/py-recurse-unwind.exp: can't run to main
==============================================

*** 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/08/082cce059d78bdb4a9fadbbacc2cd1dc3668f084//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/08/082cce059d78bdb4a9fadbbacc2cd1dc3668f084//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-10 18:34 [binutils-gdb] gdb/testsuite: Reduce test name duplication in gdb.base tests gdb-buildbot
@ 2019-10-10 20:56 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-10 20:56 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/886

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        2b74ba5a194fdfb152465e786a173b039e28964a

Subject of commit:
        gdb/testsuite: Reduce test name duplication in gdb.base tests

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/2b/2b74ba5a194fdfb152465e786a173b039e28964a/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/char_enum.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/excep_handle.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/notcplusplus.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/py_taft.exp: compilation main.adb
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dwz.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dwz.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dwz.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: disassemble mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: p mymain_label - mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: x/2i mymain+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/var-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/var-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/var-access.exp: x/2i main+
new UNRESOLVED: gdb.guile/guile.exp: collect help from uiout
new UNRESOLVED: gdb.guile/guile.exp: guile
new UNRESOLVED: gdb.guile/guile.exp: show guile command - define zzq
new UNRESOLVED: gdb.guile/guile.exp: source -s source2.scm
new UNRESOLVED: gdb.guile/guile.exp: source source2.scm
new UNRESOLVED: gdb.guile/guile.exp: verify guile support
new UNRESOLVED: gdb.guile/guile.exp: verify help to uiout
new UNRESOLVED: gdb.guile/scm-error.exp: backtrace printed
new UNRESOLVED: gdb.guile/scm-error.exp: error loading scm file caught
new UNRESOLVED: gdb.guile/scm-error.exp: error message printed
new UNRESOLVED: gdb.guile/scm-error.exp: guile
new UNRESOLVED: gdb.guile/scm-error.exp: no delayed error
new UNRESOLVED: gdb.guile/scm-error.exp: no error printed
new UNRESOLVED: gdb.guile/scm-error.exp: reset print-stack to default, post set/show tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to full, for backtrace test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error printing tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to none, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: source /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.guile/scm-error/scm-error-2.scm
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack full setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack none setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting of default
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to full
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to none
new UNRESOLVED: gdb.guile/scm-error.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-gsmob.exp: gu
new UNRESOLVED: gdb.guile/scm-gsmob.exp: guile
new UNRESOLVED: gdb.guile/scm-gsmob.exp: object-properties
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-parameter.exp: Simple gdb boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: enum gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: error registering existing parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: file gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously ambiguously named boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set print s on
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: restricted gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: enum parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set invalid enum parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set print test-enum-param two
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: initial parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: new parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param bar.txt
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set print test-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 10
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 42
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: show test-restricted-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set print test-undoc-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: undocumented gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: verify guile support
new UNRESOLVED: gdb.python/py-completion.exp: check if python 3
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #1
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #2
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #3
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #4
PASS -> UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completel'
PASS -> UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit1 c'
PASS -> UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit2 c'
PASS -> UNRESOLVED: gdb.python/py-completion.exp: load python file
PASS -> UNRESOLVED: gdb.python/py-completion.exp: load python file again
new UNRESOLVED: gdb.python/py-completion.exp: show editing
new UNRESOLVED: gdb.python/py-completion.exp: verify python support
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER_UNLIMITED - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb booleanparameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Throwing gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: check if python 3
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value can be set to -1
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value is -1 after setting
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum gdb parameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file gdb parameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: gdb.GdbError does not show Python stack
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python print
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -1
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -5
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER_UNLIMITED.value = -5
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: set enum to two
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: set invalid enum parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: set new file parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: set test-file-param
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show initial file value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show new file value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show parameter is initial value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show parameter is new value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show parameter off
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show parameter on
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test enum parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test file parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test general help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test new file parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test set help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test show help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: verify python support
new UNRESOLVED: gdb.python/py-prettyprint.exp: check if python 3
new UNRESOLVED: gdb.python/py-prettyprint.exp: verify python support
==============================================

*** 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/2b/2b74ba5a194fdfb152465e786a173b039e28964a//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/2b/2b74ba5a194fdfb152465e786a173b039e28964a//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-10 13:33 [binutils-gdb] gdb/testsuite: Make test names unique in gdb.linespec tests gdb-buildbot
@ 2019-10-10 18:00 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-10 18:00 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/885

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        58eb20d527dbb0ebf26c21ecb32263def26d4593

Subject of commit:
        gdb/testsuite: Make test names unique in gdb.linespec tests

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/58/58eb20d527dbb0ebf26c21ecb32263def26d4593/

*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/O2_float_param.exp: compilation foo.adb
new FAIL: gdb.ada/access_tagged_param.exp: compilation foo.adb
new FAIL: gdb.ada/access_to_unbounded_array.exp: compilation foo.adb
new FAIL: gdb.ada/addr_arith.exp: compilation foo_na07_019.adb
new FAIL: gdb.ada/aliased_array.exp: compilation foo.adb
new FAIL: gdb.ada/arr_acc_idx_w_gap.exp: compilation enum_with_gap_main.adb
new FAIL: gdb.ada/arr_arr.exp: compilation foo.adb
new FAIL: gdb.ada/arr_enum_idx_w_gap.exp: compilation foo_q418_043.adb
new FAIL: gdb.ada/array_bounds.exp: compilation bar.adb
new FAIL: gdb.ada/array_char_idx.exp: compilation foo.adb
new FAIL: gdb.ada/array_of_variable_length.exp: compilation foo.adb
new FAIL: gdb.ada/array_ptr_renaming.exp: compilation foo.adb
new FAIL: gdb.ada/array_return.exp: compilation p.adb
new FAIL: gdb.ada/array_subscript_addr.exp: compilation p.adb
new FAIL: gdb.ada/arraydim.exp: compilation foo.adb
new FAIL: gdb.ada/arrayidx.exp: compilation p.adb
new FAIL: gdb.ada/arrayparam.exp: compilation foo.adb
new FAIL: gdb.ada/arrayptr.exp: compilation foo.adb
new FAIL: gdb.ada/assign_arr.exp: compilation main_p324_051.adb
new FAIL: gdb.ada/atomic_enum.exp: compilation foo.adb
new FAIL: gdb.ada/attr_ref_and_charlit.exp: compilation foo.adb
new FAIL: gdb.ada/bad-task-bp-keyword.exp: compilation foo.adb
new FAIL: gdb.ada/big_packed_array.exp: compilation foo_ra24_010.adb
new FAIL: gdb.ada/bp_c_mixed_case.exp: compilation foo_h731_021.adb
new FAIL: gdb.ada/bp_enum_homonym.exp: compilation p.adb
new FAIL: gdb.ada/bp_fun_addr.exp: compilation bp_fun_addr.adb
new FAIL: gdb.ada/bp_inlined_func.exp: compilation foo.adb
new FAIL: gdb.ada/bp_on_var.exp: compilation foo.adb
new FAIL: gdb.ada/bp_range_type.exp: compilation foo.adb
new FAIL: gdb.ada/bp_reset.exp: compilation foo.adb
new FAIL: gdb.ada/byte_packed_arr.exp: compilation reprod_main.adb
new FAIL: gdb.ada/catch_assert_if.exp: compilation bla.adb
new FAIL: gdb.ada/catch_ex.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/char_enum.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/char_enum.exp: print Char_Enum_Type'
new UNRESOLVED: gdb.ada/char_enum.exp: print pck.Global_Enum_Type'
new UNRESOLVED: gdb.ada/char_enum.exp: ptype Char_Enum_Type
new UNRESOLVED: gdb.ada/char_enum.exp: ptype pck.Global_Enum_Type
new FAIL: gdb.ada/char_param.exp: compilation foo.adb
new FAIL: gdb.ada/complete.exp: compilation foo.adb
new FAIL: gdb.ada/cond_lang.exp: compilation a.adb
new FAIL: gdb.ada/dgopt.exp: compilation x.adb
new FAIL: gdb.ada/disc_arr_bound.exp: compilation foo_n612_026.adb
new FAIL: gdb.ada/display_nested.exp: compilation foo.adb
new FAIL: gdb.ada/dyn_arrayidx.exp: compilation foo.adb
new FAIL: gdb.ada/dyn_loc.exp: compilation p.adb
new FAIL: gdb.ada/dyn_stride.exp: compilation foo.adb
new FAIL: gdb.ada/enum_idx_packed.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/excep_handle.exp: cannot run to main, testcase aborted
new FAIL: gdb.ada/expr_delims.exp: compilation foo.adb
new FAIL: gdb.ada/expr_with_funcall.exp: compilation expr_r821_013.adb
new FAIL: gdb.ada/exprs.exp: compilation p.adb
new FAIL: gdb.ada/fin_fun_out.exp: compilation foo_o525_013.adb
new FAIL: gdb.ada/fixed_cmp.exp: compilation fixed.adb
new FAIL: gdb.ada/fixed_points.exp: compilation fixed_points.adb
new FAIL: gdb.ada/float_param.exp: compilation foo.adb
new FAIL: gdb.ada/formatted_ref.exp: compilation formatted_ref.adb
new FAIL: gdb.ada/frame_arg_lang.exp: compilation bla.adb
new FAIL: gdb.ada/frame_args.exp: compilation foo.adb
new FAIL: gdb.ada/fullname_bp.exp: compilation foo.adb
new FAIL: gdb.ada/fun_addr.exp: compilation foo.adb
new FAIL: gdb.ada/fun_in_declare.exp: compilation foo.adb
new FAIL: gdb.ada/fun_overload_menu.exp: compilation foo.adb
new FAIL: gdb.ada/fun_renaming.exp: compilation fun_renaming.adb
new FAIL: gdb.ada/funcall_param.exp: compilation foo.adb
new FAIL: gdb.ada/funcall_ptr.exp: compilation foo.adb
new FAIL: gdb.ada/funcall_ref.exp: compilation foo.adb
new FAIL: gdb.ada/homonym.exp: compilation homonym_main.adb
new FAIL: gdb.ada/info_addr_mixed_case.exp: compilation foo.adb
new FAIL: gdb.ada/info_exc.exp: compilation foo.adb
new FAIL: gdb.ada/info_locals_renaming.exp: compilation foo.adb
new FAIL: gdb.ada/int_deref.exp: compilation foo.adb
new FAIL: gdb.ada/interface.exp: compilation foo.adb
new FAIL: gdb.ada/iwide.exp: compilation p.adb
new FAIL: gdb.ada/lang_switch.exp: compilation lang_switch.adb
new FAIL: gdb.ada/length_cond.exp: compilation length_cond.adb
new FAIL: gdb.ada/maint_with_ada.exp: compilation var_arr_typedef.adb
new FAIL: gdb.ada/mi_catch_assert.exp: compilation bla.adb
new FAIL: gdb.ada/mi_catch_ex_hand.exp: compilation foo.adb
new FAIL: gdb.ada/mi_ex_cond.exp: compilation foo.adb
new FAIL: gdb.ada/mi_exc_info.exp: compilation foo.adb
new FAIL: gdb.ada/mi_interface.exp: compilation foo.adb
new FAIL: gdb.ada/mi_ref_changeable.exp: compilation foo_rb20_056.adb
new FAIL: gdb.ada/mi_string_access.exp: compilation bar.adb
new FAIL: gdb.ada/mi_task_arg.exp: compilation task_switch.adb
new FAIL: gdb.ada/mi_task_info.exp: compilation task_switch.adb
new FAIL: gdb.ada/mi_var_array.exp: compilation bar.adb
new FAIL: gdb.ada/mi_var_union.exp: compilation bar.adb
new FAIL: gdb.ada/mod_from_name.exp: compilation foo.adb
new FAIL: gdb.ada/n_arr_bound.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/notcplusplus.exp: list ver.ads:16
new UNRESOLVED: gdb.ada/notcplusplus.exp: print <symada__cS> after loading symbols from ver.ads
new UNRESOLVED: gdb.ada/notcplusplus.exp: print <symada__cS> before loading symbols from ver.ads
new FAIL: gdb.ada/null_array.exp: compilation foo.adb
new FAIL: gdb.ada/null_record.exp: compilation null_record.adb
new FAIL: gdb.ada/operator_bp.exp: compilation ops_test.adb
new FAIL: gdb.ada/optim_drec.exp: compilation foo.adb
new FAIL: gdb.ada/out_of_line_in_inlined.exp: compilation foo_o224_021.adb
new FAIL: gdb.ada/packed_array.exp: compilation pa.adb
new FAIL: gdb.ada/packed_array_assign.exp: compilation tester.adb
new FAIL: gdb.ada/packed_tagged.exp: compilation comp_bug.adb
new FAIL: gdb.ada/pckd_arr_ren.exp: compilation foo.adb
new FAIL: gdb.ada/pckd_neg.exp: compilation foo_o508_021.adb
new FAIL: gdb.ada/pkd_arr_elem.exp: compilation failure.adb
new FAIL: gdb.ada/pp-rec-component.exp: compilation foo.adb
new FAIL: gdb.ada/print_chars.exp: compilation foo.adb
new FAIL: gdb.ada/print_pc.exp: compilation dummy.adb
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: ptype 3 * 2.0
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: ptype 3 / 2.0
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: set lang ada
new FAIL: gdb.ada/ptype_array.exp: compilation foo.adb
new FAIL: gdb.ada/ptype_field.exp: compilation foo.adb
new FAIL: gdb.ada/ptype_tagged_param.exp: compilation foo.adb
new FAIL: gdb.ada/py_range.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/py_taft.exp: check if python 3
new UNRESOLVED: gdb.ada/py_taft.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/py_taft.exp: python print
new UNRESOLVED: gdb.ada/py_taft.exp: python v = gdb.parse_and_eval
new UNRESOLVED: gdb.ada/py_taft.exp: verify python support
new FAIL: gdb.ada/rdv_wait.exp: compilation foo.adb
new FAIL: gdb.ada/rec_comp.exp: compilation bar_o203_012.adb
new FAIL: gdb.ada/rec_return.exp: compilation foo.adb
new FAIL: gdb.ada/ref_param.exp: compilation foo.adb
new FAIL: gdb.ada/ref_tick_size.exp: compilation p.adb
new FAIL: gdb.ada/repeat_dyn.exp: compilation foo_oc22_002.adb
new FAIL: gdb.ada/same_component_name.exp: compilation foo.adb
new FAIL: gdb.ada/same_enum.exp: compilation a.adb
new FAIL: gdb.ada/scoped_watch.exp: compilation foo_p708_025.adb
new FAIL: gdb.ada/set_pckd_arr_elt.exp: compilation foo.adb
new FAIL: gdb.ada/set_wstr.exp: compilation a.adb
new FAIL: gdb.ada/small_reg_param.exp: compilation foo.adb
new FAIL: gdb.ada/str_binop_equal.exp: compilation foo_p211_061.adb
new FAIL: gdb.ada/str_uninit.exp: compilation parse.adb
new FAIL: gdb.ada/sym_print_name.exp: compilation foo.adb
new FAIL: gdb.ada/taft_type.exp: compilation p.adb
new FAIL: gdb.ada/tagged.exp: compilation foo.adb
new FAIL: gdb.ada/tagged_access.exp: compilation p.adb
new FAIL: gdb.ada/tagged_not_init.exp: compilation foo.adb
new FAIL: gdb.ada/task_bp.exp: compilation foo.adb
new FAIL: gdb.ada/task_switch_in_core.exp: compilation crash.adb
new FAIL: gdb.ada/tasks.exp: compilation foo.adb
new FAIL: gdb.ada/tick_last_segv.exp: compilation foo.adb
new FAIL: gdb.ada/tick_length_array_enum_idx.exp: compilation foo_n207_004.adb
new FAIL: gdb.ada/type_coercion.exp: compilation assign.adb
new FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: compilation foo.adb
new FAIL: gdb.ada/var_arr_attrs.exp: compilation foo_o115_002.adb
new UNRESOLVED: gdb.ada/var_rec_arr.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/var_rec_arr.exp: print a1
new UNRESOLVED: gdb.ada/var_rec_arr.exp: print a2
new UNRESOLVED: gdb.ada/var_rec_arr.exp: ptype a1
new FAIL: gdb.ada/variant_record_packed_array.exp: compilation foo.adb
new FAIL: gdb.ada/varsize_limit.exp: compilation vsizelim.adb
new FAIL: gdb.ada/vla.exp: compilation vla.adb
new FAIL: gdb.ada/watch_minus_l.exp: compilation foo_ra10_006.adb
new FAIL: gdb.ada/whatis_array_val.exp: compilation foo.adb
new FAIL: gdb.ada/widewide.exp: compilation foo.adb
new FAIL: gdb.ada/win_fu_syms.exp: compilation foo.adb
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: set tdesc filename $srcdir/gdb.arch/arc-tdesc-cpu.xml
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: set tdesc filename /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.arch/arc-tdesc-cpu/trivial.xml
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: setting HS architecture
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: .text is readable
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: complete set architecture i386
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: complete set gnutarget
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: load core file
new UNRESOLVED: gdb.base/alias.exp: -a print elements 47
new UNRESOLVED: gdb.base/alias.exp: abbrev -a not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set2 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set3 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set4 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set5 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set6 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: alias -a -- -a = set
new UNRESOLVED: gdb.base/alias.exp: alias -a -- set6 = set
new UNRESOLVED: gdb.base/alias.exp: alias -a set2=set
new UNRESOLVED: gdb.base/alias.exp: alias -a set3= set
new UNRESOLVED: gdb.base/alias.exp: alias -a set4 =set
new UNRESOLVED: gdb.base/alias.exp: alias -a set5 = set
new UNRESOLVED: gdb.base/alias.exp: alias assigne
new UNRESOLVED: gdb.base/alias.exp: alias assigne imprime
new UNRESOLVED: gdb.base/alias.exp: alias assigne imprime limite-elements
new UNRESOLVED: gdb.base/alias.exp: alias foo=bar
new UNRESOLVED: gdb.base/alias.exp: alias set pr elms = set p elem
new UNRESOLVED: gdb.base/alias.exp: alias set print max-elements using assigne imprime
new UNRESOLVED: gdb.base/alias.exp: alias set2=set
new UNRESOLVED: gdb.base/alias.exp: alias spe = set p elem
new UNRESOLVED: gdb.base/alias.exp: assigne imprime elements 53
new UNRESOLVED: gdb.base/alias.exp: assigne imprime limite-elements 54
new UNRESOLVED: gdb.base/alias.exp: assigne imprime prefix not defined
new UNRESOLVED: gdb.base/alias.exp: assigne print elements 52
new UNRESOLVED: gdb.base/alias.exp: help set print
new UNRESOLVED: gdb.base/alias.exp: mismatched length
new UNRESOLVED: gdb.base/alias.exp: mismatched prefix
new UNRESOLVED: gdb.base/alias.exp: set imprime elements 55
new UNRESOLVED: gdb.base/alias.exp: set imprime prefix not defined
new UNRESOLVED: gdb.base/alias.exp: set pr elms 51
new UNRESOLVED: gdb.base/alias.exp: set print limite-elements 56
new UNRESOLVED: gdb.base/alias.exp: set print max-elements 57
new UNRESOLVED: gdb.base/alias.exp: set2 print elements 42
new UNRESOLVED: gdb.base/alias.exp: set3 print elements 43
new UNRESOLVED: gdb.base/alias.exp: set4 print elements 44
new UNRESOLVED: gdb.base/alias.exp: set5 print elements 45
new UNRESOLVED: gdb.base/alias.exp: set6 print elements 46
new UNRESOLVED: gdb.base/alias.exp: spe 50
new UNRESOLVED: gdb.base/alias.exp: verify -a
new UNRESOLVED: gdb.base/alias.exp: verify 52
new UNRESOLVED: gdb.base/alias.exp: verify 53
new UNRESOLVED: gdb.base/alias.exp: verify 54
new UNRESOLVED: gdb.base/alias.exp: verify 55
new UNRESOLVED: gdb.base/alias.exp: verify 56
new UNRESOLVED: gdb.base/alias.exp: verify 57
new UNRESOLVED: gdb.base/alias.exp: verify set pr elms
new UNRESOLVED: gdb.base/alias.exp: verify set2
new UNRESOLVED: gdb.base/alias.exp: verify set3
new UNRESOLVED: gdb.base/alias.exp: verify set4
new UNRESOLVED: gdb.base/alias.exp: verify set5
new UNRESOLVED: gdb.base/alias.exp: verify set6
new UNRESOLVED: gdb.base/alias.exp: verify spe
new FAIL: gdb.base/all-architectures-0.exp: all passed
new FAIL: gdb.base/all-architectures-0.exp: at least one architecture
new FAIL: gdb.base/all-architectures-0.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-0.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-0.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-0.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-1.exp: all passed
new FAIL: gdb.base/all-architectures-1.exp: at least one architecture
new FAIL: gdb.base/all-architectures-1.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-1.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-1.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-1.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-2.exp: all passed
new FAIL: gdb.base/all-architectures-2.exp: at least one architecture
new FAIL: gdb.base/all-architectures-2.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-2.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-2.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-2.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-3.exp: all passed
new FAIL: gdb.base/all-architectures-3.exp: at least one architecture
new FAIL: gdb.base/all-architectures-3.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-3.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-3.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-3.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-4.exp: all passed
new FAIL: gdb.base/all-architectures-4.exp: at least one architecture
new FAIL: gdb.base/all-architectures-4.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-4.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-4.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-4.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-5.exp: all passed
new FAIL: gdb.base/all-architectures-5.exp: at least one architecture
new FAIL: gdb.base/all-architectures-5.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-5.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-5.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-5.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-6.exp: all passed
new FAIL: gdb.base/all-architectures-6.exp: at least one architecture
new FAIL: gdb.base/all-architectures-6.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-6.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-7.exp: all passed
new FAIL: gdb.base/all-architectures-7.exp: at least one architecture
new FAIL: gdb.base/all-architectures-7.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-7.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-7.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-7.exp: set max-completions unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: break main
new UNRESOLVED: gdb.base/argv0-symlink.exp: p argc
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print elements 200
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print elements unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print repeats 200
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print repeats unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: show print elements
new UNRESOLVED: gdb.base/argv0-symlink.exp: show print repeats
new UNRESOLVED: gdb.base/bad-file.exp: directory
new UNRESOLVED: gdb.base/bad-file.exp: neither file nor directory
new UNRESOLVED: gdb.base/bad-file.exp: non-existent file
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "info source": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "set not-a-thing 4" -x good-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "set not-a-thing 4": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -jslkflsdjlkfjlksdjf: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x bad-commands -ex "info source": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x bad-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands -ex "set not-a-thing 4": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands -x bad-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch: spawn
new UNRESOLVED: gdb.base/bitops.exp: print value of !0
new UNRESOLVED: gdb.base/bitops.exp: print value of !1
new UNRESOLVED: gdb.base/bitops.exp: print value of !10
new UNRESOLVED: gdb.base/bitops.exp: print value of !100
new UNRESOLVED: gdb.base/bitops.exp: print value of !1000
new UNRESOLVED: gdb.base/bitops.exp: print value of !2
new UNRESOLVED: gdb.base/bitops.exp: print value of
new UNRESOLVED: gdb.base/bitops.exp: print value of -!0
new UNRESOLVED: gdb.base/bitops.exp: print value of -1 < 0 > 1
new UNRESOLVED: gdb.base/bitops.exp: print value of -3>4
new UNRESOLVED: gdb.base/bitops.exp: print value of 0 == 8 > 128 >> 1 + 2 * 2
new UNRESOLVED: gdb.base/bitops.exp: print value of 0 || 1 && 0 | 0 ^ 0 == 8
new UNRESOLVED: gdb.base/bitops.exp: print value of 0 || 1 && 0 | 0 ^ 0 == 8 > 128 >>1 +2 *2
new UNRESOLVED: gdb.base/bitops.exp: print value of 0.0 || 0
new UNRESOLVED: gdb.base/bitops.exp: print value of 0.0 || 1.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 1.0 || 0
new UNRESOLVED: gdb.base/bitops.exp: print value of 10 & 5
new UNRESOLVED: gdb.base/bitops.exp: print value of 10 ^ 5
new UNRESOLVED: gdb.base/bitops.exp: print value of 10 | 5
new UNRESOLVED: gdb.base/bitops.exp: print value of 15 ^ 10 ^ 5 ^ 7
new UNRESOLVED: gdb.base/bitops.exp: print value of 2 > -3
new UNRESOLVED: gdb.base/bitops.exp: print value of 3 * 2 / 4.0 * 2.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3!=3.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3!=5.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3.5 < -4.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3.5 < 4.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3==3.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3==4.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3>=2.5
new UNRESOLVED: gdb.base/bitops.exp: print value of 3>=4.5
new UNRESOLVED: gdb.base/bitops.exp: print value of 8 << 2 >> 4
new UNRESOLVED: gdb.base/bitops.exp: print value of ~-!0
new UNRESOLVED: gdb.base/command-line-input.exp: print 1\\n + 2
new UNRESOLVED: gdb.base/command-line-input.exp: print 1\\n2
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: cmd complete ""
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: set max-completions 1
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: show editing
new UNRESOLVED: gdb.base/complete-empty.exp: show editing
new UNRESOLVED: gdb.base/default.exp:
new UNRESOLVED: gdb.base/default.exp: add-symbol-file
new UNRESOLVED: gdb.base/default.exp: append
new UNRESOLVED: gdb.base/default.exp: append binary
new UNRESOLVED: gdb.base/default.exp: append binary memory
new UNRESOLVED: gdb.base/default.exp: append binary value
new UNRESOLVED: gdb.base/default.exp: append memory
new UNRESOLVED: gdb.base/default.exp: append value
new UNRESOLVED: gdb.base/default.exp: call
new UNRESOLVED: gdb.base/default.exp: catch
new UNRESOLVED: gdb.base/default.exp: cd
new UNRESOLVED: gdb.base/default.exp: check if python 3
new UNRESOLVED: gdb.base/default.exp: clear
new UNRESOLVED: gdb.base/default.exp: commands
new UNRESOLVED: gdb.base/default.exp: condition
new UNRESOLVED: gdb.base/default.exp: continue
new UNRESOLVED: gdb.base/default.exp: continue "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: core-file
new UNRESOLVED: gdb.base/default.exp: define
new UNRESOLVED: gdb.base/default.exp: delete
new UNRESOLVED: gdb.base/default.exp: delete "d" abbreviation
new UNRESOLVED: gdb.base/default.exp: delete breakpoints
new UNRESOLVED: gdb.base/default.exp: delete display prompt
new UNRESOLVED: gdb.base/default.exp: detach
new UNRESOLVED: gdb.base/default.exp: directory prompt
new UNRESOLVED: gdb.base/default.exp: disable
new UNRESOLVED: gdb.base/default.exp: disable "dis" abbreviation
new UNRESOLVED: gdb.base/default.exp: disable "disa" abbreviation
new UNRESOLVED: gdb.base/default.exp: disable breakpoints
new UNRESOLVED: gdb.base/default.exp: disable display
new UNRESOLVED: gdb.base/default.exp: disassemble
new UNRESOLVED: gdb.base/default.exp: display
new UNRESOLVED: gdb.base/default.exp: do
new UNRESOLVED: gdb.base/default.exp: document
new UNRESOLVED: gdb.base/default.exp: down
new UNRESOLVED: gdb.base/default.exp: down-silently
new UNRESOLVED: gdb.base/default.exp: dump
new UNRESOLVED: gdb.base/default.exp: dump binary
new UNRESOLVED: gdb.base/default.exp: dump binary memory
new UNRESOLVED: gdb.base/default.exp: dump binary value
new UNRESOLVED: gdb.base/default.exp: dump ihex
new UNRESOLVED: gdb.base/default.exp: dump ihex memory
new UNRESOLVED: gdb.base/default.exp: dump ihex value
new UNRESOLVED: gdb.base/default.exp: dump memory
new UNRESOLVED: gdb.base/default.exp: dump srec
new UNRESOLVED: gdb.base/default.exp: dump srec memory
new UNRESOLVED: gdb.base/default.exp: dump srec value
new UNRESOLVED: gdb.base/default.exp: dump tekhex
new UNRESOLVED: gdb.base/default.exp: dump tekhex memory
new UNRESOLVED: gdb.base/default.exp: dump tekhex value
new UNRESOLVED: gdb.base/default.exp: dump value
new UNRESOLVED: gdb.base/default.exp: echo
new UNRESOLVED: gdb.base/default.exp: enable
new UNRESOLVED: gdb.base/default.exp: enable breakpoints
new UNRESOLVED: gdb.base/default.exp: enable breakpoints delete
new UNRESOLVED: gdb.base/default.exp: enable breakpoints once
new UNRESOLVED: gdb.base/default.exp: enable delete
new UNRESOLVED: gdb.base/default.exp: enable display
new UNRESOLVED: gdb.base/default.exp: enable once
new UNRESOLVED: gdb.base/default.exp: fg
new UNRESOLVED: gdb.base/default.exp: finish
new UNRESOLVED: gdb.base/default.exp: forward-search
new UNRESOLVED: gdb.base/default.exp: frame
new UNRESOLVED: gdb.base/default.exp: frame "f" abbreviation
new UNRESOLVED: gdb.base/default.exp: gcore
new UNRESOLVED: gdb.base/default.exp: generate-core-file
new UNRESOLVED: gdb.base/default.exp: handle
new UNRESOLVED: gdb.base/default.exp: help
new UNRESOLVED: gdb.base/default.exp: help "h" abbreviation
new UNRESOLVED: gdb.base/default.exp: ignore
new UNRESOLVED: gdb.base/default.exp: info
new UNRESOLVED: gdb.base/default.exp: info "i" abbreviation
new UNRESOLVED: gdb.base/default.exp: info address
new UNRESOLVED: gdb.base/default.exp: info all-registers
new UNRESOLVED: gdb.base/default.exp: info args
new UNRESOLVED: gdb.base/default.exp: info bogus-gdb-command
new UNRESOLVED: gdb.base/default.exp: info breakpoints
new UNRESOLVED: gdb.base/default.exp: info copying
new UNRESOLVED: gdb.base/default.exp: info display
new UNRESOLVED: gdb.base/default.exp: info files
new UNRESOLVED: gdb.base/default.exp: info float
new UNRESOLVED: gdb.base/default.exp: info frame
new UNRESOLVED: gdb.base/default.exp: info frame "f" abbreviation
new UNRESOLVED: gdb.base/default.exp: info functions
new UNRESOLVED: gdb.base/default.exp: info locals
new UNRESOLVED: gdb.base/default.exp: info program
new UNRESOLVED: gdb.base/default.exp: info registers
new UNRESOLVED: gdb.base/default.exp: info set
new UNRESOLVED: gdb.base/default.exp: info source
new UNRESOLVED: gdb.base/default.exp: info sources
new UNRESOLVED: gdb.base/default.exp: info stack
new UNRESOLVED: gdb.base/default.exp: info stack "s" abbreviation
new UNRESOLVED: gdb.base/default.exp: info symbol
new UNRESOLVED: gdb.base/default.exp: info target
new UNRESOLVED: gdb.base/default.exp: info terminal
new UNRESOLVED: gdb.base/default.exp: info threads
new UNRESOLVED: gdb.base/default.exp: info types
new UNRESOLVED: gdb.base/default.exp: info variables
new UNRESOLVED: gdb.base/default.exp: info vector
new UNRESOLVED: gdb.base/default.exp: info warranty
new UNRESOLVED: gdb.base/default.exp: info watchpoints
new UNRESOLVED: gdb.base/default.exp: inspect
new UNRESOLVED: gdb.base/default.exp: jump
new UNRESOLVED: gdb.base/default.exp: kill
new UNRESOLVED: gdb.base/default.exp: list
new UNRESOLVED: gdb.base/default.exp: list "l" abbreviation
new UNRESOLVED: gdb.base/default.exp: load
new UNRESOLVED: gdb.base/default.exp: next
new UNRESOLVED: gdb.base/default.exp: next "n" abbreviation
new UNRESOLVED: gdb.base/default.exp: nexti
new UNRESOLVED: gdb.base/default.exp: nexti "ni" abbreviation
new UNRESOLVED: gdb.base/default.exp: output
new UNRESOLVED: gdb.base/default.exp: overlay
new UNRESOLVED: gdb.base/default.exp: overlay auto
new UNRESOLVED: gdb.base/default.exp: overlay list
new UNRESOLVED: gdb.base/default.exp: overlay manual #1
new UNRESOLVED: gdb.base/default.exp: overlay manual #2
new UNRESOLVED: gdb.base/default.exp: overlay map #1
new UNRESOLVED: gdb.base/default.exp: overlay map #2
new UNRESOLVED: gdb.base/default.exp: overlay off
new UNRESOLVED: gdb.base/default.exp: overlay on
new UNRESOLVED: gdb.base/default.exp: overlay unmap #1
new UNRESOLVED: gdb.base/default.exp: overlay unmap #2
new UNRESOLVED: gdb.base/default.exp: print
new UNRESOLVED: gdb.base/default.exp: print "p" abbreviation
new UNRESOLVED: gdb.base/default.exp: printf
new UNRESOLVED: gdb.base/default.exp: ptype
new UNRESOLVED: gdb.base/default.exp: pwd
new UNRESOLVED: gdb.base/default.exp: rbreak
new UNRESOLVED: gdb.base/default.exp: restore
new UNRESOLVED: gdb.base/default.exp: return
new UNRESOLVED: gdb.base/default.exp: reverse-search
new UNRESOLVED: gdb.base/default.exp: search
new UNRESOLVED: gdb.base/default.exp: section
new UNRESOLVED: gdb.base/default.exp: set
new UNRESOLVED: gdb.base/default.exp: set annotate
new UNRESOLVED: gdb.base/default.exp: set args
new UNRESOLVED: gdb.base/default.exp: set check "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check "ch" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check "check" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check range
new UNRESOLVED: gdb.base/default.exp: set check type
new UNRESOLVED: gdb.base/default.exp: set complaints
new UNRESOLVED: gdb.base/default.exp: set confirm
new UNRESOLVED: gdb.base/default.exp: set environment
new UNRESOLVED: gdb.base/default.exp: set height
new UNRESOLVED: gdb.base/default.exp: set history
new UNRESOLVED: gdb.base/default.exp: set history expansion
new UNRESOLVED: gdb.base/default.exp: set history filename
new UNRESOLVED: gdb.base/default.exp: set history save
new UNRESOLVED: gdb.base/default.exp: set history save off
new UNRESOLVED: gdb.base/default.exp: set history size
new UNRESOLVED: gdb.base/default.exp: set language
new UNRESOLVED: gdb.base/default.exp: set listsize
new UNRESOLVED: gdb.base/default.exp: set print
new UNRESOLVED: gdb.base/default.exp: set print "p" abbreviation
new UNRESOLVED: gdb.base/default.exp: set print "pr" abbreviation
new UNRESOLVED: gdb.base/default.exp: set print address
new UNRESOLVED: gdb.base/default.exp: set print array
new UNRESOLVED: gdb.base/default.exp: set print asm-demangle
new UNRESOLVED: gdb.base/default.exp: set print demangle
new UNRESOLVED: gdb.base/default.exp: set print elements
new UNRESOLVED: gdb.base/default.exp: set print object
new UNRESOLVED: gdb.base/default.exp: set print pretty
new UNRESOLVED: gdb.base/default.exp: set print sevenbit-strings
new UNRESOLVED: gdb.base/default.exp: set print union
new UNRESOLVED: gdb.base/default.exp: set print vtbl
new UNRESOLVED: gdb.base/default.exp: set radix
new UNRESOLVED: gdb.base/default.exp: set the history filename
new UNRESOLVED: gdb.base/default.exp: set variable
new UNRESOLVED: gdb.base/default.exp: set verbose
new UNRESOLVED: gdb.base/default.exp: set width
new UNRESOLVED: gdb.base/default.exp: set write
new UNRESOLVED: gdb.base/default.exp: shell echo Hi dad!
new UNRESOLVED: gdb.base/default.exp: show
new UNRESOLVED: gdb.base/default.exp: show annotate
new UNRESOLVED: gdb.base/default.exp: show args
new UNRESOLVED: gdb.base/default.exp: show check "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check "ch" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check "check" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check range
new UNRESOLVED: gdb.base/default.exp: show check type
new UNRESOLVED: gdb.base/default.exp: show commands
new UNRESOLVED: gdb.base/default.exp: show complaints
new UNRESOLVED: gdb.base/default.exp: show confirm
new UNRESOLVED: gdb.base/default.exp: show convenience
new UNRESOLVED: gdb.base/default.exp: show directories
new UNRESOLVED: gdb.base/default.exp: show editing
new UNRESOLVED: gdb.base/default.exp: show height
new UNRESOLVED: gdb.base/default.exp: show history
new UNRESOLVED: gdb.base/default.exp: show history expansion
new UNRESOLVED: gdb.base/default.exp: show history filename
new UNRESOLVED: gdb.base/default.exp: show history save
new UNRESOLVED: gdb.base/default.exp: show history size
new UNRESOLVED: gdb.base/default.exp: show language
new UNRESOLVED: gdb.base/default.exp: show listsize
new UNRESOLVED: gdb.base/default.exp: show p
new UNRESOLVED: gdb.base/default.exp: show paths
new UNRESOLVED: gdb.base/default.exp: show pr
new UNRESOLVED: gdb.base/default.exp: show print
new UNRESOLVED: gdb.base/default.exp: show print address
new UNRESOLVED: gdb.base/default.exp: show print array
new UNRESOLVED: gdb.base/default.exp: show print asm-demangle
new UNRESOLVED: gdb.base/default.exp: show print demangle
new UNRESOLVED: gdb.base/default.exp: show print elements
new UNRESOLVED: gdb.base/default.exp: show print object
new UNRESOLVED: gdb.base/default.exp: show print pretty
new UNRESOLVED: gdb.base/default.exp: show print sevenbit-strings
new UNRESOLVED: gdb.base/default.exp: show print union
new UNRESOLVED: gdb.base/default.exp: show print vtbl
new UNRESOLVED: gdb.base/default.exp: show prompt
new UNRESOLVED: gdb.base/default.exp: show radix
new UNRESOLVED: gdb.base/default.exp: show user
new UNRESOLVED: gdb.base/default.exp: show values
new UNRESOLVED: gdb.base/default.exp: show verbose
new UNRESOLVED: gdb.base/default.exp: show version
new UNRESOLVED: gdb.base/default.exp: show width
new UNRESOLVED: gdb.base/default.exp: show write
new UNRESOLVED: gdb.base/default.exp: signal
new UNRESOLVED: gdb.base/default.exp: source
new UNRESOLVED: gdb.base/default.exp: step "s" abbreviation #1
new UNRESOLVED: gdb.base/default.exp: step "s" abbreviation #2
new UNRESOLVED: gdb.base/default.exp: step #1
new UNRESOLVED: gdb.base/default.exp: step #2
new UNRESOLVED: gdb.base/default.exp: stepi
new UNRESOLVED: gdb.base/default.exp: stepi "si" abbreviation
new UNRESOLVED: gdb.base/default.exp: symbol-file
new UNRESOLVED: gdb.base/default.exp: target
new UNRESOLVED: gdb.base/default.exp: target native
new UNRESOLVED: gdb.base/default.exp: tbreak
new UNRESOLVED: gdb.base/default.exp: thread
new UNRESOLVED: gdb.base/default.exp: thread apply
new UNRESOLVED: gdb.base/default.exp: thread find
new UNRESOLVED: gdb.base/default.exp: thread name
new UNRESOLVED: gdb.base/default.exp: undisplay prompt
new UNRESOLVED: gdb.base/default.exp: unset
new UNRESOLVED: gdb.base/default.exp: unset environment prompt
new UNRESOLVED: gdb.base/default.exp: until
new UNRESOLVED: gdb.base/default.exp: until "u" abbreviation
new UNRESOLVED: gdb.base/default.exp: up-silently
new UNRESOLVED: gdb.base/default.exp: verify python support
new UNRESOLVED: gdb.base/default.exp: watch
new UNRESOLVED: gdb.base/default.exp: whatis
new UNRESOLVED: gdb.base/default.exp: where
new UNRESOLVED: gdb.base/default.exp: x
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567890123456789012345678901234dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567890123456dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567890123456.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567890123456789012345678901234.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567890123456789012345678901234dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567890123456dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E384dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E6144dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E96df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2147483648ll
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2147483648ull
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2ll
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 4294967296ull
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd < 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd < 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df + 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df + 1.2f
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df < 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df < 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df > 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl < 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl < 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl > 2
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd * 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd + 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd - 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd / 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df * 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df + 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df - 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df / 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl * 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl + 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl - 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl / 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567890123456.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567890123456789012345678901234.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 + 1.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 > 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 > 3.1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.1dd + 2.7df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.1df + 2.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.3dd + 2.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.3dl + 2.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.6df + 2.7dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.6dl + 2.7df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 3 + 2.1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 1.2df + 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2 + 1.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dd + 2.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dd + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dl + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 3 + 2.1dl
new UNRESOLVED: gdb.base/display.exp: could not run to main - other tests will fail.
new UNRESOLVED: gdb.base/echo.exp: echo test
new UNRESOLVED: gdb.base/empty_exe.exp: file ''
new UNRESOLVED: gdb.base/empty_exe.exp: print 1
new UNRESOLVED: gdb.base/endian.exp: auto target endianness
new UNRESOLVED: gdb.base/endian.exp: auto target endianness big
new UNRESOLVED: gdb.base/endian.exp: auto target endianness little
new UNRESOLVED: gdb.base/endian.exp: default target endianness
new UNRESOLVED: gdb.base/endian.exp: get target endianness
new FAIL: gdb.base/endian.exp: override auto target endianness big
new FAIL: gdb.base/endian.exp: override auto target endianness little
new UNRESOLVED: gdb.base/endian.exp: override target endianness big
new FAIL: gdb.base/endian.exp: override target endianness little
new UNRESOLVED: gdb.base/endian.exp: previously big default executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously big default no executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously little default executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously little default no executable endianness
new UNRESOLVED: gdb.base/endian.exp: set target endianness
new UNRESOLVED: gdb.base/endian.exp: set target endianness big
new UNRESOLVED: gdb.base/endian.exp: set target endianness little
new UNRESOLVED: gdb.base/environ.exp: all environment variables have been unset
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable previously undefined
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable using = syntax
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable with trailing equals
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable with trailing whitespace
new UNRESOLVED: gdb.base/environ.exp: confirm unset environment variable worked
new UNRESOLVED: gdb.base/environ.exp: set environment variable
new UNRESOLVED: gdb.base/environ.exp: set environment variable previously undefined
new UNRESOLVED: gdb.base/environ.exp: set environment variable to null value
new UNRESOLVED: gdb.base/environ.exp: set environment variable using = syntax
new UNRESOLVED: gdb.base/environ.exp: set environment variable with trailing equals
new UNRESOLVED: gdb.base/environ.exp: set environment variable with trailing whitespace
new UNRESOLVED: gdb.base/environ.exp: set environment without arguments
new UNRESOLVED: gdb.base/environ.exp: set environment without variable name
new UNRESOLVED: gdb.base/environ.exp: set path works properly
new UNRESOLVED: gdb.base/environ.exp: show environment works
new UNRESOLVED: gdb.base/environ.exp: show non-existent environment variable
new UNRESOLVED: gdb.base/environ.exp: show null environment variable
new UNRESOLVED: gdb.base/environ.exp: show paths works properly
new UNRESOLVED: gdb.base/environ.exp: unset all environment variables
new UNRESOLVED: gdb.base/environ.exp: unset environment variable
new UNRESOLVED: gdb.base/eval.exp: first eval.
new UNRESOLVED: gdb.base/eval.exp: initialize $a.
new UNRESOLVED: gdb.base/eval.exp: second eval.
new UNRESOLVED: gdb.base/execl-update-breakpoints.exp: couldn't run to main
new UNRESOLVED: gdb.base/frameapply.exp: can't run to setup_done
new UNRESOLVED: gdb.base/gdb1056.exp: print 1/0
new UNRESOLVED: gdb.base/gdb1056.exp: test unsigned division by zero
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize= 20 : show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize= 20 : show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5ab: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5ab: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=0: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=0: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=10zab: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=10zab: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=20: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=20: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=50: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=50: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=99999999999999999999999999999999999: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=99999999999999999999999999999999999: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=not_an_integer: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=not_an_integer: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=1000: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=1000: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=foo: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=foo: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/zero: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/zero: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: appending: server show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: creating: server show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: print 1
new UNRESOLVED: gdb.base/help.exp: apropos \
new UNRESOLVED: gdb.base/help.exp: apropos apropos
new UNRESOLVED: gdb.base/help.exp: apropos handle signal
new UNRESOLVED: gdb.base/help.exp: disable pagination
new UNRESOLVED: gdb.base/help.exp: help aliases
new UNRESOLVED: gdb.base/help.exp: help backtrace
new UNRESOLVED: gdb.base/help.exp: help backtrace "bt" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "b" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "br" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "bre" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "brea" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "break" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoints
new UNRESOLVED: gdb.base/help.exp: help commands
new UNRESOLVED: gdb.base/help.exp: help data
new UNRESOLVED: gdb.base/help.exp: help delete
new UNRESOLVED: gdb.base/help.exp: help delete "d" abbreviation
new UNRESOLVED: gdb.base/help.exp: help files
new UNRESOLVED: gdb.base/help.exp: help gotcha
new UNRESOLVED: gdb.base/help.exp: help help
new UNRESOLVED: gdb.base/help.exp: help help "h" abbreviation
new UNRESOLVED: gdb.base/help.exp: help info bogus-gdb-command
new UNRESOLVED: gdb.base/help.exp: help internals
new UNRESOLVED: gdb.base/help.exp: help obscure
new UNRESOLVED: gdb.base/help.exp: help running
new UNRESOLVED: gdb.base/help.exp: help show commands
new UNRESOLVED: gdb.base/help.exp: help show confirm
new UNRESOLVED: gdb.base/help.exp: help show copying
new UNRESOLVED: gdb.base/help.exp: help show warranty
new UNRESOLVED: gdb.base/help.exp: help stack
new UNRESOLVED: gdb.base/help.exp: help status
new UNRESOLVED: gdb.base/help.exp: help support
new UNRESOLVED: gdb.base/help.exp: help tracepoints
new UNRESOLVED: gdb.base/help.exp: help user-defined
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: set history remove-duplicates 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: set history remove-duplicates 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: set history remove-duplicates 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 3
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 4
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 3
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 4
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: set history remove-duplicates unlimited
new UNRESOLVED: gdb.base/history-duplicates.exp: show editing
new UNRESOLVED: gdb.base/history-duplicates.exp: show history remove-duplicates
new UNRESOLVED: gdb.base/ifelse.exp: call original define
new UNRESOLVED: gdb.base/ifelse.exp: call replacement define
new UNRESOLVED: gdb.base/ifelse.exp: create define with empty else
new UNRESOLVED: gdb.base/ifelse.exp: if 0 .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 0 with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 1 .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 1 with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #1
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #2
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #3
new UNRESOLVED: gdb.base/ifelse.exp: replace define with if .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: set confirm off
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tc-td: 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-tc-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ts: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tf: 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-tf-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-ts: 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-ti-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tl-td: 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-tl-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-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-td: 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-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tld: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tll-tf: 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-td: 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-ts-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ts: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tc-td: 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-tc-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-ts: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tf: 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-tf-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-ts: 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-ti-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tl-td: 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-tl-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-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-td: 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-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tld: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tll-tf: 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-td: 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-ts-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ts: failed to compile
new UNRESOLVED: gdb.base/infnan.exp: print a
new FAIL: gdb.base/info-os.exp: cannot compile test program
new UNRESOLVED: gdb.base/info-types.exp: l=c: can't run to main
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode on
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode on
new UNRESOLVED: gdb.base/interact.exp: show interactive-mode
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode on
new UNRESOLVED: gdb.base/multi-line-starts-subshell.exp: gdb input still works
new UNRESOLVED: gdb.base/multi-line-starts-subshell.exp: spawn subshell from multi-line
new UNRESOLVED: gdb.base/osabi.exp: set debug arch 1
new UNRESOLVED: gdb.base/osabi.exp: set osabi none
new UNRESOLVED: gdb.base/page.exp: paged count
new UNRESOLVED: gdb.base/page.exp: paged count for interrupt
new UNRESOLVED: gdb.base/page.exp: paged count remainder
new UNRESOLVED: gdb.base/page.exp: paged help
new UNRESOLVED: gdb.base/page.exp: pagination is off
new UNRESOLVED: gdb.base/page.exp: pagination is on
new UNRESOLVED: gdb.base/page.exp: q
new UNRESOLVED: gdb.base/page.exp: quit while paging
new UNRESOLVED: gdb.base/page.exp: set editing off
new UNRESOLVED: gdb.base/page.exp: set height -1
new UNRESOLVED: gdb.base/page.exp: set height 10
new UNRESOLVED: gdb.base/page.exp: set height 5
new UNRESOLVED: gdb.base/page.exp: set pagination off
new UNRESOLVED: gdb.base/page.exp: set pagination on
new UNRESOLVED: gdb.base/page.exp: set width -1
new UNRESOLVED: gdb.base/page.exp: set width 30
new UNRESOLVED: gdb.base/page.exp: size=0: set height 0
new UNRESOLVED: gdb.base/page.exp: size=0: set height 200
new UNRESOLVED: gdb.base/page.exp: size=0: set width 0
new UNRESOLVED: gdb.base/page.exp: size=0: set width 200
new UNRESOLVED: gdb.base/page.exp: size=0: show height
new UNRESOLVED: gdb.base/page.exp: size=0: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=0: show width
new UNRESOLVED: gdb.base/page.exp: size=0: show width unlimited
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set height 0x80000000
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set height 200
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set width 0x80000000
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set width 200
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show height
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show width
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show width unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set height 200
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set height unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set width 200
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set width unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show height
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show width
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show width unlimited
new UNRESOLVED: gdb.base/page.exp: unpaged help
new UNRESOLVED: gdb.base/quit.exp: quit with expression
new UNRESOLVED: gdb.base/quit.exp: quit with syntax error
new UNRESOLVED: gdb.base/radix.exp: Output radix unchanged after rejecting 0
new UNRESOLVED: gdb.base/radix.exp: Reject input-radix 0
new UNRESOLVED: gdb.base/radix.exp: Reject input-radix 1
new UNRESOLVED: gdb.base/radix.exp: Reject output-radix 0
new UNRESOLVED: gdb.base/radix.exp: Reject output-radix 1
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 10
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 16
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 2
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 3
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 8
new UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 10
new UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 16
new UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 8
new UNRESOLVED: gdb.base/radix.exp: input radix unchanged after rejecting 0
new UNRESOLVED: gdb.base/radix.exp: input radix unchanged after rejecting 1
new UNRESOLVED: gdb.base/radix.exp: output radix unchanged after rejecting 1
new UNRESOLVED: gdb.base/radix.exp: output radix unchanged after rejection through set radix command
new UNRESOLVED: gdb.base/radix.exp: print
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -100; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -256; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -4; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -64; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -9; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -101; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -10; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -257; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -5; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -65; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -10; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -16; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -2; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -3; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -8; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -11; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -17; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -3; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -4; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -9; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -12; expect -12; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -20; expect -16; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -2; expect Invalid number "2"\.; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -9; expect Invalid number "9".; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 010; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 17; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect f; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 100; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 100; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 144; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 256; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 4; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 64; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 64; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 9; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 10101; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 21; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 4161; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 65793; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 91; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 101; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 10; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 257; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 5; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 65; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 10; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 10; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 12; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 16; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 2; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 3; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 8; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10; expect a; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 11; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 17; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 3; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 4; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 9; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 14; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 24; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20; expect 16; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20; expect 6; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 2; expect 2; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 30; expect Invalid number "30"\.; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 3; expect Invalid number "3"\.; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 4; expect Invalid number "4"\.; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 8; expect Invalid number "8".; input radix 8
new UNRESOLVED: gdb.base/radix.exp: reset radices
new UNRESOLVED: gdb.base/radix.exp: set input-radix 10
new UNRESOLVED: gdb.base/radix.exp: set input-radix 16
new UNRESOLVED: gdb.base/radix.exp: set input-radix 2
new UNRESOLVED: gdb.base/radix.exp: set input-radix 3
new UNRESOLVED: gdb.base/radix.exp: set input-radix 8
new UNRESOLVED: gdb.base/radix.exp: set output-radix 10
new UNRESOLVED: gdb.base/radix.exp: set output-radix 16
new UNRESOLVED: gdb.base/radix.exp: set output-radix 8
new UNRESOLVED: gdb.base/radix.exp: set radix 7 rejected
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 10
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 16
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 2
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 3
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 8
new UNRESOLVED: gdb.base/radix.exp: show radix, output radix 10
new UNRESOLVED: gdb.base/radix.exp: show radix, output radix 16
new UNRESOLVED: gdb.base/radix.exp: show radix, output radix 8
new UNRESOLVED: gdb.base/readline.exp: Simple operate-and-get-next - send p 1
new UNRESOLVED: gdb.base/readline.exp: arrow keys with secondary prompt
new UNRESOLVED: gdb.base/readline.exp: operate-and-get-next with secondary prompt - send if 1 > 0
new UNRESOLVED: gdb.base/readline.exp: print 42
new UNRESOLVED: gdb.base/readline.exp: show editing
new UNRESOLVED: gdb.base/remotetimeout.exp: correct remotetimeout printed
new UNRESOLVED: gdb.base/shell.exp: ! echo foo
new UNRESOLVED: gdb.base/shell.exp: ! exit 0
new UNRESOLVED: gdb.base/shell.exp: ! exit 1
new UNRESOLVED: gdb.base/shell.exp: ! kill -2 $$
new UNRESOLVED: gdb.base/shell.exp: !echo foo
new UNRESOLVED: gdb.base/shell.exp: -d spaces value missing
new UNRESOLVED: gdb.base/shell.exp: -d value missing
new UNRESOLVED: gdb.base/shell.exp: DELIM delimiter missing
new UNRESOLVED: gdb.base/shell.exp: SHELL_COMMAND missing
new UNRESOLVED: gdb.base/shell.exp: SHELL_COMMAND missing with delimiter
new UNRESOLVED: gdb.base/shell.exp: all missing
new UNRESOLVED: gdb.base/shell.exp: alternate 1char delim
new UNRESOLVED: gdb.base/shell.exp: alternate 1char delim, no space
new UNRESOLVED: gdb.base/shell.exp: alternate 3char delim
new UNRESOLVED: gdb.base/shell.exp: alternate 3char delim, no space
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe print 1 | "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| print 1 | "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|print 1 | "
new UNRESOLVED: gdb.base/shell.exp: define foo
new UNRESOLVED: gdb.base/shell.exp: delimiter missing due to missing space
new UNRESOLVED: gdb.base/shell.exp: double pipe
new UNRESOLVED: gdb.base/shell.exp: double pipe, pipe char
new UNRESOLVED: gdb.base/shell.exp: echo coucou
new UNRESOLVED: gdb.base/shell.exp: enter commands
new UNRESOLVED: gdb.base/shell.exp: no space around pipe char
new UNRESOLVED: gdb.base/shell.exp: pipe fail exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe fail exitsignal
new UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitsignal
new UNRESOLVED: gdb.base/shell.exp: pipe success exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe success exitsignal
new UNRESOLVED: gdb.base/shell.exp: repeat previous command
new UNRESOLVED: gdb.base/shell.exp: set max-completions 0
new UNRESOLVED: gdb.base/shell.exp: set max-completions 2
new UNRESOLVED: gdb.base/shell.exp: shell echo foo
new UNRESOLVED: gdb.base/shell.exp: shell fail exitcode
new UNRESOLVED: gdb.base/shell.exp: shell fail exitsignal
new UNRESOLVED: gdb.base/shell.exp: shell interrupt exitcode
new UNRESOLVED: gdb.base/shell.exp: shell interrupt exitsignal
new UNRESOLVED: gdb.base/shell.exp: shell success exitcode
new UNRESOLVED: gdb.base/shell.exp: shell success exitsignal
new UNRESOLVED: gdb.base/shell.exp: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
new UNRESOLVED: gdb.base/shell.exp: simple pipe
new UNRESOLVED: gdb.base/shell.exp: simple pipe with arg
new UNRESOLVED: gdb.base/shell.exp: | delimiter missing
new UNRESOLVED: gdb.base/shell.exp: |p 123| exit 0
new UNRESOLVED: gdb.base/shell.exp: |p 123| exit 1
new UNRESOLVED: gdb.base/shell.exp: |p 123| kill -2 $$
new UNRESOLVED: gdb.base/source-dir.exp: directory /nOtExStInG/a /nOtExStInG/b /nOtExStInG/c
new UNRESOLVED: gdb.base/source-dir.exp: directory /nOtExStInG/b /nOtExStInG/d /nOtExStInG/c
new UNRESOLVED: gdb.base/source.exp: script contains error
new UNRESOLVED: gdb.base/source.exp: set search directories
new UNRESOLVED: gdb.base/source.exp: source -s
new UNRESOLVED: gdb.base/source.exp: source -s -v
new UNRESOLVED: gdb.base/source.exp: source -v
new UNRESOLVED: gdb.base/source.exp: source -v -s
new UNRESOLVED: gdb.base/source.exp: source after -v
new UNRESOLVED: gdb.base/source.exp: source for-sure-nonexistant-file
new UNRESOLVED: gdb.base/source.exp: source source-nofile.gdb
new UNRESOLVED: gdb.base/step-over-syscall.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/step-over-syscall.exp: run to main
new UNRESOLVED: gdb.base/subst.exp: add depuis -> vers substitution rule
new UNRESOLVED: gdb.base/subst.exp: add from -> to substitution rule
new UNRESOLVED: gdb.base/subst.exp: add from1 -> to1 substitution rule
new UNRESOLVED: gdb.base/subst.exp: add source -> destination substitution rule
new UNRESOLVED: gdb.base/subst.exp: add substitution rule to empty string
new UNRESOLVED: gdb.base/subst.exp: deactivate GDB's confirmation interface
new UNRESOLVED: gdb.base/subst.exp: remove all remaining substitution rules
new UNRESOLVED: gdb.base/subst.exp: remove default substitution rules
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, first argument is empty string
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, too few arguments
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, too many arguments
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after all remaining rules removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after depuis rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after empty rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after from rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path depuis, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, after unsetting it
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from/path, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from_a_bad_path, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path garbage, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: show substitute-path, too many arguments
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path depuis
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path empty
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from after the rule was removed
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path, too many arguments
new UNRESOLVED: gdb.base/trace-commands.exp: define user command
new UNRESOLVED: gdb.base/trace-commands.exp: depth resets on error part 1
new UNRESOLVED: gdb.base/trace-commands.exp: depth resets on error part 2
new UNRESOLVED: gdb.base/trace-commands.exp: nested trace-commands test
new UNRESOLVED: gdb.base/trace-commands.exp: nested trace-commands test with source
new UNRESOLVED: gdb.base/trace-commands.exp: set trace-commands
new UNRESOLVED: gdb.base/trace-commands.exp: show trace-commands says off
new UNRESOLVED: gdb.base/trace-commands.exp: show trace-commands says on
new UNRESOLVED: gdb.base/trace-commands.exp: simple trace-commands test
new UNRESOLVED: gdb.base/trace-commands.exp: source -v
new UNRESOLVED: gdb.base/vla-optimized-out.exp: o1: can't run to f1
new UNRESOLVED: gdb.base/warning.exp: echo 23\n
new UNRESOLVED: gdb.btrace/cpu.exp: default cpu
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu auto
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/1
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0x0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo/bar
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu none
new UNRESOLVED: gdb.btrace/cpu.exp: set record
new UNRESOLVED: gdb.btrace/cpu.exp: set record btrace
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu auto
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/1
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0x0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo/bar
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu none
new UNRESOLVED: gdb.cp/debug-expr.exp: print dynamic_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: print reinterpret_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: print static_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: set debug expression 1
new UNRESOLVED: gdb.cp/debug-expr.exp: set language c++
new UNRESOLVED: gdb.cp/demangle.exp: auto: check demangling style
new UNRESOLVED: gdb.cp/demangle.exp: auto: set demangle-style
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c -- _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c++ -- _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c++ _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l garbage xyzdje
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z13BitPatterntoaOK10BitPatternccc
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z31DrawDestinationTransformedImageP7_XImageiiS0_iimjiijmmP4_XGCOK13ivTransformeriiii
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z3argOK7Complex
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN11RelateManip6EffectEO7ivEvent
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN20DisplayList_IteratorC4EO11DisplayList
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN3fooC4EOS_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN3fooC4EiOS_iS0_iS0_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE3PixC4EOKS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE7elementC2EOKS0_PS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE7elementC4EOKS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityEC4EOKS1_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4PixXI11VHDLLibrary14VHDLLibraryRep4ListI10VHDLEntityEEC2EOKS5_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN7ivWorldC2EPKcOiPPcPK12ivOptionDescPK14ivPropertyData
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN8TextCode14CoreConstDeclsEO7ostream
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic: gnu-v3: check demangling style
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic: gnu-v3: set demangle-style
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK11VHDLLibrary5nextEEO4PixXIS_14VHDLLibraryRep4ListI10VHDLEntityEE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK4ListI10VHDLEntityE4nextEONS1_3PixE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK4ListI10VHDLEntityEclEOKNS1_3PixE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOK10BitPattern
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOK12BitSubStringi
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOKS_
new UNRESOLVED: gdb.cp/demangle.exp: set language c++
new UNRESOLVED: gdb.cp/demangle.exp: set language unknown
new UNRESOLVED: gdb.cp/demangle.exp: set width 0
new UNRESOLVED: gdb.cp/maint.exp: help maint cp
new UNRESOLVED: gdb.cp/maint.exp: help maint cp first_component
new UNRESOLVED: gdb.cp/maint.exp: help maint cp namespace
new UNRESOLVED: gdb.cp/maint.exp: help maintenance cplus
new UNRESOLVED: gdb.cp/maint.exp: maint cp
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component C<A>::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component C<std::basic_streambuf<wchar_t,std::char_traits<wchar_t> > >::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component T<Cooperator>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component bool operator<<char>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo::bar::baz
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<&
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<&operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int operator<< <char>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator  ->
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator ->
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator>>
new UNRESOLVED: gdb.cp/maint.exp: maint cp namespace
new UNRESOLVED: gdb.cp/maint.exp: set complaints 1000
new UNRESOLVED: gdb.cp/punctuator.exp: print
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 1
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 2
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 3
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 1
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 2
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 3
new UNRESOLVED: gdb.cp/punctuator.exp: set lang c++
new UNRESOLVED: gdb.cp/ref-params.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/ref-params.exp: print value of Child& in f2
new UNRESOLVED: gdb.cp/ref-params.exp: print value of Parent& in f1
new UNRESOLVED: gdb.cp/ref-params.exp: print value of a Child in main
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on Child in main
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on Child& in f2
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f2 on
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f2 on Child in main
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print f1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print mf1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print mf2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Child&& in f2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Child&& in f2: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Parent&& in f1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Parent&& in f1: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f1 on
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f1 on Child&& in f2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f2 on
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char16_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char16_t is unsigned
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char32_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char32_t is unsigned
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p L"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p U"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p u"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: set language c++
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: sizeof
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: wchar_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: wchar_t sign
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: char16_t is not built-in
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: char32_t is not built-in
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p L"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p U"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p u"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: set language c
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: wchar_t is not built-in
new UNRESOLVED: gdb.disasm/disassembler-options.exp: set disassembler-options
new UNRESOLVED: gdb.disasm/disassembler-options.exp: set disassembler-options invalid_option_value
new UNRESOLVED: gdb.disasm/disassembler-options.exp: show NULL disassembler-options
new UNRESOLVED: gdb.dlang/debug-expr.exp: print *
new UNRESOLVED: gdb.dlang/debug-expr.exp: set debug expression 1
new UNRESOLVED: gdb.dlang/debug-expr.exp: set language d
new UNRESOLVED: gdb.dlang/demangle.exp: set language d
new UNRESOLVED: gdb.dlang/expression.exp: set language d
new UNRESOLVED: gdb.dlang/primitive-types.exp: set language d
new UNRESOLVED: gdb.dlang/properties.exp: set language d
new UNRESOLVED: gdb.dlang/watch-loc.exp: disassemble _Dmain
new UNRESOLVED: gdb.dlang/watch-loc.exp: p _Dmain_label - _Dmain
new UNRESOLVED: gdb.dlang/watch-loc.exp: x/2i _Dmain+
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: disassemble first
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: disassemble second
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p first_label - first
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p second_label - second
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: x/2i first+
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: x/2i second+
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p g_label - g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i g+
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: console: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: console: set print object on
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: disassemble func01
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: p func01_label - func01
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: x/2i func01+
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p bar_label - bar
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p baz_label - baz
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_cold_label - foo_cold
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_label - foo
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p main_label - main
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble bar
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble baz
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble foo
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble foo_low
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p bar_label - bar
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p baz_label - baz
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p foo_label - foo
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p foo_low_label - foo_low
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i bar+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i baz+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i foo+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i foo_low+
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/implref-struct.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/void-type.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/void-type.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i main+
new UNRESOLVED: gdb.objc/print.exp: set language objective-c
new UNRESOLVED: gdb.opt/inline-break.exp: cmd=break: could not run to main
new UNRESOLVED: gdb.pascal/print.exp: set language pascal
new UNRESOLVED: gdb.pascal/types.exp: set language pascal
new UNRESOLVED: gdb.python/py-as-string.exp: couldn't run to main.
new UNRESOLVED: gdb.python/py-error.exp: check if python 3
new UNRESOLVED: gdb.python/py-error.exp: main reached
new UNRESOLVED: gdb.python/py-error.exp: no delayed error
new UNRESOLVED: gdb.python/py-error.exp: set host-charset IBM1047
new UNRESOLVED: gdb.python/py-error.exp: verify python support
new KFAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new UNRESOLVED: gdb.python/py-function.exp: Test GDBError - python
new UNRESOLVED: gdb.python/py-function.exp: Test GdbError.  There should not be a stack trace
new UNRESOLVED: gdb.python/py-function.exp: Test Normal Error - python
new UNRESOLVED: gdb.python/py-function.exp: Test a Runtime error.  There should be a stack trace.
new UNRESOLVED: gdb.python/py-function.exp: call function
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = ada
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = asm
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = auto
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = c
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = c++
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = d
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = fortran
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = go
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = minimal
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = modula-2
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = objective-c
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = opencl
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = pascal
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = rust
new UNRESOLVED: gdb.python/py-function.exp: call yes with &&
new UNRESOLVED: gdb.python/py-function.exp: call yes with ||
new UNRESOLVED: gdb.python/py-function.exp: check if python 3
new UNRESOLVED: gdb.python/py-function.exp: input command-calling function - python
new UNRESOLVED: gdb.python/py-function.exp: input convenience function - python
new UNRESOLVED: gdb.python/py-function.exp: input int-returning function - python
new UNRESOLVED: gdb.python/py-function.exp: input value-returning convenience function - python
new UNRESOLVED: gdb.python/py-function.exp: set language ada
new UNRESOLVED: gdb.python/py-function.exp: set language asm
new UNRESOLVED: gdb.python/py-function.exp: set language auto
new UNRESOLVED: gdb.python/py-function.exp: set language c
new UNRESOLVED: gdb.python/py-function.exp: set language c++
new UNRESOLVED: gdb.python/py-function.exp: set language d
new UNRESOLVED: gdb.python/py-function.exp: set language fortran
new UNRESOLVED: gdb.python/py-function.exp: set language go
new UNRESOLVED: gdb.python/py-function.exp: set language minimal
new UNRESOLVED: gdb.python/py-function.exp: set language modula-2
new UNRESOLVED: gdb.python/py-function.exp: set language objective-c
new UNRESOLVED: gdb.python/py-function.exp: set language opencl
new UNRESOLVED: gdb.python/py-function.exp: set language pascal
new UNRESOLVED: gdb.python/py-function.exp: set language rust
new UNRESOLVED: gdb.python/py-function.exp: set python print-stack full
new UNRESOLVED: gdb.python/py-function.exp: setting a value from a function which executes a command, again.
new UNRESOLVED: gdb.python/py-function.exp: setting a value from a function which executes a command.
new UNRESOLVED: gdb.python/py-function.exp: verify python support
new UNRESOLVED: gdb.python/py-lookup-type.exp: check if python 3
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type CARDINAL using language modula-2
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language c
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language objective-c
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language pascal
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type character using language ada
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type character using language fortran
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type int32 using language go
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type ucent using language d
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type ushort using language opencl
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language ada
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language c
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language d
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language fortran
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language go
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language modula-2
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language objective-c
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language opencl
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language pascal
new UNRESOLVED: gdb.python/py-lookup-type.exp: verify python support
new UNRESOLVED: gdb.python/py-nested-maps.exp: check if python 3
new UNRESOLVED: gdb.python/py-nested-maps.exp: verify python support
new UNRESOLVED: gdb.python/py-prompt.exp: check if python 3
new UNRESOLVED: gdb.python/py-prompt.exp: verify python support
new UNRESOLVED: gdb.python/py-recurse-unwind.exp: can't run to main
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sigall-precsave.exp
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sigall-reverse.exp
new UNRESOLVED: gdb.rust/expr.exp: set language rust
new UNRESOLVED: gdb.rust/expr.exp: set var $something = 27
new FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
new FAIL: gdb.server/unittest.exp: unit tests
new UNRESOLVED: gdb.threads/watchthreads2.exp: can't run to main
new UNRESOLVED: gdb.trace/actions.exp: failed to compile
new UNRESOLVED: gdb.trace/ax.exp: failed to compile
new UNRESOLVED: gdb.trace/deltrace.exp: failed to compile
new UNRESOLVED: gdb.trace/infotrace.exp: failed to compile
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with missing argument
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with too many arguments
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with wrong option
new UNRESOLVED: gdb.trace/packetlen.exp: failed to compile
new UNRESOLVED: gdb.trace/passc-dyn.exp: failed to compile
new UNRESOLVED: gdb.trace/passcount.exp: failed to compile
new UNRESOLVED: gdb.trace/report.exp: failed to compile
new UNRESOLVED: gdb.trace/save-trace.exp: failed to compile
new UNRESOLVED: gdb.trace/tfind.exp: failed to compile
new UNRESOLVED: gdb.trace/tracecmd.exp: failed to compile
new UNRESOLVED: gdb.trace/tsv.exp: failed to compile
new UNRESOLVED: gdb.trace/while-dyn.exp: failed to compile
new UNRESOLVED: gdb.trace/while-stepping.exp: failed to compile
new UNRESOLVED: gdb.tui/completion.exp: verify tui support
new UNRESOLVED: gdb.tui/empty.exp: set tui border-kind ascii
new UNRESOLVED: gdb.tui/empty.exp: src: 80x24: box 1
new UNRESOLVED: gdb.tui/empty.exp: verify tui support
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: correct line breaks
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: set height 2000
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: set pagination on
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: tui enable
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: verify tui support
new UNRESOLVED: gdb.xml/maint_print_struct.exp: printing tdesc with a structure and a bitfield
new UNRESOLVED: gdb.xml/maint_print_struct.exp: setting a new tdesc having only a structure
new UNRESOLVED: gdb.xml/tdesc-arch.exp: architecture XML tests
new UNRESOLVED: gdb.xml/tdesc-arch.exp: read default architecture
new UNRESOLVED: gdb.xml/tdesc-arch.exp: read valid architectures
new UNRESOLVED: gdb.xml/tdesc-errors.exp: set tdesc filename gdb.xml/tdesc-bogus.xml
new UNRESOLVED: gdb.xml/tdesc-errors.exp: set tdesc filename gdb.xml/tdesc-unknown.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: cd to directory holding xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: maintenance print reggroups
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $bitfields
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $extrareg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $flags
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $mixed_flags
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $structreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $structreg.v4
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $uintreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $unionreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $unionreg.v4
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $vecreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc file single-reg.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc filename test-extra-regs.xml - from extra-regs.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc filename test-regs.xml - from core-only.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/bad-include.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/includes.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/loop.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-gdbserver-m64/58/58eb20d527dbb0ebf26c21ecb32263def26d4593//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/58/58eb20d527dbb0ebf26c21ecb32263def26d4593//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-10 10:02 [binutils-gdb] libctf: fix tabdamage gdb-buildbot
@ 2019-10-10 12:18 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-10 12:18 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/883

Author:
        Nick Alcock <nick.alcock@oracle.com>

Commit tested:
        fa56cdcd2427e701328ae1e20b0ca7916d580a14

Subject of commit:
        libctf: fix tabdamage

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/fa/fa56cdcd2427e701328ae1e20b0ca7916d580a14/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/mi_catch_assert.exp: compilation bla.adb
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p g_label - g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i g+
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/var-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/var-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/var-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/void-type.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/void-type.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i main+
new UNRESOLVED: gdb.guile/guile.exp: collect help from uiout
new UNRESOLVED: gdb.guile/guile.exp: guile
new UNRESOLVED: gdb.guile/guile.exp: show guile command - define zzq
new UNRESOLVED: gdb.guile/guile.exp: source -s source2.scm
new UNRESOLVED: gdb.guile/guile.exp: source source2.scm
new UNRESOLVED: gdb.guile/guile.exp: verify guile support
new UNRESOLVED: gdb.guile/guile.exp: verify help to uiout
new UNRESOLVED: gdb.guile/scm-error.exp: backtrace printed
new UNRESOLVED: gdb.guile/scm-error.exp: error loading scm file caught
new UNRESOLVED: gdb.guile/scm-error.exp: error message printed
new UNRESOLVED: gdb.guile/scm-error.exp: guile
new UNRESOLVED: gdb.guile/scm-error.exp: no delayed error
new UNRESOLVED: gdb.guile/scm-error.exp: no error printed
new UNRESOLVED: gdb.guile/scm-error.exp: reset print-stack to default, post set/show tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to full, for backtrace test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error printing tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to none, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: source /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.guile/scm-error/scm-error-2.scm
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack full setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack none setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting of default
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to full
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to none
new UNRESOLVED: gdb.guile/scm-error.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-gsmob.exp: gu
new UNRESOLVED: gdb.guile/scm-gsmob.exp: guile
new UNRESOLVED: gdb.guile/scm-gsmob.exp: object-properties
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-parameter.exp: Simple gdb boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: enum gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: error registering existing parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: file gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously ambiguously named boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set print s on
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: restricted gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: enum parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set invalid enum parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set print test-enum-param two
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: initial parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: new parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param bar.txt
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set print test-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 10
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 42
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: show test-restricted-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set print test-undoc-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: undocumented gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: verify guile support
==============================================

*** 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/fa/fa56cdcd2427e701328ae1e20b0ca7916d580a14//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/fa/fa56cdcd2427e701328ae1e20b0ca7916d580a14//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-10  7:01 [binutils-gdb] libctf: fix refcount leak in ctf_import gdb-buildbot
@ 2019-10-10  9:13 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-10  9:13 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/882

Author:
        Nick Alcock <nick.alcock@oracle.com>

Commit tested:
        ad613f1d0693e02bdc86047c479315d5f969e2f7

Subject of commit:
        libctf: fix refcount leak in ctf_import

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/ad/ad613f1d0693e02bdc86047c479315d5f969e2f7/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/char_enum.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/mi_catch_assert.exp: cannot run to main, testcase aborted
new UNRESOLVED: gdb.ada/mi_catch_ex.exp: cannot run to main, testcase aborted
new UNRESOLVED: gdb.ada/mi_catch_ex.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/nested.exp: break on nested function First
new UNRESOLVED: gdb.ada/var_arr_typedef.exp: delete all breakpoints in delete_breakpoints
FAIL -> UNRESOLVED: gdb.ada/var_arr_typedef.exp: print a
FAIL -> UNRESOLVED: gdb.ada/var_arr_typedef.exp: print vb
new UNRESOLVED: gdb.base/examine-backward.exp: could not run to main
new UNRESOLVED: gdb.base/info-fun.exp: n_flag=0: NO: can't run to main
new UNRESOLVED: gdb.base/info-types.exp: l=c: can't run to main
new UNRESOLVED: gdb.base/interp.exp: run to main
new UNRESOLVED: gdb.dwarf2/dwz.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dwz.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dwz.exp: x/2i main+
new FAIL: gdb.dwarf2/implref-const.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/implref-const.exp: p main_label - main
new FAIL: gdb.dwarf2/implref-const.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: disassemble mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: p mymain_label - mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: x/2i mymain+
new UNRESOLVED: gdb.opt/inline-cmds.exp: skipping inline frame tests
new UNRESOLVED: gdb.python/py-as-string.exp: couldn't run to main.
new UNRESOLVED: gdb.python/py-completion.exp: check if python 3
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #1
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #2
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #3
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #4
PASS -> UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completel'
PASS -> UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit1 c'
PASS -> UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit2 c'
PASS -> UNRESOLVED: gdb.python/py-completion.exp: load python file
PASS -> UNRESOLVED: gdb.python/py-completion.exp: load python file again
new UNRESOLVED: gdb.python/py-completion.exp: show editing
new UNRESOLVED: gdb.python/py-completion.exp: verify python support
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER_UNLIMITED - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb booleanparameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Throwing gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: check if python 3
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value can be set to -1
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value is -1 after setting
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum gdb parameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file gdb parameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: gdb.GdbError does not show Python stack
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python print
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -1
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -5
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER_UNLIMITED.value = -5
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: set enum to two
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: set invalid enum parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: set new file parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: set test-file-param
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show initial file value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show new file value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show parameter is initial value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show parameter is new value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show parameter off
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show parameter on
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test enum parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test file parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test general help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test new file parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test set help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test show help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: verify python support
new UNRESOLVED: gdb.python/py-prettyprint.exp: check if python 3
new UNRESOLVED: gdb.python/py-prettyprint.exp: verify python support
new UNRESOLVED: gdb.reverse/fstatat-reverse.exp: turn on process record
==============================================

*** 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/ad/ad613f1d0693e02bdc86047c479315d5f969e2f7//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/ad/ad613f1d0693e02bdc86047c479315d5f969e2f7//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-10  4:03 [binutils-gdb] libctf: make ctf_dump not crash on OOM gdb-buildbot
@ 2019-10-10  6:20 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-10  6:20 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/881

Author:
        Nick Alcock <nick.alcock@oracle.com>

Commit tested:
        9323dd869dfe481d46512c7f9b1a30d0b7d2d7c4

Subject of commit:
        libctf: make ctf_dump not crash on OOM

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/93/9323dd869dfe481d46512c7f9b1a30d0b7d2d7c4/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/ref_param.exp: compilation foo.adb
new FAIL: gdb.ada/var_arr_typedef.exp: print a
new UNRESOLVED: gdb.ada/var_arr_typedef.exp: print va
new FAIL: gdb.ada/var_arr_typedef.exp: print vb
new UNRESOLVED: gdb.base/break-always.exp: set breakpoint on bar
new UNRESOLVED: gdb.base/recpar.exp: could not run to main
new UNRESOLVED: gdb.dwarf2/dw2-icycle.exp: echo life check\n
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: continue to func01
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: create varobj for ptr
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: get children of var1
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: mi: run to main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: mi: set print object on
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access array member
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access integer member
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access pointer member
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i main+
new UNRESOLVED: gdb.python/py-recurse-unwind.exp: can't run to main
==============================================

*** 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/93/9323dd869dfe481d46512c7f9b1a30d0b7d2d7c4//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/93/9323dd869dfe481d46512c7f9b1a30d0b7d2d7c4//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-10  0:54 [binutils-gdb] libctf: remove ctf_malloc, ctf_free and ctf_strdup gdb-buildbot
@ 2019-10-10  3:19 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-10  3:19 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/880

Author:
        Nick Alcock <nick.alcock@oracle.com>

Commit tested:
        de07e349bea156484fae1dbec974fdbbf207d57d

Subject of commit:
        libctf: remove ctf_malloc, ctf_free and ctf_strdup

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/de/de07e349bea156484fae1dbec974fdbbf207d57d/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.ada/char_enum.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/char_enum.exp: print Char_Enum_Type'
new UNRESOLVED: gdb.ada/char_enum.exp: print pck.Global_Enum_Type'
new UNRESOLVED: gdb.ada/char_enum.exp: ptype Char_Enum_Type
new UNRESOLVED: gdb.ada/char_enum.exp: ptype pck.Global_Enum_Type
new UNRESOLVED: gdb.ada/dot_all.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/minsyms.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/str_ref_cmp.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/str_ref_cmp.exp: operator = works for strings
new UNRESOLVED: gdb.ada/str_ref_cmp.exp: print String_Var
new FAIL: gdb.ada/watch_arg.exp: continuing to second breakpoint
new FAIL: gdb.ada/watch_arg.exp: continuing until watchpoint automatic deletion
new UNRESOLVED: gdb.ada/watch_arg.exp: set watchpoint on function argument X
new UNRESOLVED: gdb.base/dprintf-non-stop.exp: can't run to main
new UNRESOLVED: gdb.base/frameapply.exp: can't run to setup_done
new UNRESOLVED: gdb.base/noreturn-finish.exp: could not run to main
new UNRESOLVED: gdb.base/skip.exp: can't run to main
new UNRESOLVED: gdb.base/vla-optimized-out.exp: o1: can't run to f1
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: console: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.dwarf2/dw2-ranges-base.exp: disassemble frame2
new UNRESOLVED: gdb.dwarf2/dw2-ranges-base.exp: disassemble frame3
new UNRESOLVED: gdb.dwarf2/dw2-ranges-base.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-ranges-base.exp: p frame2_label - frame2
new UNRESOLVED: gdb.dwarf2/dw2-ranges-base.exp: p frame3_label - frame3
new UNRESOLVED: gdb.dwarf2/dw2-ranges-base.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-ranges-base.exp: x/2i frame2+
new UNRESOLVED: gdb.dwarf2/dw2-ranges-base.exp: x/2i frame3+
new UNRESOLVED: gdb.dwarf2/dw2-ranges-base.exp: x/2i main+
==============================================

*** 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/de/de07e349bea156484fae1dbec974fdbbf207d57d//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/de/de07e349bea156484fae1dbec974fdbbf207d57d//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-09 21:47 [binutils-gdb] libctf: get the encoding of non-ints/fps in the dynamic space right gdb-buildbot
@ 2019-10-10  0:07 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-10  0:07 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/879

Author:
        Nick Alcock <nick.alcock@oracle.com>

Commit tested:
        9c1a2295e84170d2de06ef3c828f0c9f5933867e

Subject of commit:
        libctf: get the encoding of non-ints/fps in the dynamic space right

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/9c/9c1a2295e84170d2de06ef3c828f0c9f5933867e/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/aliased_array.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/funcall_ref.exp: compilation foo.adb
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p g_label - g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i g+
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: x/2i main+
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: continue to func01
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: create varobj for ptr
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: get children of var1
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: mi: run to main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: mi: set print object on
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access array member
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access integer member
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access pointer member
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: disassemble mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: p mymain_label - mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: x/2i mymain+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/var-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/var-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/var-access.exp: x/2i main+
new UNRESOLVED: gdb.guile/guile.exp: collect help from uiout
new UNRESOLVED: gdb.guile/guile.exp: guile
new UNRESOLVED: gdb.guile/guile.exp: show guile command - define zzq
new UNRESOLVED: gdb.guile/guile.exp: source -s source2.scm
new UNRESOLVED: gdb.guile/guile.exp: source source2.scm
new UNRESOLVED: gdb.guile/guile.exp: verify guile support
new UNRESOLVED: gdb.guile/guile.exp: verify help to uiout
new UNRESOLVED: gdb.guile/scm-error.exp: backtrace printed
new UNRESOLVED: gdb.guile/scm-error.exp: error loading scm file caught
new UNRESOLVED: gdb.guile/scm-error.exp: error message printed
new UNRESOLVED: gdb.guile/scm-error.exp: guile
new UNRESOLVED: gdb.guile/scm-error.exp: no delayed error
new UNRESOLVED: gdb.guile/scm-error.exp: no error printed
new UNRESOLVED: gdb.guile/scm-error.exp: reset print-stack to default, post set/show tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to full, for backtrace test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error printing tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to none, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: source /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.guile/scm-error/scm-error-2.scm
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack full setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack none setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting of default
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to full
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to none
new UNRESOLVED: gdb.guile/scm-error.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-gsmob.exp: gu
new UNRESOLVED: gdb.guile/scm-gsmob.exp: guile
new UNRESOLVED: gdb.guile/scm-gsmob.exp: object-properties
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-parameter.exp: Simple gdb boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: enum gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: error registering existing parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: file gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously ambiguously named boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set print s on
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: restricted gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: enum parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set invalid enum parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set print test-enum-param two
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: initial parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: new parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param bar.txt
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set print test-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 10
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 42
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: show test-restricted-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set print test-undoc-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: undocumented gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: verify guile support
new UNRESOLVED: gdb.python/py-completion.exp: check if python 3
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #1
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #2
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #3
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #4
PASS -> UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completel'
PASS -> UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit1 c'
PASS -> UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit2 c'
PASS -> UNRESOLVED: gdb.python/py-completion.exp: load python file
PASS -> UNRESOLVED: gdb.python/py-completion.exp: load python file again
new UNRESOLVED: gdb.python/py-completion.exp: show editing
new UNRESOLVED: gdb.python/py-completion.exp: verify python support
new UNRESOLVED: gdb.python/py-prettyprint.exp: check if python 3
new UNRESOLVED: gdb.python/py-prettyprint.exp: verify python support
==============================================

*** 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/9c/9c1a2295e84170d2de06ef3c828f0c9f5933867e//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/9c/9c1a2295e84170d2de06ef3c828f0c9f5933867e//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-09 18:25 [binutils-gdb] libctf: allow ctf_type_lname of a null pointer gdb-buildbot
@ 2019-10-09 20:32 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-09 20:32 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/878

Author:
        Nick Alcock <nick.alcock@oracle.com>

Commit tested:
        1a6ab13e712348c59c2757457b9f913a333f3c92

Subject of commit:
        libctf: allow ctf_type_lname of a null pointer.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/1a/1a6ab13e712348c59c2757457b9f913a333f3c92/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.ada/aliased_array.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/aliased_array.exp: print bt
PASS -> FAIL: gdb.ada/complete.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/funcall_ref.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/funcall_ref.exp: p get
new UNRESOLVED: gdb.ada/funcall_ref.exp: ptype get
new UNRESOLVED: gdb.ada/nested.exp: break on nested function First
PASS -> FAIL: gdb.ada/packed_array.exp: compilation pa.adb
PASS -> FAIL: gdb.ada/set_wstr.exp: compilation a.adb
new FAIL: gdb.ada/var_rec_arr.exp: print a1
new UNRESOLVED: gdb.base/annotate-symlink.exp: failed to run to main
new UNRESOLVED: gdb.base/info-fun.exp: n_flag=0: NO: can't run to main
new UNRESOLVED: gdb.base/info-types.exp: l=c: can't run to main
PASS -> UNRESOLVED: gdb.dlang/debug-expr.exp: print *
PASS -> UNRESOLVED: gdb.dlang/debug-expr.exp: set debug expression 1
PASS -> UNRESOLVED: gdb.dlang/debug-expr.exp: set language d
PASS -> UNRESOLVED: gdb.dlang/demangle.exp: set language d
PASS -> UNRESOLVED: gdb.dlang/expression.exp: set language d
PASS -> UNRESOLVED: gdb.dlang/primitive-types.exp: set language d
PASS -> UNRESOLVED: gdb.dlang/properties.exp: set language d
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: disassemble first
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: disassemble second
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p first_label - first
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p second_label - second
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: x/2i first+
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: x/2i second+
new UNRESOLVED: gdb.dwarf2/dwz.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dwz.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dwz.exp: x/2i main+
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER_UNLIMITED - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb booleanparameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Throwing gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: check if python 3
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value can be set to -1
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value is -1 after setting
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum gdb parameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file gdb parameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: gdb.GdbError does not show Python stack
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python print
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -1
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -5
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER_UNLIMITED.value = -5
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: set enum to two
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: set invalid enum parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: set new file parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: set test-file-param
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show initial file value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show new file value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show parameter is initial value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show parameter is new value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show parameter off
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show parameter on
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test enum parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test file parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test general help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test new file parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test set help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test show help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: verify python support
new UNRESOLVED: gdb.python/py-shared.exp: can't run to main
new UNRESOLVED: gdb.reverse/fstatat-reverse.exp: turn on process record
==============================================

*** 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/1a/1a6ab13e712348c59c2757457b9f913a333f3c92//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/1a/1a6ab13e712348c59c2757457b9f913a333f3c92//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-09 15:25 [binutils-gdb] libctf: properly handle ctf_add_type of forwards and self-reffing structs gdb-buildbot
@ 2019-10-09 17:36 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-09 17:36 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/877

Author:
        Nick Alcock <nick.alcock@oracle.com>

Commit tested:
        99dc3ebdfff927b30db58117d7bd80586e273669

Subject of commit:
        libctf: properly handle ctf_add_type of forwards and self-reffing structs

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/99/99dc3ebdfff927b30db58117d7bd80586e273669/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/access_tagged_param.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/array_subscript_addr.exp: compilation p.adb
PASS -> FAIL: gdb.ada/bad-task-bp-keyword.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/complete.exp: complete break ada
new UNRESOLVED: gdb.ada/complete.exp: complete p <Exported
new UNRESOLVED: gdb.ada/complete.exp: complete p <__gnat_ada_main_prog
new UNRESOLVED: gdb.ada/complete.exp: complete p <pck__my
new UNRESOLVED: gdb.ada/complete.exp: complete p __gnat_ada_main_progra
new UNRESOLVED: gdb.ada/complete.exp: complete p ambig
new UNRESOLVED: gdb.ada/complete.exp: complete p ambiguous_f
new UNRESOLVED: gdb.ada/complete.exp: complete p ambiguous_func
new UNRESOLVED: gdb.ada/complete.exp: complete p exported
new UNRESOLVED: gdb.ada/complete.exp: complete p external_ident
new UNRESOLVED: gdb.ada/complete.exp: complete p inner.insi
new UNRESOLVED: gdb.ada/complete.exp: complete p insi
new UNRESOLVED: gdb.ada/complete.exp: complete p local_ident
new UNRESOLVED: gdb.ada/complete.exp: complete p my_glob
new UNRESOLVED: gdb.ada/complete.exp: complete p not_in_sco
new UNRESOLVED: gdb.ada/complete.exp: complete p pck
new UNRESOLVED: gdb.ada/complete.exp: complete p pck.
new UNRESOLVED: gdb.ada/complete.exp: complete p pck.inne
new UNRESOLVED: gdb.ada/complete.exp: complete p pck.inner.
new UNRESOLVED: gdb.ada/complete.exp: complete p pck.inner.ins
new UNRESOLVED: gdb.ada/complete.exp: complete p pck.ins
new UNRESOLVED: gdb.ada/complete.exp: complete p pck.local_ident
new UNRESOLVED: gdb.ada/complete.exp: complete p pck.my
new UNRESOLVED: gdb.ada/complete.exp: complete p pck__inner__ins
new UNRESOLVED: gdb.ada/complete.exp: complete p pck__local_ident
new UNRESOLVED: gdb.ada/complete.exp: complete p side
new UNRESOLVED: gdb.ada/complete.exp: complete p some
new UNRESOLVED: gdb.ada/complete.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/complete.exp: p <Exported_Capitalized>
new UNRESOLVED: gdb.ada/complete.exp: p Exported_Capitalized
new UNRESOLVED: gdb.ada/complete.exp: p exported_capitalized
new UNRESOLVED: gdb.ada/complete.exp: set max-completions unlimited
new UNRESOLVED: gdb.ada/complete.exp: show editing
PASS -> FAIL: gdb.ada/dyn_loc.exp: compilation p.adb
PASS -> FAIL: gdb.ada/mi_string_access.exp: compilation bar.adb
PASS -> FAIL: gdb.ada/null_record.exp: compilation null_record.adb
new UNRESOLVED: gdb.ada/packed_array.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/packed_array.exp: print &var
new UNRESOLVED: gdb.ada/packed_array.exp: print u_var
new UNRESOLVED: gdb.ada/packed_array.exp: print var
new UNRESOLVED: gdb.ada/packed_array.exp: ptype &var
PASS -> FAIL: gdb.ada/whatis_array_val.exp: compilation foo.adb
new UNRESOLVED: gdb.base/catch-follow-exec.exp: could not run to main
new UNRESOLVED: gdb.base/dprintf-non-stop.exp: can't run to main
new UNRESOLVED: gdb.base/examine-backward.exp: could not run to main
new UNRESOLVED: gdb.base/recpar.exp: could not run to main
new UNRESOLVED: gdb.base/save-bp.exp: could not run to main
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/void-type.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/void-type.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i main+
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: verify guile support
new UNRESOLVED: gdb.opt/inline-break.exp: cmd=break: could not run to main
new UNRESOLVED: gdb.python/py-as-string.exp: couldn't run to main.
new FAIL: gdb.reverse/machinestate-precsave.exp: auto var forward
new FAIL: gdb.reverse/machinestate-precsave.exp: auto var forward step-to
new FAIL: gdb.reverse/machinestate-precsave.exp: auto var forward-breakpoint
new FAIL: gdb.reverse/machinestate-precsave.exp: auto var reverse-breakpoint
new FAIL: gdb.reverse/machinestate-precsave.exp: auto var reverse-step
new FAIL: gdb.reverse/machinestate-precsave.exp: auto var step post-change
new FAIL: gdb.reverse/machinestate-precsave.exp: forward to 33
new FAIL: gdb.reverse/machinestate-precsave.exp: forward to 45
new FAIL: gdb.reverse/machinestate-precsave.exp: forward to 57
new FAIL: gdb.reverse/machinestate-precsave.exp: forward to 71
new FAIL: gdb.reverse/machinestate-precsave.exp: forward to 85
new FAIL: gdb.reverse/machinestate-precsave.exp: function static forward
new FAIL: gdb.reverse/machinestate-precsave.exp: function static forward step-to
new FAIL: gdb.reverse/machinestate-precsave.exp: function static forward-breakpoint
new FAIL: gdb.reverse/machinestate-precsave.exp: function static reverse-breakpoint
new FAIL: gdb.reverse/machinestate-precsave.exp: function static reverse-step
new FAIL: gdb.reverse/machinestate-precsave.exp: function static step post-change
new FAIL: gdb.reverse/machinestate-precsave.exp: go to end of main forward
new FAIL: gdb.reverse/machinestate-precsave.exp: module global forward past bp
new FAIL: gdb.reverse/machinestate-precsave.exp: module global step post-change
new FAIL: gdb.reverse/machinestate-precsave.exp: module static forward
new FAIL: gdb.reverse/machinestate-precsave.exp: module static step post-change
new FAIL: gdb.reverse/machinestate-precsave.exp: register var forward step-to
new FAIL: gdb.reverse/machinestate-precsave.exp: register var forward-breakpoint
new FAIL: gdb.reverse/machinestate-precsave.exp: register var reverse step-to
new FAIL: gdb.reverse/machinestate-precsave.exp: register var reverse-breakpoint
new FAIL: gdb.reverse/machinestate-precsave.exp: register var step post-change
new FAIL: gdb.reverse/machinestate-precsave.exp: reload prec save file
new FAIL: gdb.reverse/machinestate-precsave.exp: reverse to 33
new FAIL: gdb.reverse/machinestate-precsave.exp: reverse to 45
new FAIL: gdb.reverse/machinestate-precsave.exp: reverse to 57
new FAIL: gdb.reverse/machinestate-precsave.exp: reverse to 71
new FAIL: gdb.reverse/machinestate-precsave.exp: reverse to 85
new FAIL: gdb.reverse/machinestate-precsave.exp: reverse to main
new FAIL: gdb.reverse/machinestate-precsave.exp: reverse-step
new FAIL: gdb.reverse/machinestate-precsave.exp: run to end of main
new FAIL: gdb.reverse/machinestate-precsave.exp: save process recfile
new FAIL: gdb.reverse/machinestate-precsave.exp: step
new UNRESOLVED: gdb.reverse/machinestate-precsave.exp: turn on process record
==============================================

*** 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/99/99dc3ebdfff927b30db58117d7bd80586e273669//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/99/99dc3ebdfff927b30db58117d7bd80586e273669//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-09 12:23 [binutils-gdb] libctf: avoid the need to ever use ctf_update gdb-buildbot
@ 2019-10-09 14:32 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-09 14:32 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/876

Author:
        Nick Alcock <nick.alcock@oracle.com>

Commit tested:
        676c3ecbad6e9c41b906b0f882ef2ce23f49976a

Subject of commit:
        libctf: avoid the need to ever use ctf_update

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/67/676c3ecbad6e9c41b906b0f882ef2ce23f49976a/

*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/O2_float_param.exp: compilation foo.adb
new FAIL: gdb.ada/access_to_unbounded_array.exp: compilation foo.adb
new FAIL: gdb.ada/addr_arith.exp: compilation foo_na07_019.adb
new FAIL: gdb.ada/aliased_array.exp: compilation foo.adb
new FAIL: gdb.ada/arr_acc_idx_w_gap.exp: compilation enum_with_gap_main.adb
new FAIL: gdb.ada/arr_arr.exp: compilation foo.adb
new FAIL: gdb.ada/arr_enum_idx_w_gap.exp: compilation foo_q418_043.adb
new FAIL: gdb.ada/array_bounds.exp: compilation bar.adb
new FAIL: gdb.ada/array_char_idx.exp: compilation foo.adb
new FAIL: gdb.ada/array_of_variable_length.exp: compilation foo.adb
new FAIL: gdb.ada/array_ptr_renaming.exp: compilation foo.adb
new FAIL: gdb.ada/array_return.exp: compilation p.adb
new UNRESOLVED: gdb.ada/array_subscript_addr.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/array_subscript_addr.exp: print a
new FAIL: gdb.ada/arraydim.exp: compilation foo.adb
new FAIL: gdb.ada/arrayidx.exp: compilation p.adb
new FAIL: gdb.ada/arrayparam.exp: compilation foo.adb
new FAIL: gdb.ada/arrayptr.exp: compilation foo.adb
new FAIL: gdb.ada/assign_arr.exp: compilation main_p324_051.adb
new FAIL: gdb.ada/atomic_enum.exp: compilation foo.adb
new FAIL: gdb.ada/attr_ref_and_charlit.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/bad-task-bp-keyword.exp: break *break_me'address TASK 2
new KFAIL: gdb.ada/bad-task-bp-keyword.exp: break *break_me'address TASK Task TaSK 2
new FAIL: gdb.ada/big_packed_array.exp: compilation foo_ra24_010.adb
new FAIL: gdb.ada/bp_c_mixed_case.exp: compilation foo_h731_021.adb
new FAIL: gdb.ada/bp_enum_homonym.exp: compilation p.adb
new FAIL: gdb.ada/bp_fun_addr.exp: compilation bp_fun_addr.adb
new FAIL: gdb.ada/bp_inlined_func.exp: compilation foo.adb
new FAIL: gdb.ada/bp_on_var.exp: compilation foo.adb
new FAIL: gdb.ada/bp_range_type.exp: compilation foo.adb
new FAIL: gdb.ada/bp_reset.exp: compilation foo.adb
new FAIL: gdb.ada/byte_packed_arr.exp: compilation reprod_main.adb
new FAIL: gdb.ada/catch_assert_if.exp: compilation bla.adb
new FAIL: gdb.ada/catch_ex.exp: compilation foo.adb
new FAIL: gdb.ada/char_enum.exp: compilation foo.adb
new FAIL: gdb.ada/char_param.exp: compilation foo.adb
new FAIL: gdb.ada/complete.exp: compilation foo.adb
new FAIL: gdb.ada/cond_lang.exp: compilation a.adb
new FAIL: gdb.ada/dgopt.exp: compilation x.adb
new FAIL: gdb.ada/disc_arr_bound.exp: compilation foo_n612_026.adb
new FAIL: gdb.ada/display_nested.exp: compilation foo.adb
new FAIL: gdb.ada/dyn_arrayidx.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/dyn_loc.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.ada/dyn_stride.exp: compilation foo.adb
new FAIL: gdb.ada/enum_idx_packed.exp: compilation foo.adb
new FAIL: gdb.ada/excep_handle.exp: compilation foo.adb
new FAIL: gdb.ada/expr_delims.exp: compilation foo.adb
new FAIL: gdb.ada/expr_with_funcall.exp: compilation expr_r821_013.adb
new FAIL: gdb.ada/exprs.exp: compilation p.adb
new FAIL: gdb.ada/fin_fun_out.exp: compilation foo_o525_013.adb
new FAIL: gdb.ada/fixed_cmp.exp: compilation fixed.adb
new FAIL: gdb.ada/fixed_points.exp: compilation fixed_points.adb
new FAIL: gdb.ada/float_param.exp: compilation foo.adb
new FAIL: gdb.ada/formatted_ref.exp: compilation formatted_ref.adb
new FAIL: gdb.ada/frame_arg_lang.exp: compilation bla.adb
new FAIL: gdb.ada/frame_args.exp: compilation foo.adb
new FAIL: gdb.ada/fullname_bp.exp: compilation foo.adb
new FAIL: gdb.ada/fun_addr.exp: compilation foo.adb
new FAIL: gdb.ada/fun_in_declare.exp: compilation foo.adb
new FAIL: gdb.ada/fun_overload_menu.exp: compilation foo.adb
new FAIL: gdb.ada/fun_renaming.exp: compilation fun_renaming.adb
new FAIL: gdb.ada/funcall_param.exp: compilation foo.adb
new FAIL: gdb.ada/funcall_ptr.exp: compilation foo.adb
new FAIL: gdb.ada/funcall_ref.exp: compilation foo.adb
new FAIL: gdb.ada/homonym.exp: compilation homonym_main.adb
new FAIL: gdb.ada/info_addr_mixed_case.exp: compilation foo.adb
new FAIL: gdb.ada/info_exc.exp: compilation foo.adb
new FAIL: gdb.ada/info_locals_renaming.exp: compilation foo.adb
new FAIL: gdb.ada/int_deref.exp: compilation foo.adb
new FAIL: gdb.ada/interface.exp: compilation foo.adb
new FAIL: gdb.ada/iwide.exp: compilation p.adb
new FAIL: gdb.ada/lang_switch.exp: compilation lang_switch.adb
new FAIL: gdb.ada/length_cond.exp: compilation length_cond.adb
new FAIL: gdb.ada/maint_with_ada.exp: compilation var_arr_typedef.adb
new FAIL: gdb.ada/mi_catch_assert.exp: compilation bla.adb
new FAIL: gdb.ada/mi_catch_ex_hand.exp: compilation foo.adb
new FAIL: gdb.ada/mi_ex_cond.exp: compilation foo.adb
new FAIL: gdb.ada/mi_exc_info.exp: compilation foo.adb
new FAIL: gdb.ada/mi_interface.exp: compilation foo.adb
new FAIL: gdb.ada/mi_ref_changeable.exp: compilation foo_rb20_056.adb
new FAIL: gdb.ada/mi_task_arg.exp: compilation task_switch.adb
new FAIL: gdb.ada/mi_task_info.exp: compilation task_switch.adb
new FAIL: gdb.ada/mi_var_array.exp: compilation bar.adb
new FAIL: gdb.ada/mi_var_union.exp: compilation bar.adb
new FAIL: gdb.ada/mod_from_name.exp: compilation foo.adb
new FAIL: gdb.ada/n_arr_bound.exp: compilation foo.adb
new FAIL: gdb.ada/notcplusplus.exp: compilation foo.adb
new FAIL: gdb.ada/null_array.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/null_record.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/null_record.exp: ptype on null record
new FAIL: gdb.ada/operator_bp.exp: compilation ops_test.adb
new FAIL: gdb.ada/optim_drec.exp: compilation foo.adb
new FAIL: gdb.ada/out_of_line_in_inlined.exp: compilation foo_o224_021.adb
new FAIL: gdb.ada/packed_array.exp: compilation pa.adb
new FAIL: gdb.ada/packed_array_assign.exp: compilation tester.adb
new FAIL: gdb.ada/packed_tagged.exp: compilation comp_bug.adb
new FAIL: gdb.ada/pckd_arr_ren.exp: compilation foo.adb
new FAIL: gdb.ada/pckd_neg.exp: compilation foo_o508_021.adb
new FAIL: gdb.ada/pkd_arr_elem.exp: compilation failure.adb
new FAIL: gdb.ada/pp-rec-component.exp: compilation foo.adb
new FAIL: gdb.ada/print_chars.exp: compilation foo.adb
new FAIL: gdb.ada/print_pc.exp: compilation dummy.adb
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: ptype 3 * 2.0
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: ptype 3 / 2.0
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: set lang ada
new FAIL: gdb.ada/ptype_array.exp: compilation foo.adb
new FAIL: gdb.ada/ptype_field.exp: compilation foo.adb
new FAIL: gdb.ada/ptype_tagged_param.exp: compilation foo.adb
new FAIL: gdb.ada/py_range.exp: compilation foo.adb
new FAIL: gdb.ada/py_taft.exp: compilation main.adb
new FAIL: gdb.ada/rdv_wait.exp: compilation foo.adb
new FAIL: gdb.ada/rec_comp.exp: compilation bar_o203_012.adb
new FAIL: gdb.ada/rec_return.exp: compilation foo.adb
new FAIL: gdb.ada/ref_param.exp: compilation foo.adb
new FAIL: gdb.ada/ref_tick_size.exp: compilation p.adb
new FAIL: gdb.ada/repeat_dyn.exp: compilation foo_oc22_002.adb
new FAIL: gdb.ada/same_component_name.exp: compilation foo.adb
new FAIL: gdb.ada/same_enum.exp: compilation a.adb
new FAIL: gdb.ada/scoped_watch.exp: compilation foo_p708_025.adb
new FAIL: gdb.ada/set_pckd_arr_elt.exp: compilation foo.adb
new FAIL: gdb.ada/set_wstr.exp: compilation a.adb
new FAIL: gdb.ada/small_reg_param.exp: compilation foo.adb
new FAIL: gdb.ada/str_binop_equal.exp: compilation foo_p211_061.adb
new FAIL: gdb.ada/str_uninit.exp: compilation parse.adb
new FAIL: gdb.ada/sym_print_name.exp: compilation foo.adb
new FAIL: gdb.ada/taft_type.exp: compilation p.adb
new FAIL: gdb.ada/tagged.exp: compilation foo.adb
new FAIL: gdb.ada/tagged_access.exp: compilation p.adb
new FAIL: gdb.ada/tagged_not_init.exp: compilation foo.adb
new FAIL: gdb.ada/task_bp.exp: compilation foo.adb
new FAIL: gdb.ada/task_switch_in_core.exp: compilation crash.adb
new FAIL: gdb.ada/tasks.exp: compilation foo.adb
new FAIL: gdb.ada/tick_last_segv.exp: compilation foo.adb
new FAIL: gdb.ada/tick_length_array_enum_idx.exp: compilation foo_n207_004.adb
new FAIL: gdb.ada/type_coercion.exp: compilation assign.adb
new FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: compilation foo.adb
new FAIL: gdb.ada/var_arr_attrs.exp: compilation foo_o115_002.adb
new FAIL: gdb.ada/variant_record_packed_array.exp: compilation foo.adb
new FAIL: gdb.ada/varsize_limit.exp: compilation vsizelim.adb
new FAIL: gdb.ada/vla.exp: compilation vla.adb
new FAIL: gdb.ada/watch_minus_l.exp: compilation foo_ra10_006.adb
new UNRESOLVED: gdb.ada/whatis_array_val.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.ada/widewide.exp: compilation foo.adb
new FAIL: gdb.ada/win_fu_syms.exp: compilation foo.adb
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: set tdesc filename $srcdir/gdb.arch/arc-tdesc-cpu.xml
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: set tdesc filename /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.arch/arc-tdesc-cpu/trivial.xml
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: setting HS architecture
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: .text is readable
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: complete set architecture i386
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: complete set gnutarget
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: load core file
new UNRESOLVED: gdb.base/alias.exp: -a print elements 47
new UNRESOLVED: gdb.base/alias.exp: abbrev -a not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set2 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set3 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set4 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set5 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set6 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: alias -a -- -a = set
new UNRESOLVED: gdb.base/alias.exp: alias -a -- set6 = set
new UNRESOLVED: gdb.base/alias.exp: alias -a set2=set
new UNRESOLVED: gdb.base/alias.exp: alias -a set3= set
new UNRESOLVED: gdb.base/alias.exp: alias -a set4 =set
new UNRESOLVED: gdb.base/alias.exp: alias -a set5 = set
new UNRESOLVED: gdb.base/alias.exp: alias assigne
new UNRESOLVED: gdb.base/alias.exp: alias assigne imprime
new UNRESOLVED: gdb.base/alias.exp: alias assigne imprime limite-elements
new UNRESOLVED: gdb.base/alias.exp: alias foo=bar
new UNRESOLVED: gdb.base/alias.exp: alias set pr elms = set p elem
new UNRESOLVED: gdb.base/alias.exp: alias set print max-elements using assigne imprime
new UNRESOLVED: gdb.base/alias.exp: alias set2=set
new UNRESOLVED: gdb.base/alias.exp: alias spe = set p elem
new UNRESOLVED: gdb.base/alias.exp: assigne imprime elements 53
new UNRESOLVED: gdb.base/alias.exp: assigne imprime limite-elements 54
new UNRESOLVED: gdb.base/alias.exp: assigne imprime prefix not defined
new UNRESOLVED: gdb.base/alias.exp: assigne print elements 52
new UNRESOLVED: gdb.base/alias.exp: help set print
new UNRESOLVED: gdb.base/alias.exp: mismatched length
new UNRESOLVED: gdb.base/alias.exp: mismatched prefix
new UNRESOLVED: gdb.base/alias.exp: set imprime elements 55
new UNRESOLVED: gdb.base/alias.exp: set imprime prefix not defined
new UNRESOLVED: gdb.base/alias.exp: set pr elms 51
new UNRESOLVED: gdb.base/alias.exp: set print limite-elements 56
new UNRESOLVED: gdb.base/alias.exp: set print max-elements 57
new UNRESOLVED: gdb.base/alias.exp: set2 print elements 42
new UNRESOLVED: gdb.base/alias.exp: set3 print elements 43
new UNRESOLVED: gdb.base/alias.exp: set4 print elements 44
new UNRESOLVED: gdb.base/alias.exp: set5 print elements 45
new UNRESOLVED: gdb.base/alias.exp: set6 print elements 46
new UNRESOLVED: gdb.base/alias.exp: spe 50
new UNRESOLVED: gdb.base/alias.exp: verify -a
new UNRESOLVED: gdb.base/alias.exp: verify 52
new UNRESOLVED: gdb.base/alias.exp: verify 53
new UNRESOLVED: gdb.base/alias.exp: verify 54
new UNRESOLVED: gdb.base/alias.exp: verify 55
new UNRESOLVED: gdb.base/alias.exp: verify 56
new UNRESOLVED: gdb.base/alias.exp: verify 57
new UNRESOLVED: gdb.base/alias.exp: verify set pr elms
new UNRESOLVED: gdb.base/alias.exp: verify set2
new UNRESOLVED: gdb.base/alias.exp: verify set3
new UNRESOLVED: gdb.base/alias.exp: verify set4
new UNRESOLVED: gdb.base/alias.exp: verify set5
new UNRESOLVED: gdb.base/alias.exp: verify set6
new UNRESOLVED: gdb.base/alias.exp: verify spe
new FAIL: gdb.base/all-architectures-0.exp: all passed
new FAIL: gdb.base/all-architectures-0.exp: at least one architecture
new FAIL: gdb.base/all-architectures-0.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-0.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-0.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-0.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-1.exp: all passed
new FAIL: gdb.base/all-architectures-1.exp: at least one architecture
new FAIL: gdb.base/all-architectures-1.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-1.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-1.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-1.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-2.exp: all passed
new FAIL: gdb.base/all-architectures-2.exp: at least one architecture
new FAIL: gdb.base/all-architectures-2.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-2.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-2.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-2.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-3.exp: all passed
new FAIL: gdb.base/all-architectures-3.exp: at least one architecture
new FAIL: gdb.base/all-architectures-3.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-3.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-3.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-3.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-4.exp: all passed
new FAIL: gdb.base/all-architectures-4.exp: at least one architecture
new FAIL: gdb.base/all-architectures-4.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-4.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-4.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-4.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-5.exp: all passed
new FAIL: gdb.base/all-architectures-5.exp: at least one architecture
new FAIL: gdb.base/all-architectures-5.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-5.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-5.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-5.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-6.exp: all passed
new FAIL: gdb.base/all-architectures-6.exp: at least one architecture
new FAIL: gdb.base/all-architectures-6.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-6.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-7.exp: all passed
new FAIL: gdb.base/all-architectures-7.exp: at least one architecture
new FAIL: gdb.base/all-architectures-7.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-7.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-7.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-7.exp: set max-completions unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: break main
new UNRESOLVED: gdb.base/argv0-symlink.exp: p argc
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print elements 200
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print elements unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print repeats 200
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print repeats unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: show print elements
new UNRESOLVED: gdb.base/argv0-symlink.exp: show print repeats
new UNRESOLVED: gdb.base/bad-file.exp: directory
new UNRESOLVED: gdb.base/bad-file.exp: neither file nor directory
new UNRESOLVED: gdb.base/bad-file.exp: non-existent file
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "info source": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "set not-a-thing 4" -x good-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "set not-a-thing 4": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -jslkflsdjlkfjlksdjf: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x bad-commands -ex "info source": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x bad-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands -ex "set not-a-thing 4": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands -x bad-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch: spawn
new UNRESOLVED: gdb.base/bitops.exp: print value of !0
new UNRESOLVED: gdb.base/bitops.exp: print value of !1
new UNRESOLVED: gdb.base/bitops.exp: print value of !10
new UNRESOLVED: gdb.base/bitops.exp: print value of !100
new UNRESOLVED: gdb.base/bitops.exp: print value of !1000
new UNRESOLVED: gdb.base/bitops.exp: print value of !2
new UNRESOLVED: gdb.base/bitops.exp: print value of
new UNRESOLVED: gdb.base/bitops.exp: print value of -!0
new UNRESOLVED: gdb.base/bitops.exp: print value of -1 < 0 > 1
new UNRESOLVED: gdb.base/bitops.exp: print value of -3>4
new UNRESOLVED: gdb.base/bitops.exp: print value of 0 == 8 > 128 >> 1 + 2 * 2
new UNRESOLVED: gdb.base/bitops.exp: print value of 0 || 1 && 0 | 0 ^ 0 == 8
new UNRESOLVED: gdb.base/bitops.exp: print value of 0 || 1 && 0 | 0 ^ 0 == 8 > 128 >>1 +2 *2
new UNRESOLVED: gdb.base/bitops.exp: print value of 0.0 || 0
new UNRESOLVED: gdb.base/bitops.exp: print value of 0.0 || 1.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 1.0 || 0
new UNRESOLVED: gdb.base/bitops.exp: print value of 10 & 5
new UNRESOLVED: gdb.base/bitops.exp: print value of 10 ^ 5
new UNRESOLVED: gdb.base/bitops.exp: print value of 10 | 5
new UNRESOLVED: gdb.base/bitops.exp: print value of 15 ^ 10 ^ 5 ^ 7
new UNRESOLVED: gdb.base/bitops.exp: print value of 2 > -3
new UNRESOLVED: gdb.base/bitops.exp: print value of 3 * 2 / 4.0 * 2.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3!=3.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3!=5.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3.5 < -4.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3.5 < 4.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3==3.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3==4.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3>=2.5
new UNRESOLVED: gdb.base/bitops.exp: print value of 3>=4.5
new UNRESOLVED: gdb.base/bitops.exp: print value of 8 << 2 >> 4
new UNRESOLVED: gdb.base/bitops.exp: print value of ~-!0
new UNRESOLVED: gdb.base/command-line-input.exp: print 1\\n + 2
new UNRESOLVED: gdb.base/command-line-input.exp: print 1\\n2
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: cmd complete ""
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: set max-completions 1
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: show editing
new UNRESOLVED: gdb.base/complete-empty.exp: show editing
new UNRESOLVED: gdb.base/default.exp:
new UNRESOLVED: gdb.base/default.exp: add-symbol-file
new UNRESOLVED: gdb.base/default.exp: append
new UNRESOLVED: gdb.base/default.exp: append binary
new UNRESOLVED: gdb.base/default.exp: append binary memory
new UNRESOLVED: gdb.base/default.exp: append binary value
new UNRESOLVED: gdb.base/default.exp: append memory
new UNRESOLVED: gdb.base/default.exp: append value
new UNRESOLVED: gdb.base/default.exp: call
new UNRESOLVED: gdb.base/default.exp: catch
new UNRESOLVED: gdb.base/default.exp: cd
new UNRESOLVED: gdb.base/default.exp: check if python 3
new UNRESOLVED: gdb.base/default.exp: clear
new UNRESOLVED: gdb.base/default.exp: commands
new UNRESOLVED: gdb.base/default.exp: condition
new UNRESOLVED: gdb.base/default.exp: continue
new UNRESOLVED: gdb.base/default.exp: continue "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: core-file
new UNRESOLVED: gdb.base/default.exp: define
new UNRESOLVED: gdb.base/default.exp: delete
new UNRESOLVED: gdb.base/default.exp: delete "d" abbreviation
new UNRESOLVED: gdb.base/default.exp: delete breakpoints
new UNRESOLVED: gdb.base/default.exp: delete display prompt
new UNRESOLVED: gdb.base/default.exp: detach
new UNRESOLVED: gdb.base/default.exp: directory prompt
new UNRESOLVED: gdb.base/default.exp: disable
new UNRESOLVED: gdb.base/default.exp: disable "dis" abbreviation
new UNRESOLVED: gdb.base/default.exp: disable "disa" abbreviation
new UNRESOLVED: gdb.base/default.exp: disable breakpoints
new UNRESOLVED: gdb.base/default.exp: disable display
new UNRESOLVED: gdb.base/default.exp: disassemble
new UNRESOLVED: gdb.base/default.exp: display
new UNRESOLVED: gdb.base/default.exp: do
new UNRESOLVED: gdb.base/default.exp: document
new UNRESOLVED: gdb.base/default.exp: down
new UNRESOLVED: gdb.base/default.exp: down-silently
new UNRESOLVED: gdb.base/default.exp: dump
new UNRESOLVED: gdb.base/default.exp: dump binary
new UNRESOLVED: gdb.base/default.exp: dump binary memory
new UNRESOLVED: gdb.base/default.exp: dump binary value
new UNRESOLVED: gdb.base/default.exp: dump ihex
new UNRESOLVED: gdb.base/default.exp: dump ihex memory
new UNRESOLVED: gdb.base/default.exp: dump ihex value
new UNRESOLVED: gdb.base/default.exp: dump memory
new UNRESOLVED: gdb.base/default.exp: dump srec
new UNRESOLVED: gdb.base/default.exp: dump srec memory
new UNRESOLVED: gdb.base/default.exp: dump srec value
new UNRESOLVED: gdb.base/default.exp: dump tekhex
new UNRESOLVED: gdb.base/default.exp: dump tekhex memory
new UNRESOLVED: gdb.base/default.exp: dump tekhex value
new UNRESOLVED: gdb.base/default.exp: dump value
new UNRESOLVED: gdb.base/default.exp: echo
new UNRESOLVED: gdb.base/default.exp: enable
new UNRESOLVED: gdb.base/default.exp: enable breakpoints
new UNRESOLVED: gdb.base/default.exp: enable breakpoints delete
new UNRESOLVED: gdb.base/default.exp: enable breakpoints once
new UNRESOLVED: gdb.base/default.exp: enable delete
new UNRESOLVED: gdb.base/default.exp: enable display
new UNRESOLVED: gdb.base/default.exp: enable once
new UNRESOLVED: gdb.base/default.exp: fg
new UNRESOLVED: gdb.base/default.exp: finish
new UNRESOLVED: gdb.base/default.exp: forward-search
new UNRESOLVED: gdb.base/default.exp: frame
new UNRESOLVED: gdb.base/default.exp: frame "f" abbreviation
new UNRESOLVED: gdb.base/default.exp: gcore
new UNRESOLVED: gdb.base/default.exp: generate-core-file
new UNRESOLVED: gdb.base/default.exp: handle
new UNRESOLVED: gdb.base/default.exp: help
new UNRESOLVED: gdb.base/default.exp: help "h" abbreviation
new UNRESOLVED: gdb.base/default.exp: ignore
new UNRESOLVED: gdb.base/default.exp: info
new UNRESOLVED: gdb.base/default.exp: info "i" abbreviation
new UNRESOLVED: gdb.base/default.exp: info address
new UNRESOLVED: gdb.base/default.exp: info all-registers
new UNRESOLVED: gdb.base/default.exp: info args
new UNRESOLVED: gdb.base/default.exp: info bogus-gdb-command
new UNRESOLVED: gdb.base/default.exp: info breakpoints
new UNRESOLVED: gdb.base/default.exp: info copying
new UNRESOLVED: gdb.base/default.exp: info display
new UNRESOLVED: gdb.base/default.exp: info files
new UNRESOLVED: gdb.base/default.exp: info float
new UNRESOLVED: gdb.base/default.exp: info frame
new UNRESOLVED: gdb.base/default.exp: info frame "f" abbreviation
new UNRESOLVED: gdb.base/default.exp: info functions
new UNRESOLVED: gdb.base/default.exp: info locals
new UNRESOLVED: gdb.base/default.exp: info program
new UNRESOLVED: gdb.base/default.exp: info registers
new UNRESOLVED: gdb.base/default.exp: info set
new UNRESOLVED: gdb.base/default.exp: info source
new UNRESOLVED: gdb.base/default.exp: info sources
new UNRESOLVED: gdb.base/default.exp: info stack
new UNRESOLVED: gdb.base/default.exp: info stack "s" abbreviation
new UNRESOLVED: gdb.base/default.exp: info symbol
new UNRESOLVED: gdb.base/default.exp: info target
new UNRESOLVED: gdb.base/default.exp: info terminal
new UNRESOLVED: gdb.base/default.exp: info threads
new UNRESOLVED: gdb.base/default.exp: info types
new UNRESOLVED: gdb.base/default.exp: info variables
new UNRESOLVED: gdb.base/default.exp: info vector
new UNRESOLVED: gdb.base/default.exp: info warranty
new UNRESOLVED: gdb.base/default.exp: info watchpoints
new UNRESOLVED: gdb.base/default.exp: inspect
new UNRESOLVED: gdb.base/default.exp: jump
new UNRESOLVED: gdb.base/default.exp: kill
new UNRESOLVED: gdb.base/default.exp: list
new UNRESOLVED: gdb.base/default.exp: list "l" abbreviation
new UNRESOLVED: gdb.base/default.exp: load
new UNRESOLVED: gdb.base/default.exp: next
new UNRESOLVED: gdb.base/default.exp: next "n" abbreviation
new UNRESOLVED: gdb.base/default.exp: nexti
new UNRESOLVED: gdb.base/default.exp: nexti "ni" abbreviation
new UNRESOLVED: gdb.base/default.exp: output
new UNRESOLVED: gdb.base/default.exp: overlay
new UNRESOLVED: gdb.base/default.exp: overlay auto
new UNRESOLVED: gdb.base/default.exp: overlay list
new UNRESOLVED: gdb.base/default.exp: overlay manual #1
new UNRESOLVED: gdb.base/default.exp: overlay manual #2
new UNRESOLVED: gdb.base/default.exp: overlay map #1
new UNRESOLVED: gdb.base/default.exp: overlay map #2
new UNRESOLVED: gdb.base/default.exp: overlay off
new UNRESOLVED: gdb.base/default.exp: overlay on
new UNRESOLVED: gdb.base/default.exp: overlay unmap #1
new UNRESOLVED: gdb.base/default.exp: overlay unmap #2
new UNRESOLVED: gdb.base/default.exp: print
new UNRESOLVED: gdb.base/default.exp: print "p" abbreviation
new UNRESOLVED: gdb.base/default.exp: printf
new UNRESOLVED: gdb.base/default.exp: ptype
new UNRESOLVED: gdb.base/default.exp: pwd
new UNRESOLVED: gdb.base/default.exp: rbreak
new UNRESOLVED: gdb.base/default.exp: restore
new UNRESOLVED: gdb.base/default.exp: return
new UNRESOLVED: gdb.base/default.exp: reverse-search
new UNRESOLVED: gdb.base/default.exp: search
new UNRESOLVED: gdb.base/default.exp: section
new UNRESOLVED: gdb.base/default.exp: set
new UNRESOLVED: gdb.base/default.exp: set annotate
new UNRESOLVED: gdb.base/default.exp: set args
new UNRESOLVED: gdb.base/default.exp: set check "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check "ch" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check "check" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check range
new UNRESOLVED: gdb.base/default.exp: set check type
new UNRESOLVED: gdb.base/default.exp: set complaints
new UNRESOLVED: gdb.base/default.exp: set confirm
new UNRESOLVED: gdb.base/default.exp: set environment
new UNRESOLVED: gdb.base/default.exp: set height
new UNRESOLVED: gdb.base/default.exp: set history
new UNRESOLVED: gdb.base/default.exp: set history expansion
new UNRESOLVED: gdb.base/default.exp: set history filename
new UNRESOLVED: gdb.base/default.exp: set history save
new UNRESOLVED: gdb.base/default.exp: set history save off
new UNRESOLVED: gdb.base/default.exp: set history size
new UNRESOLVED: gdb.base/default.exp: set language
new UNRESOLVED: gdb.base/default.exp: set listsize
new UNRESOLVED: gdb.base/default.exp: set print
new UNRESOLVED: gdb.base/default.exp: set print "p" abbreviation
new UNRESOLVED: gdb.base/default.exp: set print "pr" abbreviation
new UNRESOLVED: gdb.base/default.exp: set print address
new UNRESOLVED: gdb.base/default.exp: set print array
new UNRESOLVED: gdb.base/default.exp: set print asm-demangle
new UNRESOLVED: gdb.base/default.exp: set print demangle
new UNRESOLVED: gdb.base/default.exp: set print elements
new UNRESOLVED: gdb.base/default.exp: set print object
new UNRESOLVED: gdb.base/default.exp: set print pretty
new UNRESOLVED: gdb.base/default.exp: set print sevenbit-strings
new UNRESOLVED: gdb.base/default.exp: set print union
new UNRESOLVED: gdb.base/default.exp: set print vtbl
new UNRESOLVED: gdb.base/default.exp: set radix
new UNRESOLVED: gdb.base/default.exp: set the history filename
new UNRESOLVED: gdb.base/default.exp: set variable
new UNRESOLVED: gdb.base/default.exp: set verbose
new UNRESOLVED: gdb.base/default.exp: set width
new UNRESOLVED: gdb.base/default.exp: set write
new UNRESOLVED: gdb.base/default.exp: shell echo Hi dad!
new UNRESOLVED: gdb.base/default.exp: show
new UNRESOLVED: gdb.base/default.exp: show annotate
new UNRESOLVED: gdb.base/default.exp: show args
new UNRESOLVED: gdb.base/default.exp: show check "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check "ch" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check "check" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check range
new UNRESOLVED: gdb.base/default.exp: show check type
new UNRESOLVED: gdb.base/default.exp: show commands
new UNRESOLVED: gdb.base/default.exp: show complaints
new UNRESOLVED: gdb.base/default.exp: show confirm
new UNRESOLVED: gdb.base/default.exp: show convenience
new UNRESOLVED: gdb.base/default.exp: show directories
new UNRESOLVED: gdb.base/default.exp: show editing
new UNRESOLVED: gdb.base/default.exp: show height
new UNRESOLVED: gdb.base/default.exp: show history
new UNRESOLVED: gdb.base/default.exp: show history expansion
new UNRESOLVED: gdb.base/default.exp: show history filename
new UNRESOLVED: gdb.base/default.exp: show history save
new UNRESOLVED: gdb.base/default.exp: show history size
new UNRESOLVED: gdb.base/default.exp: show language
new UNRESOLVED: gdb.base/default.exp: show listsize
new UNRESOLVED: gdb.base/default.exp: show p
new UNRESOLVED: gdb.base/default.exp: show paths
new UNRESOLVED: gdb.base/default.exp: show pr
new UNRESOLVED: gdb.base/default.exp: show print
new UNRESOLVED: gdb.base/default.exp: show print address
new UNRESOLVED: gdb.base/default.exp: show print array
new UNRESOLVED: gdb.base/default.exp: show print asm-demangle
new UNRESOLVED: gdb.base/default.exp: show print demangle
new UNRESOLVED: gdb.base/default.exp: show print elements
new UNRESOLVED: gdb.base/default.exp: show print object
new UNRESOLVED: gdb.base/default.exp: show print pretty
new UNRESOLVED: gdb.base/default.exp: show print sevenbit-strings
new UNRESOLVED: gdb.base/default.exp: show print union
new UNRESOLVED: gdb.base/default.exp: show print vtbl
new UNRESOLVED: gdb.base/default.exp: show prompt
new UNRESOLVED: gdb.base/default.exp: show radix
new UNRESOLVED: gdb.base/default.exp: show user
new UNRESOLVED: gdb.base/default.exp: show values
new UNRESOLVED: gdb.base/default.exp: show verbose
new UNRESOLVED: gdb.base/default.exp: show version
new UNRESOLVED: gdb.base/default.exp: show width
new UNRESOLVED: gdb.base/default.exp: show write
new UNRESOLVED: gdb.base/default.exp: signal
new UNRESOLVED: gdb.base/default.exp: source
new UNRESOLVED: gdb.base/default.exp: step "s" abbreviation #1
new UNRESOLVED: gdb.base/default.exp: step "s" abbreviation #2
new UNRESOLVED: gdb.base/default.exp: step #1
new UNRESOLVED: gdb.base/default.exp: step #2
new UNRESOLVED: gdb.base/default.exp: stepi
new UNRESOLVED: gdb.base/default.exp: stepi "si" abbreviation
new UNRESOLVED: gdb.base/default.exp: symbol-file
new UNRESOLVED: gdb.base/default.exp: target
new UNRESOLVED: gdb.base/default.exp: target native
new UNRESOLVED: gdb.base/default.exp: tbreak
new UNRESOLVED: gdb.base/default.exp: thread
new UNRESOLVED: gdb.base/default.exp: thread apply
new UNRESOLVED: gdb.base/default.exp: thread find
new UNRESOLVED: gdb.base/default.exp: thread name
new UNRESOLVED: gdb.base/default.exp: undisplay prompt
new UNRESOLVED: gdb.base/default.exp: unset
new UNRESOLVED: gdb.base/default.exp: unset environment prompt
new UNRESOLVED: gdb.base/default.exp: until
new UNRESOLVED: gdb.base/default.exp: until "u" abbreviation
new UNRESOLVED: gdb.base/default.exp: up-silently
new UNRESOLVED: gdb.base/default.exp: verify python support
new UNRESOLVED: gdb.base/default.exp: watch
new UNRESOLVED: gdb.base/default.exp: whatis
new UNRESOLVED: gdb.base/default.exp: where
new UNRESOLVED: gdb.base/default.exp: x
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567890123456789012345678901234dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567890123456dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567890123456.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567890123456789012345678901234.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567890123456789012345678901234dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567890123456dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E384dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E6144dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E96df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2147483648ll
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2147483648ull
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2ll
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 4294967296ull
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd < 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd < 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df + 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df + 1.2f
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df < 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df < 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df > 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl < 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl < 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl > 2
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd * 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd + 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd - 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd / 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df * 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df + 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df - 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df / 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl * 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl + 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl - 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl / 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567890123456.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567890123456789012345678901234.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 + 1.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 > 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 > 3.1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.1dd + 2.7df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.1df + 2.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.3dd + 2.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.3dl + 2.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.6df + 2.7dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.6dl + 2.7df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 3 + 2.1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 1.2df + 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2 + 1.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dd + 2.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dd + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dl + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 3 + 2.1dl
new UNRESOLVED: gdb.base/double-prompt-target-event-error.exp: ctrlc target event: continue: can't run to main
new UNRESOLVED: gdb.base/double-prompt-target-event-error.exp: ctrlc target event: wrapcont: can't run to main
new UNRESOLVED: gdb.base/echo.exp: echo test
new UNRESOLVED: gdb.base/empty_exe.exp: file ''
new UNRESOLVED: gdb.base/empty_exe.exp: print 1
new UNRESOLVED: gdb.base/endian.exp: auto target endianness
new UNRESOLVED: gdb.base/endian.exp: auto target endianness big
new UNRESOLVED: gdb.base/endian.exp: auto target endianness little
new UNRESOLVED: gdb.base/endian.exp: default target endianness
new UNRESOLVED: gdb.base/endian.exp: get target endianness
new FAIL: gdb.base/endian.exp: override auto target endianness big
new FAIL: gdb.base/endian.exp: override auto target endianness little
new UNRESOLVED: gdb.base/endian.exp: override target endianness big
new FAIL: gdb.base/endian.exp: override target endianness little
new UNRESOLVED: gdb.base/endian.exp: previously big default executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously big default no executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously little default executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously little default no executable endianness
new UNRESOLVED: gdb.base/endian.exp: set target endianness
new UNRESOLVED: gdb.base/endian.exp: set target endianness big
new UNRESOLVED: gdb.base/endian.exp: set target endianness little
new UNRESOLVED: gdb.base/environ.exp: all environment variables have been unset
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable previously undefined
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable using = syntax
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable with trailing equals
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable with trailing whitespace
new UNRESOLVED: gdb.base/environ.exp: confirm unset environment variable worked
new UNRESOLVED: gdb.base/environ.exp: set environment variable
new UNRESOLVED: gdb.base/environ.exp: set environment variable previously undefined
new UNRESOLVED: gdb.base/environ.exp: set environment variable to null value
new UNRESOLVED: gdb.base/environ.exp: set environment variable using = syntax
new UNRESOLVED: gdb.base/environ.exp: set environment variable with trailing equals
new UNRESOLVED: gdb.base/environ.exp: set environment variable with trailing whitespace
new UNRESOLVED: gdb.base/environ.exp: set environment without arguments
new UNRESOLVED: gdb.base/environ.exp: set environment without variable name
new UNRESOLVED: gdb.base/environ.exp: set path works properly
new UNRESOLVED: gdb.base/environ.exp: show environment works
new UNRESOLVED: gdb.base/environ.exp: show non-existent environment variable
new UNRESOLVED: gdb.base/environ.exp: show null environment variable
new UNRESOLVED: gdb.base/environ.exp: show paths works properly
new UNRESOLVED: gdb.base/environ.exp: unset all environment variables
new UNRESOLVED: gdb.base/environ.exp: unset environment variable
new UNRESOLVED: gdb.base/eval.exp: first eval.
new UNRESOLVED: gdb.base/eval.exp: initialize $a.
new UNRESOLVED: gdb.base/eval.exp: second eval.
new UNRESOLVED: gdb.base/frameapply.exp: can't run to setup_done
new UNRESOLVED: gdb.base/gdb1056.exp: print 1/0
new UNRESOLVED: gdb.base/gdb1056.exp: test unsigned division by zero
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize= 20 : show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize= 20 : show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5ab: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5ab: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=0: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=0: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=10zab: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=10zab: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=20: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=20: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=50: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=50: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=99999999999999999999999999999999999: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=99999999999999999999999999999999999: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=not_an_integer: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=not_an_integer: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=1000: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=1000: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=foo: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=foo: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/zero: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/zero: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: appending: server show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: creating: server show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: print 1
new UNRESOLVED: gdb.base/help.exp: apropos \
new UNRESOLVED: gdb.base/help.exp: apropos apropos
new UNRESOLVED: gdb.base/help.exp: apropos handle signal
new UNRESOLVED: gdb.base/help.exp: disable pagination
new UNRESOLVED: gdb.base/help.exp: help aliases
new UNRESOLVED: gdb.base/help.exp: help backtrace
new UNRESOLVED: gdb.base/help.exp: help backtrace "bt" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "b" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "br" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "bre" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "brea" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "break" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoints
new UNRESOLVED: gdb.base/help.exp: help commands
new UNRESOLVED: gdb.base/help.exp: help data
new UNRESOLVED: gdb.base/help.exp: help delete
new UNRESOLVED: gdb.base/help.exp: help delete "d" abbreviation
new UNRESOLVED: gdb.base/help.exp: help files
new UNRESOLVED: gdb.base/help.exp: help gotcha
new UNRESOLVED: gdb.base/help.exp: help help
new UNRESOLVED: gdb.base/help.exp: help help "h" abbreviation
new UNRESOLVED: gdb.base/help.exp: help info bogus-gdb-command
new UNRESOLVED: gdb.base/help.exp: help internals
new UNRESOLVED: gdb.base/help.exp: help obscure
new UNRESOLVED: gdb.base/help.exp: help running
new UNRESOLVED: gdb.base/help.exp: help show commands
new UNRESOLVED: gdb.base/help.exp: help show confirm
new UNRESOLVED: gdb.base/help.exp: help show copying
new UNRESOLVED: gdb.base/help.exp: help show warranty
new UNRESOLVED: gdb.base/help.exp: help stack
new UNRESOLVED: gdb.base/help.exp: help status
new UNRESOLVED: gdb.base/help.exp: help support
new UNRESOLVED: gdb.base/help.exp: help tracepoints
new UNRESOLVED: gdb.base/help.exp: help user-defined
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: set history remove-duplicates 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: set history remove-duplicates 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: set history remove-duplicates 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 3
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 4
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 3
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 4
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: set history remove-duplicates unlimited
new UNRESOLVED: gdb.base/history-duplicates.exp: show editing
new UNRESOLVED: gdb.base/history-duplicates.exp: show history remove-duplicates
new UNRESOLVED: gdb.base/ifelse.exp: call original define
new UNRESOLVED: gdb.base/ifelse.exp: call replacement define
new UNRESOLVED: gdb.base/ifelse.exp: create define with empty else
new UNRESOLVED: gdb.base/ifelse.exp: if 0 .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 0 with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 1 .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 1 with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #1
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #2
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #3
new UNRESOLVED: gdb.base/ifelse.exp: replace define with if .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: set confirm off
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tc-td: 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-tc-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ts: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tf: 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-tf-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-ts: 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-ti-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tl-td: 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-tl-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-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-td: 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-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tld: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tll-tf: 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-td: 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-ts-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ts: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tc-td: 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-tc-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-ts: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tf: 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-tf-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-ts: 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-ti-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tl-td: 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-tl-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-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-td: 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-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tld: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tll-tf: 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-td: 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-ts-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ts: failed to compile
new UNRESOLVED: gdb.base/infnan.exp: print a
new FAIL: gdb.base/info-os.exp: cannot compile test program
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode on
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode on
new UNRESOLVED: gdb.base/interact.exp: show interactive-mode
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode on
new UNRESOLVED: gdb.base/maint.exp: check maint info sections output
new FAIL: gdb.base/maint.exp: maint info breakpoints
new FAIL: gdb.base/maint.exp: maint print type
new UNRESOLVED: gdb.base/multi-line-starts-subshell.exp: gdb input still works
new UNRESOLVED: gdb.base/multi-line-starts-subshell.exp: spawn subshell from multi-line
new UNRESOLVED: gdb.base/osabi.exp: set debug arch 1
new UNRESOLVED: gdb.base/osabi.exp: set osabi none
new UNRESOLVED: gdb.base/page.exp: paged count
new UNRESOLVED: gdb.base/page.exp: paged count for interrupt
new UNRESOLVED: gdb.base/page.exp: paged count remainder
new UNRESOLVED: gdb.base/page.exp: paged help
new UNRESOLVED: gdb.base/page.exp: pagination is off
new UNRESOLVED: gdb.base/page.exp: pagination is on
new UNRESOLVED: gdb.base/page.exp: q
new UNRESOLVED: gdb.base/page.exp: quit while paging
new UNRESOLVED: gdb.base/page.exp: set editing off
new UNRESOLVED: gdb.base/page.exp: set height -1
new UNRESOLVED: gdb.base/page.exp: set height 10
new UNRESOLVED: gdb.base/page.exp: set height 5
new UNRESOLVED: gdb.base/page.exp: set pagination off
new UNRESOLVED: gdb.base/page.exp: set pagination on
new UNRESOLVED: gdb.base/page.exp: set width -1
new UNRESOLVED: gdb.base/page.exp: set width 30
new UNRESOLVED: gdb.base/page.exp: size=0: set height 0
new UNRESOLVED: gdb.base/page.exp: size=0: set height 200
new UNRESOLVED: gdb.base/page.exp: size=0: set width 0
new UNRESOLVED: gdb.base/page.exp: size=0: set width 200
new UNRESOLVED: gdb.base/page.exp: size=0: show height
new UNRESOLVED: gdb.base/page.exp: size=0: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=0: show width
new UNRESOLVED: gdb.base/page.exp: size=0: show width unlimited
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set height 0x80000000
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set height 200
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set width 0x80000000
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set width 200
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show height
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show width
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show width unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set height 200
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set height unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set width 200
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set width unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show height
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show width
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show width unlimited
new UNRESOLVED: gdb.base/page.exp: unpaged help
new UNRESOLVED: gdb.base/quit.exp: quit with expression
new UNRESOLVED: gdb.base/quit.exp: quit with syntax error
new UNRESOLVED: gdb.base/radix.exp: Output radix unchanged after rejecting 0
new UNRESOLVED: gdb.base/radix.exp: Reject input-radix 0
new UNRESOLVED: gdb.base/radix.exp: Reject input-radix 1
new UNRESOLVED: gdb.base/radix.exp: Reject output-radix 0
new UNRESOLVED: gdb.base/radix.exp: Reject output-radix 1
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 10
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 16
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 2
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 3
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 8
new UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 10
new UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 16
new UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 8
new UNRESOLVED: gdb.base/radix.exp: input radix unchanged after rejecting 0
new UNRESOLVED: gdb.base/radix.exp: input radix unchanged after rejecting 1
new UNRESOLVED: gdb.base/radix.exp: output radix unchanged after rejecting 1
new UNRESOLVED: gdb.base/radix.exp: output radix unchanged after rejection through set radix command
new UNRESOLVED: gdb.base/radix.exp: print
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -100; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -256; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -4; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -64; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -9; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -101; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -10; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -257; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -5; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -65; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -10; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -16; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -2; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -3; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -8; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -11; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -17; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -3; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -4; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -9; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -12; expect -12; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -20; expect -16; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -2; expect Invalid number "2"\.; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -9; expect Invalid number "9".; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 010; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 17; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect f; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 100; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 100; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 144; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 256; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 4; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 64; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 64; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 9; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 10101; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 21; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 4161; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 65793; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 91; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 101; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 10; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 257; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 5; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 65; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 10; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 10; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 12; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 16; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 2; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 3; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 8; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10; expect a; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 11; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 17; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 3; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 4; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 9; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 14; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 24; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20; expect 16; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20; expect 6; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 2; expect 2; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 30; expect Invalid number "30"\.; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 3; expect Invalid number "3"\.; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 4; expect Invalid number "4"\.; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 8; expect Invalid number "8".; input radix 8
new UNRESOLVED: gdb.base/radix.exp: reset radices
new UNRESOLVED: gdb.base/radix.exp: set input-radix 10
new UNRESOLVED: gdb.base/radix.exp: set input-radix 16
new UNRESOLVED: gdb.base/radix.exp: set input-radix 2
new UNRESOLVED: gdb.base/radix.exp: set input-radix 3
new UNRESOLVED: gdb.base/radix.exp: set input-radix 8
new UNRESOLVED: gdb.base/radix.exp: set output-radix 10
new UNRESOLVED: gdb.base/radix.exp: set output-radix 16
new UNRESOLVED: gdb.base/radix.exp: set output-radix 8
new UNRESOLVED: gdb.base/radix.exp: set radix 7 rejected
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 10
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 16
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 2
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 3
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 8
new UNRESOLVED: gdb.base/radix.exp: show radix, output radix 10
new UNRESOLVED: gdb.base/radix.exp: show radix, output radix 16
new UNRESOLVED: gdb.base/radix.exp: show radix, output radix 8
new UNRESOLVED: gdb.base/readline.exp: Simple operate-and-get-next - send p 1
new UNRESOLVED: gdb.base/readline.exp: arrow keys with secondary prompt
new UNRESOLVED: gdb.base/readline.exp: operate-and-get-next with secondary prompt - send if 1 > 0
new UNRESOLVED: gdb.base/readline.exp: print 42
new UNRESOLVED: gdb.base/readline.exp: show editing
new UNRESOLVED: gdb.base/remotetimeout.exp: correct remotetimeout printed
new UNRESOLVED: gdb.base/shell.exp: ! echo foo
new UNRESOLVED: gdb.base/shell.exp: ! exit 0
new UNRESOLVED: gdb.base/shell.exp: ! exit 1
new UNRESOLVED: gdb.base/shell.exp: ! kill -2 $$
new UNRESOLVED: gdb.base/shell.exp: !echo foo
new UNRESOLVED: gdb.base/shell.exp: -d spaces value missing
new UNRESOLVED: gdb.base/shell.exp: -d value missing
new UNRESOLVED: gdb.base/shell.exp: DELIM delimiter missing
new UNRESOLVED: gdb.base/shell.exp: SHELL_COMMAND missing
new UNRESOLVED: gdb.base/shell.exp: SHELL_COMMAND missing with delimiter
new UNRESOLVED: gdb.base/shell.exp: all missing
new UNRESOLVED: gdb.base/shell.exp: alternate 1char delim
new UNRESOLVED: gdb.base/shell.exp: alternate 1char delim, no space
new UNRESOLVED: gdb.base/shell.exp: alternate 3char delim
new UNRESOLVED: gdb.base/shell.exp: alternate 3char delim, no space
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe print 1 | "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| print 1 | "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|print 1 | "
new UNRESOLVED: gdb.base/shell.exp: define foo
new UNRESOLVED: gdb.base/shell.exp: delimiter missing due to missing space
new UNRESOLVED: gdb.base/shell.exp: double pipe
new UNRESOLVED: gdb.base/shell.exp: double pipe, pipe char
new UNRESOLVED: gdb.base/shell.exp: echo coucou
new UNRESOLVED: gdb.base/shell.exp: enter commands
new UNRESOLVED: gdb.base/shell.exp: no space around pipe char
new UNRESOLVED: gdb.base/shell.exp: pipe fail exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe fail exitsignal
new UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitsignal
new UNRESOLVED: gdb.base/shell.exp: pipe success exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe success exitsignal
new UNRESOLVED: gdb.base/shell.exp: repeat previous command
new UNRESOLVED: gdb.base/shell.exp: set max-completions 0
new UNRESOLVED: gdb.base/shell.exp: set max-completions 2
new UNRESOLVED: gdb.base/shell.exp: shell echo foo
new UNRESOLVED: gdb.base/shell.exp: shell fail exitcode
new UNRESOLVED: gdb.base/shell.exp: shell fail exitsignal
new UNRESOLVED: gdb.base/shell.exp: shell interrupt exitcode
new UNRESOLVED: gdb.base/shell.exp: shell interrupt exitsignal
new UNRESOLVED: gdb.base/shell.exp: shell success exitcode
new UNRESOLVED: gdb.base/shell.exp: shell success exitsignal
new UNRESOLVED: gdb.base/shell.exp: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
new UNRESOLVED: gdb.base/shell.exp: simple pipe
new UNRESOLVED: gdb.base/shell.exp: simple pipe with arg
new UNRESOLVED: gdb.base/shell.exp: | delimiter missing
new UNRESOLVED: gdb.base/shell.exp: |p 123| exit 0
new UNRESOLVED: gdb.base/shell.exp: |p 123| exit 1
new UNRESOLVED: gdb.base/shell.exp: |p 123| kill -2 $$
new UNRESOLVED: gdb.base/source-dir.exp: directory /nOtExStInG/a /nOtExStInG/b /nOtExStInG/c
new UNRESOLVED: gdb.base/source-dir.exp: directory /nOtExStInG/b /nOtExStInG/d /nOtExStInG/c
new UNRESOLVED: gdb.base/source.exp: script contains error
new UNRESOLVED: gdb.base/source.exp: set search directories
new UNRESOLVED: gdb.base/source.exp: source -s
new UNRESOLVED: gdb.base/source.exp: source -s -v
new UNRESOLVED: gdb.base/source.exp: source -v
new UNRESOLVED: gdb.base/source.exp: source -v -s
new UNRESOLVED: gdb.base/source.exp: source after -v
new UNRESOLVED: gdb.base/source.exp: source for-sure-nonexistant-file
new UNRESOLVED: gdb.base/source.exp: source source-nofile.gdb
new UNRESOLVED: gdb.base/step-over-syscall.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/step-over-syscall.exp: run to main
new UNRESOLVED: gdb.base/subst.exp: add depuis -> vers substitution rule
new UNRESOLVED: gdb.base/subst.exp: add from -> to substitution rule
new UNRESOLVED: gdb.base/subst.exp: add from1 -> to1 substitution rule
new UNRESOLVED: gdb.base/subst.exp: add source -> destination substitution rule
new UNRESOLVED: gdb.base/subst.exp: add substitution rule to empty string
new UNRESOLVED: gdb.base/subst.exp: deactivate GDB's confirmation interface
new UNRESOLVED: gdb.base/subst.exp: remove all remaining substitution rules
new UNRESOLVED: gdb.base/subst.exp: remove default substitution rules
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, first argument is empty string
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, too few arguments
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, too many arguments
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after all remaining rules removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after depuis rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after empty rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after from rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path depuis, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, after unsetting it
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from/path, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from_a_bad_path, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path garbage, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: show substitute-path, too many arguments
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path depuis
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path empty
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from after the rule was removed
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path, too many arguments
new UNRESOLVED: gdb.base/trace-commands.exp: define user command
new UNRESOLVED: gdb.base/trace-commands.exp: depth resets on error part 1
new UNRESOLVED: gdb.base/trace-commands.exp: depth resets on error part 2
new UNRESOLVED: gdb.base/trace-commands.exp: nested trace-commands test
new UNRESOLVED: gdb.base/trace-commands.exp: nested trace-commands test with source
new UNRESOLVED: gdb.base/trace-commands.exp: set trace-commands
new UNRESOLVED: gdb.base/trace-commands.exp: show trace-commands says off
new UNRESOLVED: gdb.base/trace-commands.exp: show trace-commands says on
new UNRESOLVED: gdb.base/trace-commands.exp: simple trace-commands test
new UNRESOLVED: gdb.base/trace-commands.exp: source -v
new UNRESOLVED: gdb.base/vla-optimized-out.exp: o1: can't run to f1
new UNRESOLVED: gdb.base/warning.exp: echo 23\n
new UNRESOLVED: gdb.btrace/cpu.exp: default cpu
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu auto
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/1
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0x0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo/bar
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu none
new UNRESOLVED: gdb.btrace/cpu.exp: set record
new UNRESOLVED: gdb.btrace/cpu.exp: set record btrace
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu auto
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/1
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0x0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo/bar
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu none
new UNRESOLVED: gdb.cp/debug-expr.exp: print dynamic_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: print reinterpret_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: print static_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: set debug expression 1
new UNRESOLVED: gdb.cp/debug-expr.exp: set language c++
new UNRESOLVED: gdb.cp/demangle.exp: auto: check demangling style
new UNRESOLVED: gdb.cp/demangle.exp: auto: set demangle-style
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c -- _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c++ -- _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c++ _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l garbage xyzdje
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z13BitPatterntoaOK10BitPatternccc
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z31DrawDestinationTransformedImageP7_XImageiiS0_iimjiijmmP4_XGCOK13ivTransformeriiii
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z3argOK7Complex
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN11RelateManip6EffectEO7ivEvent
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN20DisplayList_IteratorC4EO11DisplayList
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN3fooC4EOS_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN3fooC4EiOS_iS0_iS0_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE3PixC4EOKS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE7elementC2EOKS0_PS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE7elementC4EOKS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityEC4EOKS1_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4PixXI11VHDLLibrary14VHDLLibraryRep4ListI10VHDLEntityEEC2EOKS5_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN7ivWorldC2EPKcOiPPcPK12ivOptionDescPK14ivPropertyData
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN8TextCode14CoreConstDeclsEO7ostream
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic: gnu-v3: check demangling style
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic: gnu-v3: set demangle-style
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK11VHDLLibrary5nextEEO4PixXIS_14VHDLLibraryRep4ListI10VHDLEntityEE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK4ListI10VHDLEntityE4nextEONS1_3PixE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK4ListI10VHDLEntityEclEOKNS1_3PixE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOK10BitPattern
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOK12BitSubStringi
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOKS_
new UNRESOLVED: gdb.cp/demangle.exp: set language c++
new UNRESOLVED: gdb.cp/demangle.exp: set language unknown
new UNRESOLVED: gdb.cp/demangle.exp: set width 0
new UNRESOLVED: gdb.cp/maint.exp: help maint cp
new UNRESOLVED: gdb.cp/maint.exp: help maint cp first_component
new UNRESOLVED: gdb.cp/maint.exp: help maint cp namespace
new UNRESOLVED: gdb.cp/maint.exp: help maintenance cplus
new UNRESOLVED: gdb.cp/maint.exp: maint cp
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component C<A>::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component C<std::basic_streambuf<wchar_t,std::char_traits<wchar_t> > >::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component T<Cooperator>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component bool operator<<char>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo::bar::baz
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<&
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<&operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int operator<< <char>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator  ->
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator ->
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator>>
new UNRESOLVED: gdb.cp/maint.exp: maint cp namespace
new UNRESOLVED: gdb.cp/maint.exp: set complaints 1000
new UNRESOLVED: gdb.cp/punctuator.exp: print
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 1
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 2
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 3
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 1
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 2
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 3
new UNRESOLVED: gdb.cp/punctuator.exp: set lang c++
new UNRESOLVED: gdb.cp/ref-params.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/ref-params.exp: print value of Child& in f2
new UNRESOLVED: gdb.cp/ref-params.exp: print value of Parent& in f1
new UNRESOLVED: gdb.cp/ref-params.exp: print value of a Child in main
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on Child in main
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on Child& in f2
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f2 on
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f2 on Child in main
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print f1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print mf1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print mf2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Child&& in f2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Child&& in f2: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Parent&& in f1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Parent&& in f1: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f1 on
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f1 on Child&& in f2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f2 on
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char16_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char16_t is unsigned
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char32_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char32_t is unsigned
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p L"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p U"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p u"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: set language c++
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: sizeof
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: wchar_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: wchar_t sign
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: char16_t is not built-in
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: char32_t is not built-in
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p L"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p U"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p u"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: set language c
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: wchar_t is not built-in
new UNRESOLVED: gdb.disasm/disassembler-options.exp: set disassembler-options
new UNRESOLVED: gdb.disasm/disassembler-options.exp: set disassembler-options invalid_option_value
new UNRESOLVED: gdb.disasm/disassembler-options.exp: show NULL disassembler-options
new UNRESOLVED: gdb.dlang/debug-expr.exp: print *
new UNRESOLVED: gdb.dlang/debug-expr.exp: set debug expression 1
new UNRESOLVED: gdb.dlang/debug-expr.exp: set language d
new UNRESOLVED: gdb.dlang/demangle.exp: set language d
new UNRESOLVED: gdb.dlang/expression.exp: set language d
new UNRESOLVED: gdb.dlang/primitive-types.exp: set language d
new UNRESOLVED: gdb.dlang/properties.exp: set language d
new UNRESOLVED: gdb.dlang/watch-loc.exp: disassemble _Dmain
new UNRESOLVED: gdb.dlang/watch-loc.exp: p _Dmain_label - _Dmain
new UNRESOLVED: gdb.dlang/watch-loc.exp: x/2i _Dmain+
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: disassemble first
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: disassemble second
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p first_label - first
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p second_label - second
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: x/2i first+
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: x/2i second+
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p g_label - g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i g+
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: console: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: console: set print object on
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: disassemble func01
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: p func01_label - func01
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: x/2i func01+
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p bar_label - bar
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p baz_label - baz
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_cold_label - foo_cold
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_label - foo
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-ranges.exp: info line main
new UNRESOLVED: gdb.dwarf2/implref-struct.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i main+
new UNRESOLVED: gdb.objc/print.exp: set language objective-c
new UNRESOLVED: gdb.opt/solib-intra-step.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.pascal/print.exp: set language pascal
new UNRESOLVED: gdb.pascal/types.exp: set language pascal
new UNRESOLVED: gdb.python/py-error.exp: check if python 3
new UNRESOLVED: gdb.python/py-error.exp: main reached
new UNRESOLVED: gdb.python/py-error.exp: no delayed error
new UNRESOLVED: gdb.python/py-error.exp: set host-charset IBM1047
new UNRESOLVED: gdb.python/py-error.exp: verify python support
new KFAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new UNRESOLVED: gdb.python/py-function.exp: Test GDBError - python
new UNRESOLVED: gdb.python/py-function.exp: Test GdbError.  There should not be a stack trace
new UNRESOLVED: gdb.python/py-function.exp: Test Normal Error - python
new UNRESOLVED: gdb.python/py-function.exp: Test a Runtime error.  There should be a stack trace.
new UNRESOLVED: gdb.python/py-function.exp: call function
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = ada
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = asm
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = auto
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = c
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = c++
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = d
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = fortran
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = go
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = minimal
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = modula-2
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = objective-c
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = opencl
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = pascal
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = rust
new UNRESOLVED: gdb.python/py-function.exp: call yes with &&
new UNRESOLVED: gdb.python/py-function.exp: call yes with ||
new UNRESOLVED: gdb.python/py-function.exp: check if python 3
new UNRESOLVED: gdb.python/py-function.exp: input command-calling function - python
new UNRESOLVED: gdb.python/py-function.exp: input convenience function - python
new UNRESOLVED: gdb.python/py-function.exp: input int-returning function - python
new UNRESOLVED: gdb.python/py-function.exp: input value-returning convenience function - python
new UNRESOLVED: gdb.python/py-function.exp: set language ada
new UNRESOLVED: gdb.python/py-function.exp: set language asm
new UNRESOLVED: gdb.python/py-function.exp: set language auto
new UNRESOLVED: gdb.python/py-function.exp: set language c
new UNRESOLVED: gdb.python/py-function.exp: set language c++
new UNRESOLVED: gdb.python/py-function.exp: set language d
new UNRESOLVED: gdb.python/py-function.exp: set language fortran
new UNRESOLVED: gdb.python/py-function.exp: set language go
new UNRESOLVED: gdb.python/py-function.exp: set language minimal
new UNRESOLVED: gdb.python/py-function.exp: set language modula-2
new UNRESOLVED: gdb.python/py-function.exp: set language objective-c
new UNRESOLVED: gdb.python/py-function.exp: set language opencl
new UNRESOLVED: gdb.python/py-function.exp: set language pascal
new UNRESOLVED: gdb.python/py-function.exp: set language rust
new UNRESOLVED: gdb.python/py-function.exp: set python print-stack full
new UNRESOLVED: gdb.python/py-function.exp: setting a value from a function which executes a command, again.
new UNRESOLVED: gdb.python/py-function.exp: setting a value from a function which executes a command.
new UNRESOLVED: gdb.python/py-function.exp: verify python support
new UNRESOLVED: gdb.python/py-lookup-type.exp: check if python 3
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type CARDINAL using language modula-2
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language c
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language objective-c
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language pascal
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type character using language ada
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type character using language fortran
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type int32 using language go
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type ucent using language d
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type ushort using language opencl
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language ada
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language c
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language d
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language fortran
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language go
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language modula-2
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language objective-c
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language opencl
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language pascal
new UNRESOLVED: gdb.python/py-lookup-type.exp: verify python support
new UNRESOLVED: gdb.python/py-nested-maps.exp: check if python 3
new UNRESOLVED: gdb.python/py-nested-maps.exp: verify python support
new UNRESOLVED: gdb.python/py-prompt.exp: check if python 3
new UNRESOLVED: gdb.python/py-prompt.exp: verify python support
new UNRESOLVED: gdb.python/py-recurse-unwind.exp: can't run to main
new UNRESOLVED: gdb.python/py-value.exp: can't run to main
new UNRESOLVED: gdb.reverse/fstatat-reverse.exp: turn on process record
new UNRESOLVED: gdb.reverse/recvmsg-reverse.exp: turn on process record
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sigall-precsave.exp
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sigall-reverse.exp
new UNRESOLVED: gdb.rust/expr.exp: set language rust
new UNRESOLVED: gdb.rust/expr.exp: set var $something = 27
new FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
new FAIL: gdb.server/unittest.exp: unit tests
new UNRESOLVED: gdb.trace/actions.exp: failed to compile
new UNRESOLVED: gdb.trace/ax.exp: failed to compile
new UNRESOLVED: gdb.trace/deltrace.exp: failed to compile
new UNRESOLVED: gdb.trace/infotrace.exp: failed to compile
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with missing argument
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with too many arguments
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with wrong option
new UNRESOLVED: gdb.trace/packetlen.exp: failed to compile
new UNRESOLVED: gdb.trace/passc-dyn.exp: failed to compile
new UNRESOLVED: gdb.trace/passcount.exp: failed to compile
new UNRESOLVED: gdb.trace/report.exp: failed to compile
new UNRESOLVED: gdb.trace/save-trace.exp: failed to compile
new UNRESOLVED: gdb.trace/tfind.exp: failed to compile
new UNRESOLVED: gdb.trace/tracecmd.exp: failed to compile
new UNRESOLVED: gdb.trace/tsv.exp: failed to compile
new UNRESOLVED: gdb.trace/while-dyn.exp: failed to compile
new UNRESOLVED: gdb.trace/while-stepping.exp: failed to compile
new UNRESOLVED: gdb.tui/completion.exp: verify tui support
new UNRESOLVED: gdb.tui/empty.exp: set tui border-kind ascii
new UNRESOLVED: gdb.tui/empty.exp: src: 80x24: box 1
new UNRESOLVED: gdb.tui/empty.exp: verify tui support
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: correct line breaks
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: set height 2000
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: set pagination on
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: tui enable
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: verify tui support
new UNRESOLVED: gdb.xml/maint_print_struct.exp: printing tdesc with a structure and a bitfield
new UNRESOLVED: gdb.xml/maint_print_struct.exp: setting a new tdesc having only a structure
new UNRESOLVED: gdb.xml/tdesc-arch.exp: architecture XML tests
new UNRESOLVED: gdb.xml/tdesc-arch.exp: read default architecture
new UNRESOLVED: gdb.xml/tdesc-arch.exp: read valid architectures
new UNRESOLVED: gdb.xml/tdesc-errors.exp: set tdesc filename gdb.xml/tdesc-bogus.xml
new UNRESOLVED: gdb.xml/tdesc-errors.exp: set tdesc filename gdb.xml/tdesc-unknown.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: cd to directory holding xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: maintenance print reggroups
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $bitfields
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $extrareg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $flags
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $mixed_flags
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $structreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $structreg.v4
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $uintreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $unionreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $unionreg.v4
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $vecreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc file single-reg.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc filename test-extra-regs.xml - from extra-regs.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc filename test-regs.xml - from core-only.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/bad-include.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/includes.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/loop.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-gdbserver-m64/67/676c3ecbad6e9c41b906b0f882ef2ce23f49976a//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/67/676c3ecbad6e9c41b906b0f882ef2ce23f49976a//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-09  6:16 [binutils-gdb] libctf: installable libctf as a shared library gdb-buildbot
@ 2019-10-09  8:16 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-09  8:16 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/874

Author:
        Nick Alcock <nick.alcock@oracle.com>

Commit tested:
        87279e3cef5b2c54f4a01962cf9dcea38664a336

Subject of commit:
        libctf: installable libctf as a shared library

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/87/87279e3cef5b2c54f4a01962cf9dcea38664a336/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.ada/char_enum.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/char_enum.exp: print Char_Enum_Type'
new UNRESOLVED: gdb.ada/char_enum.exp: print pck.Global_Enum_Type'
new UNRESOLVED: gdb.ada/char_enum.exp: ptype Char_Enum_Type
new UNRESOLVED: gdb.ada/char_enum.exp: ptype pck.Global_Enum_Type
new UNRESOLVED: gdb.ada/excep_handle.exp: cannot run to main, testcase aborted
new UNRESOLVED: gdb.ada/excep_handle.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/mi_catch_ex.exp: cannot run to main, testcase aborted
new UNRESOLVED: gdb.ada/mi_catch_ex.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/str_ref_cmp.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/str_ref_cmp.exp: operator = works for strings
new UNRESOLVED: gdb.ada/str_ref_cmp.exp: print String_Var
new FAIL: gdb.ada/var_rec_arr.exp: print a1
new FAIL: gdb.ada/watch_minus_l.exp: continue with watch -location
new UNRESOLVED: gdb.ada/watch_minus_l.exp: watch -location pck.global_var
new UNRESOLVED: gdb.base/argv0-symlink.exp: could not run to main
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of !0
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of !1
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of !10
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of !100
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of !1000
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of !2
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of -!0
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of -1 < 0 > 1
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of -3>4
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 0 == 8 > 128 >> 1 + 2 * 2
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 0 || 1 && 0 | 0 ^ 0 == 8
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 0 || 1 && 0 | 0 ^ 0 == 8 > 128 >>1 +2 *2
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 0.0 || 0
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 0.0 || 1.0
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 1.0 || 0
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 10 & 5
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 10 ^ 5
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 10 | 5
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 15 ^ 10 ^ 5 ^ 7
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 2 > -3
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 3 * 2 / 4.0 * 2.0
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 3!=3.0
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 3!=5.0
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 3.5 < -4.0
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 3.5 < 4.0
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 3==3.0
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 3==4.0
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 3>=2.5
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 3>=4.5
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 8 << 2 >> 4
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of ~-!0
PASS -> UNRESOLVED: gdb.base/echo.exp: echo test
new UNRESOLVED: gdb.base/frameapply.exp: can't run to setup_done
new UNRESOLVED: gdb.base/noreturn-finish.exp: could not run to main
new UNRESOLVED: gdb.base/skip.exp: can't run to main
new UNRESOLVED: gdb.base/vla-optimized-out.exp: o1: can't run to f1
PASS -> UNRESOLVED: gdb.dlang/debug-expr.exp: print *
PASS -> UNRESOLVED: gdb.dlang/debug-expr.exp: set debug expression 1
PASS -> UNRESOLVED: gdb.dlang/debug-expr.exp: set language d
PASS -> UNRESOLVED: gdb.dlang/demangle.exp: set language d
PASS -> UNRESOLVED: gdb.dlang/expression.exp: set language d
PASS -> UNRESOLVED: gdb.dlang/primitive-types.exp: set language d
PASS -> UNRESOLVED: gdb.dlang/properties.exp: set language d
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: disassemble first
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: disassemble second
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p first_label - first
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p second_label - second
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: x/2i first+
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: x/2i second+
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p baz_label - baz
new UNRESOLVED: gdb.opt/inline-break.exp: cmd=break: could not run to main
new UNRESOLVED: gdb.python/py-recurse-unwind.exp: can't run to main
new FAIL: gdb.reverse/pipe-reverse.exp: continue to breakpoint: marker2
new FAIL: gdb.reverse/pipe-reverse.exp: reverse to marker1
new UNRESOLVED: gdb.reverse/pipe-reverse.exp: turn on process record
==============================================

*** 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/87/87279e3cef5b2c54f4a01962cf9dcea38664a336//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/87/87279e3cef5b2c54f4a01962cf9dcea38664a336//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-09  5:46 [binutils-gdb] bfd, ld: add CTF section linking gdb-buildbot
@ 2019-10-09  5:46 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-09  5:46 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/873

Author:
        Nick Alcock <nick.alcock@oracle.com>

Commit tested:
        1ff6de031241c59d0ff9fa01d3c0a4049b0e97c9

Subject of commit:
        bfd, ld: add CTF section linking

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/1f/1ff6de031241c59d0ff9fa01d3c0a4049b0e97c9/

*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/O2_float_param.exp: compilation foo.adb
new FAIL: gdb.ada/access_tagged_param.exp: compilation foo.adb
new FAIL: gdb.ada/access_to_unbounded_array.exp: compilation foo.adb
new FAIL: gdb.ada/addr_arith.exp: compilation foo_na07_019.adb
new FAIL: gdb.ada/aliased_array.exp: compilation foo.adb
new FAIL: gdb.ada/arr_acc_idx_w_gap.exp: compilation enum_with_gap_main.adb
new FAIL: gdb.ada/arr_arr.exp: compilation foo.adb
new FAIL: gdb.ada/arr_enum_idx_w_gap.exp: compilation foo_q418_043.adb
new FAIL: gdb.ada/array_bounds.exp: compilation bar.adb
new FAIL: gdb.ada/array_char_idx.exp: compilation foo.adb
new FAIL: gdb.ada/array_of_variable_length.exp: compilation foo.adb
new FAIL: gdb.ada/array_ptr_renaming.exp: compilation foo.adb
new FAIL: gdb.ada/array_return.exp: compilation p.adb
new FAIL: gdb.ada/array_subscript_addr.exp: compilation p.adb
new FAIL: gdb.ada/arraydim.exp: compilation foo.adb
new FAIL: gdb.ada/arrayidx.exp: compilation p.adb
new FAIL: gdb.ada/arrayparam.exp: compilation foo.adb
new FAIL: gdb.ada/arrayptr.exp: compilation foo.adb
new FAIL: gdb.ada/assign_arr.exp: compilation main_p324_051.adb
new FAIL: gdb.ada/atomic_enum.exp: compilation foo.adb
new FAIL: gdb.ada/attr_ref_and_charlit.exp: compilation foo.adb
new FAIL: gdb.ada/bad-task-bp-keyword.exp: compilation foo.adb
new FAIL: gdb.ada/big_packed_array.exp: compilation foo_ra24_010.adb
new FAIL: gdb.ada/bp_c_mixed_case.exp: compilation foo_h731_021.adb
new FAIL: gdb.ada/bp_enum_homonym.exp: compilation p.adb
new FAIL: gdb.ada/bp_fun_addr.exp: compilation bp_fun_addr.adb
new FAIL: gdb.ada/bp_inlined_func.exp: compilation foo.adb
new FAIL: gdb.ada/bp_on_var.exp: compilation foo.adb
new FAIL: gdb.ada/bp_range_type.exp: compilation foo.adb
new FAIL: gdb.ada/bp_reset.exp: compilation foo.adb
new FAIL: gdb.ada/byte_packed_arr.exp: compilation reprod_main.adb
new FAIL: gdb.ada/catch_assert_if.exp: compilation bla.adb
new FAIL: gdb.ada/catch_ex.exp: compilation foo.adb
new FAIL: gdb.ada/char_enum.exp: compilation foo.adb
new FAIL: gdb.ada/char_param.exp: compilation foo.adb
new FAIL: gdb.ada/complete.exp: compilation foo.adb
new FAIL: gdb.ada/cond_lang.exp: compilation a.adb
new FAIL: gdb.ada/dgopt.exp: compilation x.adb
new FAIL: gdb.ada/disc_arr_bound.exp: compilation foo_n612_026.adb
new FAIL: gdb.ada/display_nested.exp: compilation foo.adb
new FAIL: gdb.ada/dyn_arrayidx.exp: compilation foo.adb
new FAIL: gdb.ada/dyn_loc.exp: compilation p.adb
new FAIL: gdb.ada/dyn_stride.exp: compilation foo.adb
new FAIL: gdb.ada/enum_idx_packed.exp: compilation foo.adb
new FAIL: gdb.ada/excep_handle.exp: compilation foo.adb
new FAIL: gdb.ada/expr_delims.exp: compilation foo.adb
new FAIL: gdb.ada/expr_with_funcall.exp: compilation expr_r821_013.adb
new FAIL: gdb.ada/exprs.exp: compilation p.adb
new FAIL: gdb.ada/fin_fun_out.exp: compilation foo_o525_013.adb
new FAIL: gdb.ada/fixed_cmp.exp: compilation fixed.adb
new FAIL: gdb.ada/fixed_points.exp: compilation fixed_points.adb
new FAIL: gdb.ada/float_param.exp: compilation foo.adb
new FAIL: gdb.ada/formatted_ref.exp: compilation formatted_ref.adb
new FAIL: gdb.ada/frame_arg_lang.exp: compilation bla.adb
new FAIL: gdb.ada/frame_args.exp: compilation foo.adb
new FAIL: gdb.ada/fullname_bp.exp: compilation foo.adb
new FAIL: gdb.ada/fun_addr.exp: compilation foo.adb
new FAIL: gdb.ada/fun_in_declare.exp: compilation foo.adb
new FAIL: gdb.ada/fun_overload_menu.exp: compilation foo.adb
new FAIL: gdb.ada/fun_renaming.exp: compilation fun_renaming.adb
new FAIL: gdb.ada/funcall_param.exp: compilation foo.adb
new FAIL: gdb.ada/funcall_ptr.exp: compilation foo.adb
new FAIL: gdb.ada/funcall_ref.exp: compilation foo.adb
new FAIL: gdb.ada/homonym.exp: compilation homonym_main.adb
new FAIL: gdb.ada/info_addr_mixed_case.exp: compilation foo.adb
new FAIL: gdb.ada/info_exc.exp: compilation foo.adb
new FAIL: gdb.ada/info_locals_renaming.exp: compilation foo.adb
new FAIL: gdb.ada/int_deref.exp: compilation foo.adb
new FAIL: gdb.ada/interface.exp: compilation foo.adb
new FAIL: gdb.ada/iwide.exp: compilation p.adb
new FAIL: gdb.ada/lang_switch.exp: compilation lang_switch.adb
new FAIL: gdb.ada/length_cond.exp: compilation length_cond.adb
new FAIL: gdb.ada/maint_with_ada.exp: compilation var_arr_typedef.adb
new FAIL: gdb.ada/mi_catch_assert.exp: compilation bla.adb
new FAIL: gdb.ada/mi_catch_ex_hand.exp: compilation foo.adb
new FAIL: gdb.ada/mi_ex_cond.exp: compilation foo.adb
new FAIL: gdb.ada/mi_exc_info.exp: compilation foo.adb
new FAIL: gdb.ada/mi_interface.exp: compilation foo.adb
new FAIL: gdb.ada/mi_ref_changeable.exp: compilation foo_rb20_056.adb
new FAIL: gdb.ada/mi_string_access.exp: compilation bar.adb
new FAIL: gdb.ada/mi_task_arg.exp: compilation task_switch.adb
new FAIL: gdb.ada/mi_task_info.exp: compilation task_switch.adb
new FAIL: gdb.ada/mi_var_array.exp: compilation bar.adb
new FAIL: gdb.ada/mi_var_union.exp: compilation bar.adb
new FAIL: gdb.ada/mod_from_name.exp: compilation foo.adb
new FAIL: gdb.ada/n_arr_bound.exp: compilation foo.adb
new FAIL: gdb.ada/notcplusplus.exp: compilation foo.adb
new FAIL: gdb.ada/null_array.exp: compilation foo.adb
new FAIL: gdb.ada/null_record.exp: compilation null_record.adb
new FAIL: gdb.ada/operator_bp.exp: compilation ops_test.adb
new FAIL: gdb.ada/optim_drec.exp: compilation foo.adb
new FAIL: gdb.ada/out_of_line_in_inlined.exp: compilation foo_o224_021.adb
new FAIL: gdb.ada/packed_array.exp: compilation pa.adb
new FAIL: gdb.ada/packed_array_assign.exp: compilation tester.adb
new FAIL: gdb.ada/packed_tagged.exp: compilation comp_bug.adb
new FAIL: gdb.ada/pckd_arr_ren.exp: compilation foo.adb
new FAIL: gdb.ada/pckd_neg.exp: compilation foo_o508_021.adb
new FAIL: gdb.ada/pkd_arr_elem.exp: compilation failure.adb
new FAIL: gdb.ada/pp-rec-component.exp: compilation foo.adb
new FAIL: gdb.ada/print_chars.exp: compilation foo.adb
new FAIL: gdb.ada/print_pc.exp: compilation dummy.adb
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: ptype 3 * 2.0
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: ptype 3 / 2.0
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: set lang ada
new FAIL: gdb.ada/ptype_array.exp: compilation foo.adb
new FAIL: gdb.ada/ptype_field.exp: compilation foo.adb
new FAIL: gdb.ada/ptype_tagged_param.exp: compilation foo.adb
new FAIL: gdb.ada/py_range.exp: compilation foo.adb
new FAIL: gdb.ada/py_taft.exp: compilation main.adb
new FAIL: gdb.ada/rdv_wait.exp: compilation foo.adb
new FAIL: gdb.ada/rec_comp.exp: compilation bar_o203_012.adb
new FAIL: gdb.ada/rec_return.exp: compilation foo.adb
new FAIL: gdb.ada/ref_param.exp: compilation foo.adb
new FAIL: gdb.ada/ref_tick_size.exp: compilation p.adb
new FAIL: gdb.ada/repeat_dyn.exp: compilation foo_oc22_002.adb
new FAIL: gdb.ada/same_component_name.exp: compilation foo.adb
new FAIL: gdb.ada/same_enum.exp: compilation a.adb
new FAIL: gdb.ada/scoped_watch.exp: compilation foo_p708_025.adb
new FAIL: gdb.ada/set_pckd_arr_elt.exp: compilation foo.adb
new FAIL: gdb.ada/set_wstr.exp: compilation a.adb
new FAIL: gdb.ada/small_reg_param.exp: compilation foo.adb
new FAIL: gdb.ada/str_binop_equal.exp: compilation foo_p211_061.adb
new FAIL: gdb.ada/str_uninit.exp: compilation parse.adb
new FAIL: gdb.ada/sym_print_name.exp: compilation foo.adb
new FAIL: gdb.ada/taft_type.exp: compilation p.adb
new FAIL: gdb.ada/tagged.exp: compilation foo.adb
new FAIL: gdb.ada/tagged_access.exp: compilation p.adb
new FAIL: gdb.ada/tagged_not_init.exp: compilation foo.adb
new FAIL: gdb.ada/task_bp.exp: compilation foo.adb
new FAIL: gdb.ada/task_switch_in_core.exp: compilation crash.adb
new FAIL: gdb.ada/tasks.exp: compilation foo.adb
new FAIL: gdb.ada/tick_last_segv.exp: compilation foo.adb
new FAIL: gdb.ada/tick_length_array_enum_idx.exp: compilation foo_n207_004.adb
new FAIL: gdb.ada/type_coercion.exp: compilation assign.adb
new FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: compilation foo.adb
new FAIL: gdb.ada/var_arr_attrs.exp: compilation foo_o115_002.adb
new FAIL: gdb.ada/variant_record_packed_array.exp: compilation foo.adb
new FAIL: gdb.ada/varsize_limit.exp: compilation vsizelim.adb
new FAIL: gdb.ada/vla.exp: compilation vla.adb
new FAIL: gdb.ada/watch_minus_l.exp: compilation foo_ra10_006.adb
new FAIL: gdb.ada/whatis_array_val.exp: compilation foo.adb
new FAIL: gdb.ada/widewide.exp: compilation foo.adb
new FAIL: gdb.ada/win_fu_syms.exp: compilation foo.adb
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: set tdesc filename $srcdir/gdb.arch/arc-tdesc-cpu.xml
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: set tdesc filename /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.arch/arc-tdesc-cpu/trivial.xml
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: setting HS architecture
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: .text is readable
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: complete set architecture i386
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: complete set gnutarget
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: load core file
new UNRESOLVED: gdb.base/alias.exp: -a print elements 47
new UNRESOLVED: gdb.base/alias.exp: abbrev -a not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set2 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set3 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set4 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set5 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set6 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: alias -a -- -a = set
new UNRESOLVED: gdb.base/alias.exp: alias -a -- set6 = set
new UNRESOLVED: gdb.base/alias.exp: alias -a set2=set
new UNRESOLVED: gdb.base/alias.exp: alias -a set3= set
new UNRESOLVED: gdb.base/alias.exp: alias -a set4 =set
new UNRESOLVED: gdb.base/alias.exp: alias -a set5 = set
new UNRESOLVED: gdb.base/alias.exp: alias assigne
new UNRESOLVED: gdb.base/alias.exp: alias assigne imprime
new UNRESOLVED: gdb.base/alias.exp: alias assigne imprime limite-elements
new UNRESOLVED: gdb.base/alias.exp: alias foo=bar
new UNRESOLVED: gdb.base/alias.exp: alias set pr elms = set p elem
new UNRESOLVED: gdb.base/alias.exp: alias set print max-elements using assigne imprime
new UNRESOLVED: gdb.base/alias.exp: alias set2=set
new UNRESOLVED: gdb.base/alias.exp: alias spe = set p elem
new UNRESOLVED: gdb.base/alias.exp: assigne imprime elements 53
new UNRESOLVED: gdb.base/alias.exp: assigne imprime limite-elements 54
new UNRESOLVED: gdb.base/alias.exp: assigne imprime prefix not defined
new UNRESOLVED: gdb.base/alias.exp: assigne print elements 52
new UNRESOLVED: gdb.base/alias.exp: help set print
new UNRESOLVED: gdb.base/alias.exp: mismatched length
new UNRESOLVED: gdb.base/alias.exp: mismatched prefix
new UNRESOLVED: gdb.base/alias.exp: set imprime elements 55
new UNRESOLVED: gdb.base/alias.exp: set imprime prefix not defined
new UNRESOLVED: gdb.base/alias.exp: set pr elms 51
new UNRESOLVED: gdb.base/alias.exp: set print limite-elements 56
new UNRESOLVED: gdb.base/alias.exp: set print max-elements 57
new UNRESOLVED: gdb.base/alias.exp: set2 print elements 42
new UNRESOLVED: gdb.base/alias.exp: set3 print elements 43
new UNRESOLVED: gdb.base/alias.exp: set4 print elements 44
new UNRESOLVED: gdb.base/alias.exp: set5 print elements 45
new UNRESOLVED: gdb.base/alias.exp: set6 print elements 46
new UNRESOLVED: gdb.base/alias.exp: spe 50
new UNRESOLVED: gdb.base/alias.exp: verify -a
new UNRESOLVED: gdb.base/alias.exp: verify 52
new UNRESOLVED: gdb.base/alias.exp: verify 53
new UNRESOLVED: gdb.base/alias.exp: verify 54
new UNRESOLVED: gdb.base/alias.exp: verify 55
new UNRESOLVED: gdb.base/alias.exp: verify 56
new UNRESOLVED: gdb.base/alias.exp: verify 57
new UNRESOLVED: gdb.base/alias.exp: verify set pr elms
new UNRESOLVED: gdb.base/alias.exp: verify set2
new UNRESOLVED: gdb.base/alias.exp: verify set3
new UNRESOLVED: gdb.base/alias.exp: verify set4
new UNRESOLVED: gdb.base/alias.exp: verify set5
new UNRESOLVED: gdb.base/alias.exp: verify set6
new UNRESOLVED: gdb.base/alias.exp: verify spe
new FAIL: gdb.base/all-architectures-0.exp: all passed
new FAIL: gdb.base/all-architectures-0.exp: at least one architecture
new FAIL: gdb.base/all-architectures-0.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-0.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-0.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-0.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-1.exp: all passed
new FAIL: gdb.base/all-architectures-1.exp: at least one architecture
new FAIL: gdb.base/all-architectures-1.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-1.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-1.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-1.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-2.exp: all passed
new FAIL: gdb.base/all-architectures-2.exp: at least one architecture
new FAIL: gdb.base/all-architectures-2.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-2.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-2.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-2.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-3.exp: all passed
new FAIL: gdb.base/all-architectures-3.exp: at least one architecture
new FAIL: gdb.base/all-architectures-3.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-3.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-3.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-3.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-4.exp: all passed
new FAIL: gdb.base/all-architectures-4.exp: at least one architecture
new FAIL: gdb.base/all-architectures-4.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-4.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-4.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-4.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-5.exp: all passed
new FAIL: gdb.base/all-architectures-5.exp: at least one architecture
new FAIL: gdb.base/all-architectures-5.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-5.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-5.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-5.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-6.exp: all passed
new FAIL: gdb.base/all-architectures-6.exp: at least one architecture
new FAIL: gdb.base/all-architectures-6.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-6.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-7.exp: all passed
new FAIL: gdb.base/all-architectures-7.exp: at least one architecture
new FAIL: gdb.base/all-architectures-7.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-7.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-7.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-7.exp: set max-completions unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: break main
new UNRESOLVED: gdb.base/argv0-symlink.exp: p argc
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print elements 200
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print elements unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print repeats 200
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print repeats unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: show print elements
new UNRESOLVED: gdb.base/argv0-symlink.exp: show print repeats
new UNRESOLVED: gdb.base/bad-file.exp: directory
new UNRESOLVED: gdb.base/bad-file.exp: neither file nor directory
new UNRESOLVED: gdb.base/bad-file.exp: non-existent file
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "info source": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "set not-a-thing 4" -x good-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "set not-a-thing 4": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -jslkflsdjlkfjlksdjf: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x bad-commands -ex "info source": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x bad-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands -ex "set not-a-thing 4": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands -x bad-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch: spawn
new UNRESOLVED: gdb.base/command-line-input.exp: print 1\\n + 2
new UNRESOLVED: gdb.base/command-line-input.exp: print 1\\n2
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: cmd complete ""
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: set max-completions 1
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: show editing
new UNRESOLVED: gdb.base/complete-empty.exp: show editing
new UNRESOLVED: gdb.base/default.exp:
new UNRESOLVED: gdb.base/default.exp: add-symbol-file
new UNRESOLVED: gdb.base/default.exp: append
new UNRESOLVED: gdb.base/default.exp: append binary
new UNRESOLVED: gdb.base/default.exp: append binary memory
new UNRESOLVED: gdb.base/default.exp: append binary value
new UNRESOLVED: gdb.base/default.exp: append memory
new UNRESOLVED: gdb.base/default.exp: append value
new UNRESOLVED: gdb.base/default.exp: call
new UNRESOLVED: gdb.base/default.exp: catch
new UNRESOLVED: gdb.base/default.exp: cd
new UNRESOLVED: gdb.base/default.exp: check if python 3
new UNRESOLVED: gdb.base/default.exp: clear
new UNRESOLVED: gdb.base/default.exp: commands
new UNRESOLVED: gdb.base/default.exp: condition
new UNRESOLVED: gdb.base/default.exp: continue
new UNRESOLVED: gdb.base/default.exp: continue "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: core-file
new UNRESOLVED: gdb.base/default.exp: define
new UNRESOLVED: gdb.base/default.exp: delete
new UNRESOLVED: gdb.base/default.exp: delete "d" abbreviation
new UNRESOLVED: gdb.base/default.exp: delete breakpoints
new UNRESOLVED: gdb.base/default.exp: delete display prompt
new UNRESOLVED: gdb.base/default.exp: detach
new UNRESOLVED: gdb.base/default.exp: directory prompt
new UNRESOLVED: gdb.base/default.exp: disable
new UNRESOLVED: gdb.base/default.exp: disable "dis" abbreviation
new UNRESOLVED: gdb.base/default.exp: disable "disa" abbreviation
new UNRESOLVED: gdb.base/default.exp: disable breakpoints
new UNRESOLVED: gdb.base/default.exp: disable display
new UNRESOLVED: gdb.base/default.exp: disassemble
new UNRESOLVED: gdb.base/default.exp: display
new UNRESOLVED: gdb.base/default.exp: do
new UNRESOLVED: gdb.base/default.exp: document
new UNRESOLVED: gdb.base/default.exp: down
new UNRESOLVED: gdb.base/default.exp: down-silently
new UNRESOLVED: gdb.base/default.exp: dump
new UNRESOLVED: gdb.base/default.exp: dump binary
new UNRESOLVED: gdb.base/default.exp: dump binary memory
new UNRESOLVED: gdb.base/default.exp: dump binary value
new UNRESOLVED: gdb.base/default.exp: dump ihex
new UNRESOLVED: gdb.base/default.exp: dump ihex memory
new UNRESOLVED: gdb.base/default.exp: dump ihex value
new UNRESOLVED: gdb.base/default.exp: dump memory
new UNRESOLVED: gdb.base/default.exp: dump srec
new UNRESOLVED: gdb.base/default.exp: dump srec memory
new UNRESOLVED: gdb.base/default.exp: dump srec value
new UNRESOLVED: gdb.base/default.exp: dump tekhex
new UNRESOLVED: gdb.base/default.exp: dump tekhex memory
new UNRESOLVED: gdb.base/default.exp: dump tekhex value
new UNRESOLVED: gdb.base/default.exp: dump value
new UNRESOLVED: gdb.base/default.exp: echo
new UNRESOLVED: gdb.base/default.exp: enable
new UNRESOLVED: gdb.base/default.exp: enable breakpoints
new UNRESOLVED: gdb.base/default.exp: enable breakpoints delete
new UNRESOLVED: gdb.base/default.exp: enable breakpoints once
new UNRESOLVED: gdb.base/default.exp: enable delete
new UNRESOLVED: gdb.base/default.exp: enable display
new UNRESOLVED: gdb.base/default.exp: enable once
new UNRESOLVED: gdb.base/default.exp: fg
new UNRESOLVED: gdb.base/default.exp: finish
new UNRESOLVED: gdb.base/default.exp: forward-search
new UNRESOLVED: gdb.base/default.exp: frame
new UNRESOLVED: gdb.base/default.exp: frame "f" abbreviation
new UNRESOLVED: gdb.base/default.exp: gcore
new UNRESOLVED: gdb.base/default.exp: generate-core-file
new UNRESOLVED: gdb.base/default.exp: handle
new UNRESOLVED: gdb.base/default.exp: help
new UNRESOLVED: gdb.base/default.exp: help "h" abbreviation
new UNRESOLVED: gdb.base/default.exp: ignore
new UNRESOLVED: gdb.base/default.exp: info
new UNRESOLVED: gdb.base/default.exp: info "i" abbreviation
new UNRESOLVED: gdb.base/default.exp: info address
new UNRESOLVED: gdb.base/default.exp: info all-registers
new UNRESOLVED: gdb.base/default.exp: info args
new UNRESOLVED: gdb.base/default.exp: info bogus-gdb-command
new UNRESOLVED: gdb.base/default.exp: info breakpoints
new UNRESOLVED: gdb.base/default.exp: info copying
new UNRESOLVED: gdb.base/default.exp: info display
new UNRESOLVED: gdb.base/default.exp: info files
new UNRESOLVED: gdb.base/default.exp: info float
new UNRESOLVED: gdb.base/default.exp: info frame
new UNRESOLVED: gdb.base/default.exp: info frame "f" abbreviation
new UNRESOLVED: gdb.base/default.exp: info functions
new UNRESOLVED: gdb.base/default.exp: info locals
new UNRESOLVED: gdb.base/default.exp: info program
new UNRESOLVED: gdb.base/default.exp: info registers
new UNRESOLVED: gdb.base/default.exp: info set
new UNRESOLVED: gdb.base/default.exp: info source
new UNRESOLVED: gdb.base/default.exp: info sources
new UNRESOLVED: gdb.base/default.exp: info stack
new UNRESOLVED: gdb.base/default.exp: info stack "s" abbreviation
new UNRESOLVED: gdb.base/default.exp: info symbol
new UNRESOLVED: gdb.base/default.exp: info target
new UNRESOLVED: gdb.base/default.exp: info terminal
new UNRESOLVED: gdb.base/default.exp: info threads
new UNRESOLVED: gdb.base/default.exp: info types
new UNRESOLVED: gdb.base/default.exp: info variables
new UNRESOLVED: gdb.base/default.exp: info vector
new UNRESOLVED: gdb.base/default.exp: info warranty
new UNRESOLVED: gdb.base/default.exp: info watchpoints
new UNRESOLVED: gdb.base/default.exp: inspect
new UNRESOLVED: gdb.base/default.exp: jump
new UNRESOLVED: gdb.base/default.exp: kill
new UNRESOLVED: gdb.base/default.exp: list
new UNRESOLVED: gdb.base/default.exp: list "l" abbreviation
new UNRESOLVED: gdb.base/default.exp: load
new UNRESOLVED: gdb.base/default.exp: next
new UNRESOLVED: gdb.base/default.exp: next "n" abbreviation
new UNRESOLVED: gdb.base/default.exp: nexti
new UNRESOLVED: gdb.base/default.exp: nexti "ni" abbreviation
new UNRESOLVED: gdb.base/default.exp: output
new UNRESOLVED: gdb.base/default.exp: overlay
new UNRESOLVED: gdb.base/default.exp: overlay auto
new UNRESOLVED: gdb.base/default.exp: overlay list
new UNRESOLVED: gdb.base/default.exp: overlay manual #1
new UNRESOLVED: gdb.base/default.exp: overlay manual #2
new UNRESOLVED: gdb.base/default.exp: overlay map #1
new UNRESOLVED: gdb.base/default.exp: overlay map #2
new UNRESOLVED: gdb.base/default.exp: overlay off
new UNRESOLVED: gdb.base/default.exp: overlay on
new UNRESOLVED: gdb.base/default.exp: overlay unmap #1
new UNRESOLVED: gdb.base/default.exp: overlay unmap #2
new UNRESOLVED: gdb.base/default.exp: print
new UNRESOLVED: gdb.base/default.exp: print "p" abbreviation
new UNRESOLVED: gdb.base/default.exp: printf
new UNRESOLVED: gdb.base/default.exp: ptype
new UNRESOLVED: gdb.base/default.exp: pwd
new UNRESOLVED: gdb.base/default.exp: rbreak
new UNRESOLVED: gdb.base/default.exp: restore
new UNRESOLVED: gdb.base/default.exp: return
new UNRESOLVED: gdb.base/default.exp: reverse-search
new UNRESOLVED: gdb.base/default.exp: search
new UNRESOLVED: gdb.base/default.exp: section
new UNRESOLVED: gdb.base/default.exp: set
new UNRESOLVED: gdb.base/default.exp: set annotate
new UNRESOLVED: gdb.base/default.exp: set args
new UNRESOLVED: gdb.base/default.exp: set check "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check "ch" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check "check" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check range
new UNRESOLVED: gdb.base/default.exp: set check type
new UNRESOLVED: gdb.base/default.exp: set complaints
new UNRESOLVED: gdb.base/default.exp: set confirm
new UNRESOLVED: gdb.base/default.exp: set environment
new UNRESOLVED: gdb.base/default.exp: set height
new UNRESOLVED: gdb.base/default.exp: set history
new UNRESOLVED: gdb.base/default.exp: set history expansion
new UNRESOLVED: gdb.base/default.exp: set history filename
new UNRESOLVED: gdb.base/default.exp: set history save
new UNRESOLVED: gdb.base/default.exp: set history save off
new UNRESOLVED: gdb.base/default.exp: set history size
new UNRESOLVED: gdb.base/default.exp: set language
new UNRESOLVED: gdb.base/default.exp: set listsize
new UNRESOLVED: gdb.base/default.exp: set print
new UNRESOLVED: gdb.base/default.exp: set print "p" abbreviation
new UNRESOLVED: gdb.base/default.exp: set print "pr" abbreviation
new UNRESOLVED: gdb.base/default.exp: set print address
new UNRESOLVED: gdb.base/default.exp: set print array
new UNRESOLVED: gdb.base/default.exp: set print asm-demangle
new UNRESOLVED: gdb.base/default.exp: set print demangle
new UNRESOLVED: gdb.base/default.exp: set print elements
new UNRESOLVED: gdb.base/default.exp: set print object
new UNRESOLVED: gdb.base/default.exp: set print pretty
new UNRESOLVED: gdb.base/default.exp: set print sevenbit-strings
new UNRESOLVED: gdb.base/default.exp: set print union
new UNRESOLVED: gdb.base/default.exp: set print vtbl
new UNRESOLVED: gdb.base/default.exp: set radix
new UNRESOLVED: gdb.base/default.exp: set the history filename
new UNRESOLVED: gdb.base/default.exp: set variable
new UNRESOLVED: gdb.base/default.exp: set verbose
new UNRESOLVED: gdb.base/default.exp: set width
new UNRESOLVED: gdb.base/default.exp: set write
new UNRESOLVED: gdb.base/default.exp: shell echo Hi dad!
new UNRESOLVED: gdb.base/default.exp: show
new UNRESOLVED: gdb.base/default.exp: show annotate
new UNRESOLVED: gdb.base/default.exp: show args
new UNRESOLVED: gdb.base/default.exp: show check "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check "ch" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check "check" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check range
new UNRESOLVED: gdb.base/default.exp: show check type
new UNRESOLVED: gdb.base/default.exp: show commands
new UNRESOLVED: gdb.base/default.exp: show complaints
new UNRESOLVED: gdb.base/default.exp: show confirm
new UNRESOLVED: gdb.base/default.exp: show convenience
new UNRESOLVED: gdb.base/default.exp: show directories
new UNRESOLVED: gdb.base/default.exp: show editing
new UNRESOLVED: gdb.base/default.exp: show height
new UNRESOLVED: gdb.base/default.exp: show history
new UNRESOLVED: gdb.base/default.exp: show history expansion
new UNRESOLVED: gdb.base/default.exp: show history filename
new UNRESOLVED: gdb.base/default.exp: show history save
new UNRESOLVED: gdb.base/default.exp: show history size
new UNRESOLVED: gdb.base/default.exp: show language
new UNRESOLVED: gdb.base/default.exp: show listsize
new UNRESOLVED: gdb.base/default.exp: show p
new UNRESOLVED: gdb.base/default.exp: show paths
new UNRESOLVED: gdb.base/default.exp: show pr
new UNRESOLVED: gdb.base/default.exp: show print
new UNRESOLVED: gdb.base/default.exp: show print address
new UNRESOLVED: gdb.base/default.exp: show print array
new UNRESOLVED: gdb.base/default.exp: show print asm-demangle
new UNRESOLVED: gdb.base/default.exp: show print demangle
new UNRESOLVED: gdb.base/default.exp: show print elements
new UNRESOLVED: gdb.base/default.exp: show print object
new UNRESOLVED: gdb.base/default.exp: show print pretty
new UNRESOLVED: gdb.base/default.exp: show print sevenbit-strings
new UNRESOLVED: gdb.base/default.exp: show print union
new UNRESOLVED: gdb.base/default.exp: show print vtbl
new UNRESOLVED: gdb.base/default.exp: show prompt
new UNRESOLVED: gdb.base/default.exp: show radix
new UNRESOLVED: gdb.base/default.exp: show user
new UNRESOLVED: gdb.base/default.exp: show values
new UNRESOLVED: gdb.base/default.exp: show verbose
new UNRESOLVED: gdb.base/default.exp: show version
new UNRESOLVED: gdb.base/default.exp: show width
new UNRESOLVED: gdb.base/default.exp: show write
new UNRESOLVED: gdb.base/default.exp: signal
new UNRESOLVED: gdb.base/default.exp: source
new UNRESOLVED: gdb.base/default.exp: step "s" abbreviation #1
new UNRESOLVED: gdb.base/default.exp: step "s" abbreviation #2
new UNRESOLVED: gdb.base/default.exp: step #1
new UNRESOLVED: gdb.base/default.exp: step #2
new UNRESOLVED: gdb.base/default.exp: stepi
new UNRESOLVED: gdb.base/default.exp: stepi "si" abbreviation
new UNRESOLVED: gdb.base/default.exp: symbol-file
new UNRESOLVED: gdb.base/default.exp: target
new UNRESOLVED: gdb.base/default.exp: target native
new UNRESOLVED: gdb.base/default.exp: tbreak
new UNRESOLVED: gdb.base/default.exp: thread
new UNRESOLVED: gdb.base/default.exp: thread apply
new UNRESOLVED: gdb.base/default.exp: thread find
new UNRESOLVED: gdb.base/default.exp: thread name
new UNRESOLVED: gdb.base/default.exp: undisplay prompt
new UNRESOLVED: gdb.base/default.exp: unset
new UNRESOLVED: gdb.base/default.exp: unset environment prompt
new UNRESOLVED: gdb.base/default.exp: until
new UNRESOLVED: gdb.base/default.exp: until "u" abbreviation
new UNRESOLVED: gdb.base/default.exp: up-silently
new UNRESOLVED: gdb.base/default.exp: verify python support
new UNRESOLVED: gdb.base/default.exp: watch
new UNRESOLVED: gdb.base/default.exp: whatis
new UNRESOLVED: gdb.base/default.exp: where
new UNRESOLVED: gdb.base/default.exp: x
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567890123456789012345678901234dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567890123456dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567890123456.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567890123456789012345678901234.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567890123456789012345678901234dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567890123456dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E384dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E6144dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E96df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2147483648ll
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2147483648ull
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2ll
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 4294967296ull
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd < 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd < 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df + 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df + 1.2f
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df < 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df < 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df > 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl < 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl < 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl > 2
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd * 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd + 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd - 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd / 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df * 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df + 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df - 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df / 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl * 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl + 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl - 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl / 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567890123456.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567890123456789012345678901234.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 + 1.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 > 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 > 3.1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.1dd + 2.7df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.1df + 2.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.3dd + 2.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.3dl + 2.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.6df + 2.7dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.6dl + 2.7df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 3 + 2.1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 1.2df + 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2 + 1.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dd + 2.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dd + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dl + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 3 + 2.1dl
new UNRESOLVED: gdb.base/dprintf-non-stop.exp: can't run to main
new UNRESOLVED: gdb.base/empty_exe.exp: file ''
new UNRESOLVED: gdb.base/empty_exe.exp: print 1
new UNRESOLVED: gdb.base/endian.exp: auto target endianness
new UNRESOLVED: gdb.base/endian.exp: auto target endianness big
new UNRESOLVED: gdb.base/endian.exp: auto target endianness little
new UNRESOLVED: gdb.base/endian.exp: default target endianness
new UNRESOLVED: gdb.base/endian.exp: get target endianness
new FAIL: gdb.base/endian.exp: override auto target endianness big
new FAIL: gdb.base/endian.exp: override auto target endianness little
new UNRESOLVED: gdb.base/endian.exp: override target endianness big
new FAIL: gdb.base/endian.exp: override target endianness little
new UNRESOLVED: gdb.base/endian.exp: previously big default executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously big default no executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously little default executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously little default no executable endianness
new UNRESOLVED: gdb.base/endian.exp: set target endianness
new UNRESOLVED: gdb.base/endian.exp: set target endianness big
new UNRESOLVED: gdb.base/endian.exp: set target endianness little
new UNRESOLVED: gdb.base/environ.exp: all environment variables have been unset
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable previously undefined
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable using = syntax
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable with trailing equals
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable with trailing whitespace
new UNRESOLVED: gdb.base/environ.exp: confirm unset environment variable worked
new UNRESOLVED: gdb.base/environ.exp: set environment variable
new UNRESOLVED: gdb.base/environ.exp: set environment variable previously undefined
new UNRESOLVED: gdb.base/environ.exp: set environment variable to null value
new UNRESOLVED: gdb.base/environ.exp: set environment variable using = syntax
new UNRESOLVED: gdb.base/environ.exp: set environment variable with trailing equals
new UNRESOLVED: gdb.base/environ.exp: set environment variable with trailing whitespace
new UNRESOLVED: gdb.base/environ.exp: set environment without arguments
new UNRESOLVED: gdb.base/environ.exp: set environment without variable name
new UNRESOLVED: gdb.base/environ.exp: set path works properly
new UNRESOLVED: gdb.base/environ.exp: show environment works
new UNRESOLVED: gdb.base/environ.exp: show non-existent environment variable
new UNRESOLVED: gdb.base/environ.exp: show null environment variable
new UNRESOLVED: gdb.base/environ.exp: show paths works properly
new UNRESOLVED: gdb.base/environ.exp: unset all environment variables
new UNRESOLVED: gdb.base/environ.exp: unset environment variable
new UNRESOLVED: gdb.base/eval.exp: first eval.
new UNRESOLVED: gdb.base/eval.exp: initialize $a.
new UNRESOLVED: gdb.base/eval.exp: second eval.
new UNRESOLVED: gdb.base/gdb1056.exp: print 1/0
new UNRESOLVED: gdb.base/gdb1056.exp: test unsigned division by zero
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize= 20 : show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize= 20 : show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5ab: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5ab: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=0: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=0: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=10zab: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=10zab: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=20: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=20: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=50: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=50: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=99999999999999999999999999999999999: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=99999999999999999999999999999999999: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=not_an_integer: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=not_an_integer: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=1000: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=1000: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=foo: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=foo: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/zero: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/zero: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: appending: server show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: creating: server show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: print 1
new UNRESOLVED: gdb.base/help.exp: apropos \
new UNRESOLVED: gdb.base/help.exp: apropos apropos
new UNRESOLVED: gdb.base/help.exp: apropos handle signal
new UNRESOLVED: gdb.base/help.exp: disable pagination
new UNRESOLVED: gdb.base/help.exp: help aliases
new UNRESOLVED: gdb.base/help.exp: help backtrace
new UNRESOLVED: gdb.base/help.exp: help backtrace "bt" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "b" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "br" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "bre" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "brea" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "break" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoints
new UNRESOLVED: gdb.base/help.exp: help commands
new UNRESOLVED: gdb.base/help.exp: help data
new UNRESOLVED: gdb.base/help.exp: help delete
new UNRESOLVED: gdb.base/help.exp: help delete "d" abbreviation
new UNRESOLVED: gdb.base/help.exp: help files
new UNRESOLVED: gdb.base/help.exp: help gotcha
new UNRESOLVED: gdb.base/help.exp: help help
new UNRESOLVED: gdb.base/help.exp: help help "h" abbreviation
new UNRESOLVED: gdb.base/help.exp: help info bogus-gdb-command
new UNRESOLVED: gdb.base/help.exp: help internals
new UNRESOLVED: gdb.base/help.exp: help obscure
new UNRESOLVED: gdb.base/help.exp: help running
new UNRESOLVED: gdb.base/help.exp: help show commands
new UNRESOLVED: gdb.base/help.exp: help show confirm
new UNRESOLVED: gdb.base/help.exp: help show copying
new UNRESOLVED: gdb.base/help.exp: help show warranty
new UNRESOLVED: gdb.base/help.exp: help stack
new UNRESOLVED: gdb.base/help.exp: help status
new UNRESOLVED: gdb.base/help.exp: help support
new UNRESOLVED: gdb.base/help.exp: help tracepoints
new UNRESOLVED: gdb.base/help.exp: help user-defined
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: set history remove-duplicates 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: set history remove-duplicates 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: set history remove-duplicates 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 3
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 4
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 3
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 4
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: set history remove-duplicates unlimited
new UNRESOLVED: gdb.base/history-duplicates.exp: show editing
new UNRESOLVED: gdb.base/history-duplicates.exp: show history remove-duplicates
new UNRESOLVED: gdb.base/ifelse.exp: call original define
new UNRESOLVED: gdb.base/ifelse.exp: call replacement define
new UNRESOLVED: gdb.base/ifelse.exp: create define with empty else
new UNRESOLVED: gdb.base/ifelse.exp: if 0 .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 0 with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 1 .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 1 with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #1
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #2
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #3
new UNRESOLVED: gdb.base/ifelse.exp: replace define with if .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: set confirm off
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tc-td: 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-tc-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ts: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tf: 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-tf-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-ts: 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-ti-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tl-td: 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-tl-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-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-td: 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-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tld: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tll-tf: 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-td: 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-ts-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ts: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tc-td: 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-tc-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-ts: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tf: 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-tf-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-ts: 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-ti-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tl-td: 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-tl-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-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-td: 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-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tld: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tll-tf: 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-td: 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-ts-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ts: failed to compile
new FAIL: gdb.base/info-os.exp: cannot compile test program
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode on
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode on
new UNRESOLVED: gdb.base/interact.exp: show interactive-mode
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode on
new UNRESOLVED: gdb.base/multi-line-starts-subshell.exp: gdb input still works
new UNRESOLVED: gdb.base/multi-line-starts-subshell.exp: spawn subshell from multi-line
new UNRESOLVED: gdb.base/osabi.exp: set debug arch 1
new UNRESOLVED: gdb.base/osabi.exp: set osabi none
new UNRESOLVED: gdb.base/page.exp: paged count
new UNRESOLVED: gdb.base/page.exp: paged count for interrupt
new UNRESOLVED: gdb.base/page.exp: paged count remainder
new UNRESOLVED: gdb.base/page.exp: paged help
new UNRESOLVED: gdb.base/page.exp: pagination is off
new UNRESOLVED: gdb.base/page.exp: pagination is on
new UNRESOLVED: gdb.base/page.exp: q
new UNRESOLVED: gdb.base/page.exp: quit while paging
new UNRESOLVED: gdb.base/page.exp: set editing off
new UNRESOLVED: gdb.base/page.exp: set height -1
new UNRESOLVED: gdb.base/page.exp: set height 10
new UNRESOLVED: gdb.base/page.exp: set height 5
new UNRESOLVED: gdb.base/page.exp: set pagination off
new UNRESOLVED: gdb.base/page.exp: set pagination on
new UNRESOLVED: gdb.base/page.exp: set width -1
new UNRESOLVED: gdb.base/page.exp: set width 30
new UNRESOLVED: gdb.base/page.exp: size=0: set height 0
new UNRESOLVED: gdb.base/page.exp: size=0: set height 200
new UNRESOLVED: gdb.base/page.exp: size=0: set width 0
new UNRESOLVED: gdb.base/page.exp: size=0: set width 200
new UNRESOLVED: gdb.base/page.exp: size=0: show height
new UNRESOLVED: gdb.base/page.exp: size=0: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=0: show width
new UNRESOLVED: gdb.base/page.exp: size=0: show width unlimited
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set height 0x80000000
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set height 200
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set width 0x80000000
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set width 200
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show height
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show width
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show width unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set height 200
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set height unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set width 200
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set width unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show height
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show width
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show width unlimited
new UNRESOLVED: gdb.base/page.exp: unpaged help
new UNRESOLVED: gdb.base/quit.exp: quit with expression
new UNRESOLVED: gdb.base/quit.exp: quit with syntax error
new UNRESOLVED: gdb.base/radix.exp: Output radix unchanged after rejecting 0
new UNRESOLVED: gdb.base/radix.exp: Reject input-radix 0
new UNRESOLVED: gdb.base/radix.exp: Reject input-radix 1
new UNRESOLVED: gdb.base/radix.exp: Reject output-radix 0
new UNRESOLVED: gdb.base/radix.exp: Reject output-radix 1
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 10
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 16
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 2
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 3
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 8
new UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 10
new UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 16
new UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 8
new UNRESOLVED: gdb.base/radix.exp: input radix unchanged after rejecting 0
new UNRESOLVED: gdb.base/radix.exp: input radix unchanged after rejecting 1
new UNRESOLVED: gdb.base/radix.exp: output radix unchanged after rejecting 1
new UNRESOLVED: gdb.base/radix.exp: output radix unchanged after rejection through set radix command
new UNRESOLVED: gdb.base/radix.exp: print
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -100; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -256; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -4; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -64; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -9; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -101; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -10; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -257; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -5; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -65; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -10; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -16; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -2; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -3; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -8; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -11; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -17; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -3; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -4; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -9; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -12; expect -12; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -20; expect -16; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -2; expect Invalid number "2"\.; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -9; expect Invalid number "9".; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 010; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 17; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect f; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 100; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 100; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 144; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 256; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 4; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 64; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 64; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 9; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 10101; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 21; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 4161; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 65793; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 91; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 101; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 10; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 257; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 5; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 65; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 10; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 10; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 12; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 16; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 2; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 3; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 8; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10; expect a; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 11; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 17; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 3; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 4; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 9; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 14; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 24; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20; expect 16; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20; expect 6; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 2; expect 2; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 30; expect Invalid number "30"\.; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 3; expect Invalid number "3"\.; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 4; expect Invalid number "4"\.; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 8; expect Invalid number "8".; input radix 8
new UNRESOLVED: gdb.base/radix.exp: reset radices
new UNRESOLVED: gdb.base/radix.exp: set input-radix 10
new UNRESOLVED: gdb.base/radix.exp: set input-radix 16
new UNRESOLVED: gdb.base/radix.exp: set input-radix 2
new UNRESOLVED: gdb.base/radix.exp: set input-radix 3
new UNRESOLVED: gdb.base/radix.exp: set input-radix 8
new UNRESOLVED: gdb.base/radix.exp: set output-radix 10
new UNRESOLVED: gdb.base/radix.exp: set output-radix 16
new UNRESOLVED: gdb.base/radix.exp: set output-radix 8
new UNRESOLVED: gdb.base/radix.exp: set radix 7 rejected
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 10
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 16
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 2
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 3
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 8
new UNRESOLVED: gdb.base/radix.exp: show radix, output radix 10
new UNRESOLVED: gdb.base/radix.exp: show radix, output radix 16
new UNRESOLVED: gdb.base/radix.exp: show radix, output radix 8
new UNRESOLVED: gdb.base/readline.exp: Simple operate-and-get-next - send p 1
new UNRESOLVED: gdb.base/readline.exp: arrow keys with secondary prompt
new UNRESOLVED: gdb.base/readline.exp: operate-and-get-next with secondary prompt - send if 1 > 0
new UNRESOLVED: gdb.base/readline.exp: print 42
new UNRESOLVED: gdb.base/readline.exp: show editing
new UNRESOLVED: gdb.base/remotetimeout.exp: correct remotetimeout printed
new UNRESOLVED: gdb.base/shell.exp: ! echo foo
new UNRESOLVED: gdb.base/shell.exp: ! exit 0
new UNRESOLVED: gdb.base/shell.exp: ! exit 1
new UNRESOLVED: gdb.base/shell.exp: ! kill -2 $$
new UNRESOLVED: gdb.base/shell.exp: !echo foo
new UNRESOLVED: gdb.base/shell.exp: -d spaces value missing
new UNRESOLVED: gdb.base/shell.exp: -d value missing
new UNRESOLVED: gdb.base/shell.exp: DELIM delimiter missing
new UNRESOLVED: gdb.base/shell.exp: SHELL_COMMAND missing
new UNRESOLVED: gdb.base/shell.exp: SHELL_COMMAND missing with delimiter
new UNRESOLVED: gdb.base/shell.exp: all missing
new UNRESOLVED: gdb.base/shell.exp: alternate 1char delim
new UNRESOLVED: gdb.base/shell.exp: alternate 1char delim, no space
new UNRESOLVED: gdb.base/shell.exp: alternate 3char delim
new UNRESOLVED: gdb.base/shell.exp: alternate 3char delim, no space
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe print 1 | "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| print 1 | "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|print 1 | "
new UNRESOLVED: gdb.base/shell.exp: define foo
new UNRESOLVED: gdb.base/shell.exp: delimiter missing due to missing space
new UNRESOLVED: gdb.base/shell.exp: double pipe
new UNRESOLVED: gdb.base/shell.exp: double pipe, pipe char
new UNRESOLVED: gdb.base/shell.exp: echo coucou
new UNRESOLVED: gdb.base/shell.exp: enter commands
new UNRESOLVED: gdb.base/shell.exp: no space around pipe char
new UNRESOLVED: gdb.base/shell.exp: pipe fail exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe fail exitsignal
new UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitsignal
new UNRESOLVED: gdb.base/shell.exp: pipe success exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe success exitsignal
new UNRESOLVED: gdb.base/shell.exp: repeat previous command
new UNRESOLVED: gdb.base/shell.exp: set max-completions 0
new UNRESOLVED: gdb.base/shell.exp: set max-completions 2
new UNRESOLVED: gdb.base/shell.exp: shell echo foo
new UNRESOLVED: gdb.base/shell.exp: shell fail exitcode
new UNRESOLVED: gdb.base/shell.exp: shell fail exitsignal
new UNRESOLVED: gdb.base/shell.exp: shell interrupt exitcode
new UNRESOLVED: gdb.base/shell.exp: shell interrupt exitsignal
new UNRESOLVED: gdb.base/shell.exp: shell success exitcode
new UNRESOLVED: gdb.base/shell.exp: shell success exitsignal
new UNRESOLVED: gdb.base/shell.exp: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
new UNRESOLVED: gdb.base/shell.exp: simple pipe
new UNRESOLVED: gdb.base/shell.exp: simple pipe with arg
new UNRESOLVED: gdb.base/shell.exp: | delimiter missing
new UNRESOLVED: gdb.base/shell.exp: |p 123| exit 0
new UNRESOLVED: gdb.base/shell.exp: |p 123| exit 1
new UNRESOLVED: gdb.base/shell.exp: |p 123| kill -2 $$
new UNRESOLVED: gdb.base/source-dir.exp: directory /nOtExStInG/a /nOtExStInG/b /nOtExStInG/c
new UNRESOLVED: gdb.base/source-dir.exp: directory /nOtExStInG/b /nOtExStInG/d /nOtExStInG/c
new UNRESOLVED: gdb.base/source.exp: script contains error
new UNRESOLVED: gdb.base/source.exp: set search directories
new UNRESOLVED: gdb.base/source.exp: source -s
new UNRESOLVED: gdb.base/source.exp: source -s -v
new UNRESOLVED: gdb.base/source.exp: source -v
new UNRESOLVED: gdb.base/source.exp: source -v -s
new UNRESOLVED: gdb.base/source.exp: source after -v
new UNRESOLVED: gdb.base/source.exp: source for-sure-nonexistant-file
new UNRESOLVED: gdb.base/source.exp: source source-nofile.gdb
new UNRESOLVED: gdb.base/step-over-syscall.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/step-over-syscall.exp: run to main
new UNRESOLVED: gdb.base/subst.exp: add depuis -> vers substitution rule
new UNRESOLVED: gdb.base/subst.exp: add from -> to substitution rule
new UNRESOLVED: gdb.base/subst.exp: add from1 -> to1 substitution rule
new UNRESOLVED: gdb.base/subst.exp: add source -> destination substitution rule
new UNRESOLVED: gdb.base/subst.exp: add substitution rule to empty string
new UNRESOLVED: gdb.base/subst.exp: deactivate GDB's confirmation interface
new UNRESOLVED: gdb.base/subst.exp: remove all remaining substitution rules
new UNRESOLVED: gdb.base/subst.exp: remove default substitution rules
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, first argument is empty string
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, too few arguments
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, too many arguments
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after all remaining rules removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after depuis rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after empty rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after from rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path depuis, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, after unsetting it
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from/path, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from_a_bad_path, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path garbage, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: show substitute-path, too many arguments
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path depuis
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path empty
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from after the rule was removed
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path, too many arguments
new UNRESOLVED: gdb.base/trace-commands.exp: define user command
new UNRESOLVED: gdb.base/trace-commands.exp: depth resets on error part 1
new UNRESOLVED: gdb.base/trace-commands.exp: depth resets on error part 2
new UNRESOLVED: gdb.base/trace-commands.exp: nested trace-commands test
new UNRESOLVED: gdb.base/trace-commands.exp: nested trace-commands test with source
new UNRESOLVED: gdb.base/trace-commands.exp: set trace-commands
new UNRESOLVED: gdb.base/trace-commands.exp: show trace-commands says off
new UNRESOLVED: gdb.base/trace-commands.exp: show trace-commands says on
new UNRESOLVED: gdb.base/trace-commands.exp: simple trace-commands test
new UNRESOLVED: gdb.base/trace-commands.exp: source -v
new UNRESOLVED: gdb.base/warning.exp: echo 23\n
new UNRESOLVED: gdb.btrace/cpu.exp: default cpu
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu auto
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/1
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0x0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo/bar
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu none
new UNRESOLVED: gdb.btrace/cpu.exp: set record
new UNRESOLVED: gdb.btrace/cpu.exp: set record btrace
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu auto
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/1
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0x0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo/bar
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu none
new UNRESOLVED: gdb.cp/debug-expr.exp: print dynamic_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: print reinterpret_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: print static_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: set debug expression 1
new UNRESOLVED: gdb.cp/debug-expr.exp: set language c++
new UNRESOLVED: gdb.cp/demangle.exp: auto: check demangling style
new UNRESOLVED: gdb.cp/demangle.exp: auto: set demangle-style
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c -- _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c++ -- _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c++ _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l garbage xyzdje
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z13BitPatterntoaOK10BitPatternccc
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z31DrawDestinationTransformedImageP7_XImageiiS0_iimjiijmmP4_XGCOK13ivTransformeriiii
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z3argOK7Complex
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN11RelateManip6EffectEO7ivEvent
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN20DisplayList_IteratorC4EO11DisplayList
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN3fooC4EOS_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN3fooC4EiOS_iS0_iS0_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE3PixC4EOKS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE7elementC2EOKS0_PS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE7elementC4EOKS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityEC4EOKS1_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4PixXI11VHDLLibrary14VHDLLibraryRep4ListI10VHDLEntityEEC2EOKS5_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN7ivWorldC2EPKcOiPPcPK12ivOptionDescPK14ivPropertyData
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN8TextCode14CoreConstDeclsEO7ostream
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic: gnu-v3: check demangling style
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic: gnu-v3: set demangle-style
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK11VHDLLibrary5nextEEO4PixXIS_14VHDLLibraryRep4ListI10VHDLEntityEE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK4ListI10VHDLEntityE4nextEONS1_3PixE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK4ListI10VHDLEntityEclEOKNS1_3PixE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOK10BitPattern
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOK12BitSubStringi
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOKS_
new UNRESOLVED: gdb.cp/demangle.exp: set language c++
new UNRESOLVED: gdb.cp/demangle.exp: set language unknown
new UNRESOLVED: gdb.cp/demangle.exp: set width 0
new UNRESOLVED: gdb.cp/maint.exp: help maint cp
new UNRESOLVED: gdb.cp/maint.exp: help maint cp first_component
new UNRESOLVED: gdb.cp/maint.exp: help maint cp namespace
new UNRESOLVED: gdb.cp/maint.exp: help maintenance cplus
new UNRESOLVED: gdb.cp/maint.exp: maint cp
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component C<A>::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component C<std::basic_streambuf<wchar_t,std::char_traits<wchar_t> > >::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component T<Cooperator>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component bool operator<<char>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo::bar::baz
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<&
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<&operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int operator<< <char>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator  ->
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator ->
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator>>
new UNRESOLVED: gdb.cp/maint.exp: maint cp namespace
new UNRESOLVED: gdb.cp/maint.exp: set complaints 1000
new UNRESOLVED: gdb.cp/punctuator.exp: print
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 1
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 2
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 3
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 1
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 2
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 3
new UNRESOLVED: gdb.cp/punctuator.exp: set lang c++
new UNRESOLVED: gdb.cp/ref-params.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/ref-params.exp: print value of Child& in f2
new UNRESOLVED: gdb.cp/ref-params.exp: print value of Parent& in f1
new UNRESOLVED: gdb.cp/ref-params.exp: print value of a Child in main
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on Child in main
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on Child& in f2
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f2 on
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f2 on Child in main
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print f1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print mf1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print mf2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Child&& in f2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Child&& in f2: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Parent&& in f1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Parent&& in f1: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f1 on
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f1 on Child&& in f2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f2 on
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char16_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char16_t is unsigned
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char32_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char32_t is unsigned
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p L"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p U"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p u"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: set language c++
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: sizeof
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: wchar_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: wchar_t sign
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: char16_t is not built-in
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: char32_t is not built-in
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p L"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p U"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p u"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: set language c
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: wchar_t is not built-in
new UNRESOLVED: gdb.disasm/disassembler-options.exp: set disassembler-options
new UNRESOLVED: gdb.disasm/disassembler-options.exp: set disassembler-options invalid_option_value
new UNRESOLVED: gdb.disasm/disassembler-options.exp: show NULL disassembler-options
new UNRESOLVED: gdb.dlang/watch-loc.exp: disassemble _Dmain
new UNRESOLVED: gdb.dlang/watch-loc.exp: p _Dmain_label - _Dmain
new UNRESOLVED: gdb.dlang/watch-loc.exp: x/2i _Dmain+
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p g_label - g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i g+
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: console: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: console: set print object on
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: disassemble func01
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: disassemble main
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: continue to func01
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: create varobj for ptr
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: get children of var1
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: mi: run to main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: mi: set print object on
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access array member
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access integer member
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access pointer member
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: p func01_label - func01
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: x/2i func01+
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p bar_label - bar
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_cold_label - foo_cold
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_label - foo
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p main_label - main
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble bar
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble baz
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble foo
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble foo_low
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p bar_label - bar
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p baz_label - baz
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p foo_label - foo
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p foo_low_label - foo_low
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i bar+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i baz+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i foo+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i foo_low+
new UNRESOLVED: gdb.dwarf2/dwz.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dwz.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dwz.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/implref-array.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/implref-struct.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i main+
new UNRESOLVED: gdb.linespec/keywords.exp: can't run to main
new UNRESOLVED: gdb.objc/print.exp: set language objective-c
new UNRESOLVED: gdb.pascal/print.exp: set language pascal
new UNRESOLVED: gdb.pascal/types.exp: set language pascal
new UNRESOLVED: gdb.python/py-as-string.exp: couldn't run to main.
new UNRESOLVED: gdb.python/py-completion.exp: check if python 3
new UNRESOLVED: gdb.python/py-completion.exp: discard #1
new UNRESOLVED: gdb.python/py-completion.exp: discard #2
new UNRESOLVED: gdb.python/py-completion.exp: discard #3
new UNRESOLVED: gdb.python/py-completion.exp: discard #4
new UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completel'
new UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit1 c'
new UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit2 c'
new UNRESOLVED: gdb.python/py-completion.exp: load python file
new UNRESOLVED: gdb.python/py-completion.exp: load python file again
new UNRESOLVED: gdb.python/py-completion.exp: show editing
new UNRESOLVED: gdb.python/py-completion.exp: verify python support
new UNRESOLVED: gdb.python/py-error.exp: check if python 3
new UNRESOLVED: gdb.python/py-error.exp: main reached
new UNRESOLVED: gdb.python/py-error.exp: no delayed error
new UNRESOLVED: gdb.python/py-error.exp: set host-charset IBM1047
new UNRESOLVED: gdb.python/py-error.exp: verify python support
new KFAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new UNRESOLVED: gdb.python/py-function.exp: Test GDBError - python
new UNRESOLVED: gdb.python/py-function.exp: Test GdbError.  There should not be a stack trace
new UNRESOLVED: gdb.python/py-function.exp: Test Normal Error - python
new UNRESOLVED: gdb.python/py-function.exp: Test a Runtime error.  There should be a stack trace.
new UNRESOLVED: gdb.python/py-function.exp: call function
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = ada
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = asm
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = auto
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = c
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = c++
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = d
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = fortran
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = go
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = minimal
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = modula-2
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = objective-c
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = opencl
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = pascal
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = rust
new UNRESOLVED: gdb.python/py-function.exp: call yes with &&
new UNRESOLVED: gdb.python/py-function.exp: call yes with ||
new UNRESOLVED: gdb.python/py-function.exp: check if python 3
new UNRESOLVED: gdb.python/py-function.exp: input command-calling function - python
new UNRESOLVED: gdb.python/py-function.exp: input convenience function - python
new UNRESOLVED: gdb.python/py-function.exp: input int-returning function - python
new UNRESOLVED: gdb.python/py-function.exp: input value-returning convenience function - python
new UNRESOLVED: gdb.python/py-function.exp: set language ada
new UNRESOLVED: gdb.python/py-function.exp: set language asm
new UNRESOLVED: gdb.python/py-function.exp: set language auto
new UNRESOLVED: gdb.python/py-function.exp: set language c
new UNRESOLVED: gdb.python/py-function.exp: set language c++
new UNRESOLVED: gdb.python/py-function.exp: set language d
new UNRESOLVED: gdb.python/py-function.exp: set language fortran
new UNRESOLVED: gdb.python/py-function.exp: set language go
new UNRESOLVED: gdb.python/py-function.exp: set language minimal
new UNRESOLVED: gdb.python/py-function.exp: set language modula-2
new UNRESOLVED: gdb.python/py-function.exp: set language objective-c
new UNRESOLVED: gdb.python/py-function.exp: set language opencl
new UNRESOLVED: gdb.python/py-function.exp: set language pascal
new UNRESOLVED: gdb.python/py-function.exp: set language rust
new UNRESOLVED: gdb.python/py-function.exp: set python print-stack full
new UNRESOLVED: gdb.python/py-function.exp: setting a value from a function which executes a command, again.
new UNRESOLVED: gdb.python/py-function.exp: setting a value from a function which executes a command.
new UNRESOLVED: gdb.python/py-function.exp: verify python support
new UNRESOLVED: gdb.python/py-lookup-type.exp: check if python 3
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type CARDINAL using language modula-2
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language c
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language objective-c
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language pascal
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type character using language ada
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type character using language fortran
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type int32 using language go
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type ucent using language d
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type ushort using language opencl
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language ada
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language c
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language d
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language fortran
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language go
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language modula-2
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language objective-c
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language opencl
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language pascal
new UNRESOLVED: gdb.python/py-lookup-type.exp: verify python support
new UNRESOLVED: gdb.python/py-nested-maps.exp: check if python 3
new UNRESOLVED: gdb.python/py-nested-maps.exp: verify python support
new UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER - python
new UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER_UNLIMITED - python
new UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb booleanparameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: Throwing gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: check if python 3
new UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value can be set to -1
new UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value is -1 after setting
new UNRESOLVED: gdb.python/py-parameter.exp: enum gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: file gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: gdb.GdbError does not show Python stack
new UNRESOLVED: gdb.python/py-parameter.exp: python print
new UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -1
new UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -5
new UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER_UNLIMITED.value = -5
new UNRESOLVED: gdb.python/py-parameter.exp: set enum to two
new UNRESOLVED: gdb.python/py-parameter.exp: set invalid enum parameter
new UNRESOLVED: gdb.python/py-parameter.exp: set new file parameter
new UNRESOLVED: gdb.python/py-parameter.exp: set test-file-param
new UNRESOLVED: gdb.python/py-parameter.exp: show initial file value
new UNRESOLVED: gdb.python/py-parameter.exp: show new file value
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter is initial value
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter is new value
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter off
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter on
new UNRESOLVED: gdb.python/py-parameter.exp: test enum parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test file parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test general help
new UNRESOLVED: gdb.python/py-parameter.exp: test new file parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test set help
new UNRESOLVED: gdb.python/py-parameter.exp: test show help
new UNRESOLVED: gdb.python/py-parameter.exp: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: verify python support
new UNRESOLVED: gdb.python/py-prettyprint.exp: check if python 3
new UNRESOLVED: gdb.python/py-prettyprint.exp: verify python support
new UNRESOLVED: gdb.python/py-prompt.exp: check if python 3
new UNRESOLVED: gdb.python/py-prompt.exp: verify python support
new UNRESOLVED: gdb.python/py-value.exp: can't run to main
new UNRESOLVED: gdb.reverse/fstatat-reverse.exp: turn on process record
new UNRESOLVED: gdb.reverse/recvmsg-reverse.exp: turn on process record
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sigall-precsave.exp
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sigall-reverse.exp
new UNRESOLVED: gdb.rust/expr.exp: set language rust
new UNRESOLVED: gdb.rust/expr.exp: set var $something = 27
new FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
new FAIL: gdb.server/unittest.exp: unit tests
new UNRESOLVED: gdb.trace/actions.exp: failed to compile
new UNRESOLVED: gdb.trace/ax.exp: failed to compile
new UNRESOLVED: gdb.trace/deltrace.exp: failed to compile
new UNRESOLVED: gdb.trace/infotrace.exp: failed to compile
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with missing argument
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with too many arguments
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with wrong option
new UNRESOLVED: gdb.trace/packetlen.exp: failed to compile
new UNRESOLVED: gdb.trace/passc-dyn.exp: failed to compile
new UNRESOLVED: gdb.trace/passcount.exp: failed to compile
new UNRESOLVED: gdb.trace/report.exp: failed to compile
new UNRESOLVED: gdb.trace/save-trace.exp: failed to compile
new UNRESOLVED: gdb.trace/tfind.exp: failed to compile
new UNRESOLVED: gdb.trace/tracecmd.exp: failed to compile
new UNRESOLVED: gdb.trace/tsv.exp: failed to compile
new UNRESOLVED: gdb.trace/while-dyn.exp: failed to compile
new UNRESOLVED: gdb.trace/while-stepping.exp: failed to compile
new UNRESOLVED: gdb.tui/completion.exp: verify tui support
new UNRESOLVED: gdb.tui/empty.exp: set tui border-kind ascii
new UNRESOLVED: gdb.tui/empty.exp: src: 80x24: box 1
new UNRESOLVED: gdb.tui/empty.exp: verify tui support
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: correct line breaks
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: set height 2000
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: set pagination on
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: tui enable
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: verify tui support
new UNRESOLVED: gdb.xml/maint_print_struct.exp: printing tdesc with a structure and a bitfield
new UNRESOLVED: gdb.xml/maint_print_struct.exp: setting a new tdesc having only a structure
new UNRESOLVED: gdb.xml/tdesc-arch.exp: architecture XML tests
new UNRESOLVED: gdb.xml/tdesc-arch.exp: read default architecture
new UNRESOLVED: gdb.xml/tdesc-arch.exp: read valid architectures
new UNRESOLVED: gdb.xml/tdesc-errors.exp: set tdesc filename gdb.xml/tdesc-bogus.xml
new UNRESOLVED: gdb.xml/tdesc-errors.exp: set tdesc filename gdb.xml/tdesc-unknown.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: cd to directory holding xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: maintenance print reggroups
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $bitfields
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $extrareg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $flags
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $mixed_flags
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $structreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $structreg.v4
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $uintreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $unionreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $unionreg.v4
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $vecreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc file single-reg.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc filename test-extra-regs.xml - from extra-regs.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc filename test-regs.xml - from core-only.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/bad-include.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/includes.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/loop.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-gdbserver-m64/1f/1ff6de031241c59d0ff9fa01d3c0a4049b0e97c9//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/1f/1ff6de031241c59d0ff9fa01d3c0a4049b0e97c9//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-08 15:52 [binutils-gdb] libctf: actually close bfds we have opened gdb-buildbot
@ 2019-10-08 18:08 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-08 18:08 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/871

Author:
        Nick Alcock <nick.alcock@oracle.com>

Commit tested:
        f046147d59aab0c8b6f00cd182f34b42ac8915e8

Subject of commit:
        libctf: actually close bfds we have opened

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/f0/f046147d59aab0c8b6f00cd182f34b42ac8915e8/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/arraydim.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/enum_idx_packed.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/nested.exp: break on nested function First
PASS -> FAIL: gdb.ada/taft_type.exp: compilation p.adb
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: compilation crash.adb
PASS -> FAIL: gdb.ada/type_coercion.exp: compilation assign.adb
new UNRESOLVED: gdb.ada/var_arr_typedef.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/var_arr_typedef.exp: print a
new UNRESOLVED: gdb.ada/var_arr_typedef.exp: print va
new UNRESOLVED: gdb.ada/var_arr_typedef.exp: print vb
new FAIL: gdb.base/multi-forks.exp: detach 2
new FAIL: gdb.base/multi-forks.exp: detach 3
new FAIL: gdb.base/multi-forks.exp: detach 4
new FAIL: gdb.base/multi-forks.exp: detach 5
new FAIL: gdb.base/multi-forks.exp: did kill 10
new FAIL: gdb.base/multi-forks.exp: did kill 11
new FAIL: gdb.base/multi-forks.exp: did kill 12
new FAIL: gdb.base/multi-forks.exp: did kill 13
new FAIL: gdb.base/multi-forks.exp: did kill 14
new FAIL: gdb.base/multi-forks.exp: did kill 15
new FAIL: gdb.base/multi-forks.exp: did kill 16
new FAIL: gdb.base/multi-forks.exp: did kill 6
new FAIL: gdb.base/multi-forks.exp: did kill 7
new FAIL: gdb.base/multi-forks.exp: did kill 8
new FAIL: gdb.base/multi-forks.exp: did kill 9
new FAIL: gdb.base/multi-forks.exp: follow child, print pids
new FAIL: gdb.base/multi-forks.exp: follow parent, print pids
new UNRESOLVED: gdb.base/multi-forks.exp: help set detach
new FAIL: gdb.base/multi-forks.exp: inferior 1
new FAIL: gdb.base/multi-forks.exp: inferior 10
new FAIL: gdb.base/multi-forks.exp: inferior 11
new FAIL: gdb.base/multi-forks.exp: inferior 12
new FAIL: gdb.base/multi-forks.exp: inferior 13
new FAIL: gdb.base/multi-forks.exp: inferior 14
new FAIL: gdb.base/multi-forks.exp: inferior 15
new FAIL: gdb.base/multi-forks.exp: inferior 2
new FAIL: gdb.base/multi-forks.exp: inferior 3
new FAIL: gdb.base/multi-forks.exp: inferior 4
new FAIL: gdb.base/multi-forks.exp: inferior 5
new FAIL: gdb.base/multi-forks.exp: inferior 6
new FAIL: gdb.base/multi-forks.exp: inferior 7
new FAIL: gdb.base/multi-forks.exp: inferior 8
new FAIL: gdb.base/multi-forks.exp: inferior 9
new FAIL: gdb.base/multi-forks.exp: info inferior 1
new FAIL: gdb.base/multi-forks.exp: info inferior 10
new FAIL: gdb.base/multi-forks.exp: info inferior 11
new FAIL: gdb.base/multi-forks.exp: info inferior 12
new FAIL: gdb.base/multi-forks.exp: info inferior 13
new FAIL: gdb.base/multi-forks.exp: info inferior 14
new FAIL: gdb.base/multi-forks.exp: info inferior 15
new FAIL: gdb.base/multi-forks.exp: info inferior 16
new FAIL: gdb.base/multi-forks.exp: info inferior 2
new FAIL: gdb.base/multi-forks.exp: info inferior 3
new FAIL: gdb.base/multi-forks.exp: info inferior 4
new FAIL: gdb.base/multi-forks.exp: info inferior 5
new FAIL: gdb.base/multi-forks.exp: info inferior 6
new FAIL: gdb.base/multi-forks.exp: info inferior 7
new FAIL: gdb.base/multi-forks.exp: info inferior 8
new FAIL: gdb.base/multi-forks.exp: info inferior 9
new FAIL: gdb.base/multi-forks.exp: kill 10
new FAIL: gdb.base/multi-forks.exp: kill 11
new FAIL: gdb.base/multi-forks.exp: kill 12
new FAIL: gdb.base/multi-forks.exp: kill 13
new FAIL: gdb.base/multi-forks.exp: kill 14
new FAIL: gdb.base/multi-forks.exp: kill 15
new FAIL: gdb.base/multi-forks.exp: kill 16
new FAIL: gdb.base/multi-forks.exp: kill 6
new FAIL: gdb.base/multi-forks.exp: kill 7
new FAIL: gdb.base/multi-forks.exp: kill 8
new FAIL: gdb.base/multi-forks.exp: kill 9
new FAIL: gdb.base/multi-forks.exp: restart final
new FAIL: gdb.base/multi-forks.exp: run to exit 1
new FAIL: gdb.base/multi-forks.exp: run to exit 10
new FAIL: gdb.base/multi-forks.exp: run to exit 11
new FAIL: gdb.base/multi-forks.exp: run to exit 12
new FAIL: gdb.base/multi-forks.exp: run to exit 13
new FAIL: gdb.base/multi-forks.exp: run to exit 14
new FAIL: gdb.base/multi-forks.exp: run to exit 15
new FAIL: gdb.base/multi-forks.exp: run to exit 16
new UNRESOLVED: gdb.base/multi-forks.exp: run to exit 2
new FAIL: gdb.base/multi-forks.exp: run to exit 3
new FAIL: gdb.base/multi-forks.exp: run to exit 4
new FAIL: gdb.base/multi-forks.exp: run to exit 5
new FAIL: gdb.base/multi-forks.exp: run to exit 6
new FAIL: gdb.base/multi-forks.exp: run to exit 7
new FAIL: gdb.base/multi-forks.exp: run to exit 8
new FAIL: gdb.base/multi-forks.exp: run to exit 9
new UNRESOLVED: gdb.base/multi-forks.exp: set follow-fork child
PASS -> UNRESOLVED: gdb.dlang/debug-expr.exp: print *
PASS -> UNRESOLVED: gdb.dlang/debug-expr.exp: set debug expression 1
PASS -> UNRESOLVED: gdb.dlang/debug-expr.exp: set language d
PASS -> UNRESOLVED: gdb.dlang/demangle.exp: set language d
PASS -> UNRESOLVED: gdb.dlang/expression.exp: set language d
PASS -> UNRESOLVED: gdb.dlang/primitive-types.exp: set language d
PASS -> UNRESOLVED: gdb.dlang/properties.exp: set language d
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: disassemble first
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: disassemble second
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p first_label - first
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p second_label - second
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: x/2i first+
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: x/2i second+
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dwz.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dwz.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dwz.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/var-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/var-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/var-access.exp: x/2i main+
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: verify guile support
new UNRESOLVED: gdb.python/py-value.exp: can't run to main
new UNRESOLVED: gdb.reverse/recvmsg-reverse.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.reverse/recvmsg-reverse.exp: turn on process record
==============================================

*** 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/f0/f046147d59aab0c8b6f00cd182f34b42ac8915e8//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/f0/f046147d59aab0c8b6f00cd182f34b42ac8915e8//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-08 12:35 [binutils-gdb] libctf: bfd-open: mark the bfd as cacheable gdb-buildbot
@ 2019-10-08 15:08 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-08 15:08 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/870

Author:
        Nick Alcock <nick.alcock@oracle.com>

Commit tested:
        edc8bbe90b82f1fa4f3f261b5c97503867e9aba4

Subject of commit:
        libctf: bfd-open: mark the bfd as cacheable

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/ed/edc8bbe90b82f1fa4f3f261b5c97503867e9aba4/

*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/O2_float_param.exp: compilation foo.adb
new FAIL: gdb.ada/access_tagged_param.exp: compilation foo.adb
new FAIL: gdb.ada/access_to_unbounded_array.exp: compilation foo.adb
new FAIL: gdb.ada/addr_arith.exp: compilation foo_na07_019.adb
new FAIL: gdb.ada/aliased_array.exp: compilation foo.adb
new FAIL: gdb.ada/arr_acc_idx_w_gap.exp: compilation enum_with_gap_main.adb
new FAIL: gdb.ada/arr_arr.exp: compilation foo.adb
new FAIL: gdb.ada/arr_enum_idx_w_gap.exp: compilation foo_q418_043.adb
new FAIL: gdb.ada/array_bounds.exp: compilation bar.adb
new FAIL: gdb.ada/array_char_idx.exp: compilation foo.adb
new FAIL: gdb.ada/array_of_variable_length.exp: compilation foo.adb
new FAIL: gdb.ada/array_ptr_renaming.exp: compilation foo.adb
new FAIL: gdb.ada/array_return.exp: compilation p.adb
new FAIL: gdb.ada/array_subscript_addr.exp: compilation p.adb
new UNRESOLVED: gdb.ada/arraydim.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/arraydim.exp: print global_3dim_for_gdb_testing'first
new UNRESOLVED: gdb.ada/arraydim.exp: print global_3dim_for_gdb_testing'last
new UNRESOLVED: gdb.ada/arraydim.exp: print global_3dim_for_gdb_testing'length
new UNRESOLVED: gdb.ada/arraydim.exp: print m'first
new UNRESOLVED: gdb.ada/arraydim.exp: print m'last
new UNRESOLVED: gdb.ada/arraydim.exp: print m'length
new UNRESOLVED: gdb.ada/arraydim.exp: ptype global_3dim_for_gdb_testing
new UNRESOLVED: gdb.ada/arraydim.exp: ptype m
new FAIL: gdb.ada/arrayidx.exp: compilation p.adb
new FAIL: gdb.ada/arrayparam.exp: compilation foo.adb
new FAIL: gdb.ada/arrayptr.exp: compilation foo.adb
new FAIL: gdb.ada/assign_arr.exp: compilation main_p324_051.adb
new FAIL: gdb.ada/atomic_enum.exp: compilation foo.adb
new FAIL: gdb.ada/attr_ref_and_charlit.exp: compilation foo.adb
new FAIL: gdb.ada/bad-task-bp-keyword.exp: compilation foo.adb
new FAIL: gdb.ada/big_packed_array.exp: compilation foo_ra24_010.adb
new FAIL: gdb.ada/bp_c_mixed_case.exp: compilation foo_h731_021.adb
new FAIL: gdb.ada/bp_enum_homonym.exp: compilation p.adb
new FAIL: gdb.ada/bp_fun_addr.exp: compilation bp_fun_addr.adb
new FAIL: gdb.ada/bp_inlined_func.exp: compilation foo.adb
new FAIL: gdb.ada/bp_on_var.exp: compilation foo.adb
new FAIL: gdb.ada/bp_range_type.exp: compilation foo.adb
new FAIL: gdb.ada/bp_reset.exp: compilation foo.adb
new FAIL: gdb.ada/byte_packed_arr.exp: compilation reprod_main.adb
new FAIL: gdb.ada/catch_assert_if.exp: compilation bla.adb
new FAIL: gdb.ada/catch_ex.exp: compilation foo.adb
new FAIL: gdb.ada/char_enum.exp: compilation foo.adb
new FAIL: gdb.ada/char_param.exp: compilation foo.adb
new FAIL: gdb.ada/complete.exp: compilation foo.adb
new FAIL: gdb.ada/cond_lang.exp: compilation a.adb
new FAIL: gdb.ada/dgopt.exp: compilation x.adb
new FAIL: gdb.ada/disc_arr_bound.exp: compilation foo_n612_026.adb
new FAIL: gdb.ada/display_nested.exp: compilation foo.adb
new FAIL: gdb.ada/dyn_arrayidx.exp: compilation foo.adb
new FAIL: gdb.ada/dyn_loc.exp: compilation p.adb
new FAIL: gdb.ada/dyn_stride.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/enum_idx_packed.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/enum_idx_packed.exp: print full
new UNRESOLVED: gdb.ada/enum_idx_packed.exp: print full'first
new FAIL: gdb.ada/excep_handle.exp: compilation foo.adb
new FAIL: gdb.ada/expr_delims.exp: compilation foo.adb
new FAIL: gdb.ada/expr_with_funcall.exp: compilation expr_r821_013.adb
new FAIL: gdb.ada/exprs.exp: compilation p.adb
new FAIL: gdb.ada/fin_fun_out.exp: compilation foo_o525_013.adb
new FAIL: gdb.ada/fixed_cmp.exp: compilation fixed.adb
new FAIL: gdb.ada/fixed_points.exp: compilation fixed_points.adb
new FAIL: gdb.ada/float_param.exp: compilation foo.adb
new FAIL: gdb.ada/formatted_ref.exp: compilation formatted_ref.adb
new FAIL: gdb.ada/frame_arg_lang.exp: compilation bla.adb
new FAIL: gdb.ada/frame_args.exp: compilation foo.adb
new FAIL: gdb.ada/fullname_bp.exp: compilation foo.adb
new FAIL: gdb.ada/fun_addr.exp: compilation foo.adb
new FAIL: gdb.ada/fun_in_declare.exp: compilation foo.adb
new FAIL: gdb.ada/fun_overload_menu.exp: compilation foo.adb
new FAIL: gdb.ada/fun_renaming.exp: compilation fun_renaming.adb
new FAIL: gdb.ada/funcall_param.exp: compilation foo.adb
new FAIL: gdb.ada/funcall_ptr.exp: compilation foo.adb
new FAIL: gdb.ada/funcall_ref.exp: compilation foo.adb
new FAIL: gdb.ada/homonym.exp: compilation homonym_main.adb
new FAIL: gdb.ada/info_addr_mixed_case.exp: compilation foo.adb
new FAIL: gdb.ada/info_exc.exp: compilation foo.adb
new FAIL: gdb.ada/info_locals_renaming.exp: compilation foo.adb
new FAIL: gdb.ada/int_deref.exp: compilation foo.adb
new FAIL: gdb.ada/interface.exp: compilation foo.adb
new FAIL: gdb.ada/iwide.exp: compilation p.adb
new FAIL: gdb.ada/lang_switch.exp: compilation lang_switch.adb
new FAIL: gdb.ada/length_cond.exp: compilation length_cond.adb
new FAIL: gdb.ada/maint_with_ada.exp: compilation var_arr_typedef.adb
new FAIL: gdb.ada/mi_catch_assert.exp: compilation bla.adb
new FAIL: gdb.ada/mi_catch_ex_hand.exp: compilation foo.adb
new FAIL: gdb.ada/mi_ex_cond.exp: compilation foo.adb
new FAIL: gdb.ada/mi_exc_info.exp: compilation foo.adb
new FAIL: gdb.ada/mi_interface.exp: compilation foo.adb
new FAIL: gdb.ada/mi_ref_changeable.exp: compilation foo_rb20_056.adb
new FAIL: gdb.ada/mi_string_access.exp: compilation bar.adb
new FAIL: gdb.ada/mi_task_arg.exp: compilation task_switch.adb
new FAIL: gdb.ada/mi_task_info.exp: compilation task_switch.adb
new FAIL: gdb.ada/mi_var_array.exp: compilation bar.adb
new FAIL: gdb.ada/mi_var_union.exp: compilation bar.adb
new FAIL: gdb.ada/mod_from_name.exp: compilation foo.adb
new FAIL: gdb.ada/n_arr_bound.exp: compilation foo.adb
new FAIL: gdb.ada/notcplusplus.exp: compilation foo.adb
new FAIL: gdb.ada/null_array.exp: compilation foo.adb
new FAIL: gdb.ada/null_record.exp: compilation null_record.adb
new FAIL: gdb.ada/operator_bp.exp: compilation ops_test.adb
new FAIL: gdb.ada/optim_drec.exp: compilation foo.adb
new FAIL: gdb.ada/out_of_line_in_inlined.exp: compilation foo_o224_021.adb
new FAIL: gdb.ada/packed_array.exp: compilation pa.adb
new FAIL: gdb.ada/packed_array_assign.exp: compilation tester.adb
new FAIL: gdb.ada/packed_tagged.exp: compilation comp_bug.adb
new FAIL: gdb.ada/pckd_arr_ren.exp: compilation foo.adb
new FAIL: gdb.ada/pckd_neg.exp: compilation foo_o508_021.adb
new FAIL: gdb.ada/pkd_arr_elem.exp: compilation failure.adb
new FAIL: gdb.ada/pp-rec-component.exp: compilation foo.adb
new FAIL: gdb.ada/print_chars.exp: compilation foo.adb
new FAIL: gdb.ada/print_pc.exp: compilation dummy.adb
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: ptype 3 * 2.0
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: ptype 3 / 2.0
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: set lang ada
new FAIL: gdb.ada/ptype_array.exp: compilation foo.adb
new FAIL: gdb.ada/ptype_field.exp: compilation foo.adb
new FAIL: gdb.ada/ptype_tagged_param.exp: compilation foo.adb
new FAIL: gdb.ada/py_range.exp: compilation foo.adb
new FAIL: gdb.ada/py_taft.exp: compilation main.adb
new FAIL: gdb.ada/rdv_wait.exp: compilation foo.adb
new FAIL: gdb.ada/rec_comp.exp: compilation bar_o203_012.adb
new FAIL: gdb.ada/rec_return.exp: compilation foo.adb
new FAIL: gdb.ada/ref_param.exp: compilation foo.adb
new FAIL: gdb.ada/ref_tick_size.exp: compilation p.adb
new FAIL: gdb.ada/repeat_dyn.exp: compilation foo_oc22_002.adb
new FAIL: gdb.ada/same_component_name.exp: compilation foo.adb
new FAIL: gdb.ada/same_enum.exp: compilation a.adb
new FAIL: gdb.ada/scoped_watch.exp: compilation foo_p708_025.adb
new FAIL: gdb.ada/set_pckd_arr_elt.exp: compilation foo.adb
new FAIL: gdb.ada/set_wstr.exp: compilation a.adb
new FAIL: gdb.ada/small_reg_param.exp: compilation foo.adb
new FAIL: gdb.ada/str_binop_equal.exp: compilation foo_p211_061.adb
new FAIL: gdb.ada/str_uninit.exp: compilation parse.adb
new FAIL: gdb.ada/sym_print_name.exp: compilation foo.adb
new FAIL: gdb.ada/tagged.exp: compilation foo.adb
new FAIL: gdb.ada/tagged_access.exp: compilation p.adb
new FAIL: gdb.ada/tagged_not_init.exp: compilation foo.adb
new FAIL: gdb.ada/task_bp.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/task_switch_in_core.exp: couldn't run to Request_For_Crash
new UNRESOLVED: gdb.ada/task_switch_in_core.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.ada/tasks.exp: compilation foo.adb
new FAIL: gdb.ada/tick_last_segv.exp: compilation foo.adb
new FAIL: gdb.ada/tick_length_array_enum_idx.exp: compilation foo_n207_004.adb
new UNRESOLVED: gdb.ada/type_coercion.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/type_coercion.exp: p q
new UNRESOLVED: gdb.ada/type_coercion.exp: print {Integer} $addr
new UNRESOLVED: gdb.ada/type_coercion.exp: save q'address in convenience variable
new UNRESOLVED: gdb.ada/type_coercion.exp: set {Integer} $addr := 19
new FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: compilation foo.adb
new FAIL: gdb.ada/var_arr_attrs.exp: compilation foo_o115_002.adb
new UNRESOLVED: gdb.ada/var_rec_arr.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/var_rec_arr.exp: print a1
new UNRESOLVED: gdb.ada/var_rec_arr.exp: print a2
new UNRESOLVED: gdb.ada/var_rec_arr.exp: ptype a1
new FAIL: gdb.ada/variant_record_packed_array.exp: compilation foo.adb
new FAIL: gdb.ada/varsize_limit.exp: compilation vsizelim.adb
new FAIL: gdb.ada/vla.exp: compilation vla.adb
new FAIL: gdb.ada/watch_minus_l.exp: compilation foo_ra10_006.adb
new FAIL: gdb.ada/whatis_array_val.exp: compilation foo.adb
new FAIL: gdb.ada/widewide.exp: compilation foo.adb
new FAIL: gdb.ada/win_fu_syms.exp: compilation foo.adb
new UNRESOLVED: gdb.arch/aarch64-fp.exp: could not run to main
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: set tdesc filename $srcdir/gdb.arch/arc-tdesc-cpu.xml
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: set tdesc filename /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.arch/arc-tdesc-cpu/trivial.xml
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: setting HS architecture
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: .text is readable
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: complete set architecture i386
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: complete set gnutarget
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: load core file
new UNRESOLVED: gdb.base/alias.exp: -a print elements 47
new UNRESOLVED: gdb.base/alias.exp: abbrev -a not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set2 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set3 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set4 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set5 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set6 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: alias -a -- -a = set
new UNRESOLVED: gdb.base/alias.exp: alias -a -- set6 = set
new UNRESOLVED: gdb.base/alias.exp: alias -a set2=set
new UNRESOLVED: gdb.base/alias.exp: alias -a set3= set
new UNRESOLVED: gdb.base/alias.exp: alias -a set4 =set
new UNRESOLVED: gdb.base/alias.exp: alias -a set5 = set
new UNRESOLVED: gdb.base/alias.exp: alias assigne
new UNRESOLVED: gdb.base/alias.exp: alias assigne imprime
new UNRESOLVED: gdb.base/alias.exp: alias assigne imprime limite-elements
new UNRESOLVED: gdb.base/alias.exp: alias foo=bar
new UNRESOLVED: gdb.base/alias.exp: alias set pr elms = set p elem
new UNRESOLVED: gdb.base/alias.exp: alias set print max-elements using assigne imprime
new UNRESOLVED: gdb.base/alias.exp: alias set2=set
new UNRESOLVED: gdb.base/alias.exp: alias spe = set p elem
new UNRESOLVED: gdb.base/alias.exp: assigne imprime elements 53
new UNRESOLVED: gdb.base/alias.exp: assigne imprime limite-elements 54
new UNRESOLVED: gdb.base/alias.exp: assigne imprime prefix not defined
new UNRESOLVED: gdb.base/alias.exp: assigne print elements 52
new UNRESOLVED: gdb.base/alias.exp: help set print
new UNRESOLVED: gdb.base/alias.exp: mismatched length
new UNRESOLVED: gdb.base/alias.exp: mismatched prefix
new UNRESOLVED: gdb.base/alias.exp: set imprime elements 55
new UNRESOLVED: gdb.base/alias.exp: set imprime prefix not defined
new UNRESOLVED: gdb.base/alias.exp: set pr elms 51
new UNRESOLVED: gdb.base/alias.exp: set print limite-elements 56
new UNRESOLVED: gdb.base/alias.exp: set print max-elements 57
new UNRESOLVED: gdb.base/alias.exp: set2 print elements 42
new UNRESOLVED: gdb.base/alias.exp: set3 print elements 43
new UNRESOLVED: gdb.base/alias.exp: set4 print elements 44
new UNRESOLVED: gdb.base/alias.exp: set5 print elements 45
new UNRESOLVED: gdb.base/alias.exp: set6 print elements 46
new UNRESOLVED: gdb.base/alias.exp: spe 50
new UNRESOLVED: gdb.base/alias.exp: verify -a
new UNRESOLVED: gdb.base/alias.exp: verify 52
new UNRESOLVED: gdb.base/alias.exp: verify 53
new UNRESOLVED: gdb.base/alias.exp: verify 54
new UNRESOLVED: gdb.base/alias.exp: verify 55
new UNRESOLVED: gdb.base/alias.exp: verify 56
new UNRESOLVED: gdb.base/alias.exp: verify 57
new UNRESOLVED: gdb.base/alias.exp: verify set pr elms
new UNRESOLVED: gdb.base/alias.exp: verify set2
new UNRESOLVED: gdb.base/alias.exp: verify set3
new UNRESOLVED: gdb.base/alias.exp: verify set4
new UNRESOLVED: gdb.base/alias.exp: verify set5
new UNRESOLVED: gdb.base/alias.exp: verify set6
new UNRESOLVED: gdb.base/alias.exp: verify spe
new FAIL: gdb.base/all-architectures-0.exp: all passed
new FAIL: gdb.base/all-architectures-0.exp: at least one architecture
new FAIL: gdb.base/all-architectures-0.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-0.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-0.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-0.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-1.exp: all passed
new FAIL: gdb.base/all-architectures-1.exp: at least one architecture
new FAIL: gdb.base/all-architectures-1.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-1.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-1.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-1.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-2.exp: all passed
new FAIL: gdb.base/all-architectures-2.exp: at least one architecture
new FAIL: gdb.base/all-architectures-2.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-2.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-2.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-2.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-3.exp: all passed
new FAIL: gdb.base/all-architectures-3.exp: at least one architecture
new FAIL: gdb.base/all-architectures-3.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-3.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-3.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-3.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-4.exp: all passed
new FAIL: gdb.base/all-architectures-4.exp: at least one architecture
new FAIL: gdb.base/all-architectures-4.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-4.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-4.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-4.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-5.exp: all passed
new FAIL: gdb.base/all-architectures-5.exp: at least one architecture
new FAIL: gdb.base/all-architectures-5.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-5.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-5.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-5.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-6.exp: all passed
new FAIL: gdb.base/all-architectures-6.exp: at least one architecture
new FAIL: gdb.base/all-architectures-6.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-6.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-7.exp: all passed
new FAIL: gdb.base/all-architectures-7.exp: at least one architecture
new FAIL: gdb.base/all-architectures-7.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-7.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-7.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-7.exp: set max-completions unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: break main
new UNRESOLVED: gdb.base/argv0-symlink.exp: p argc
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print elements 200
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print elements unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print repeats 200
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print repeats unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: show print elements
new UNRESOLVED: gdb.base/argv0-symlink.exp: show print repeats
new UNRESOLVED: gdb.base/bad-file.exp: directory
new UNRESOLVED: gdb.base/bad-file.exp: neither file nor directory
new UNRESOLVED: gdb.base/bad-file.exp: non-existent file
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "info source": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "set not-a-thing 4" -x good-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "set not-a-thing 4": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -jslkflsdjlkfjlksdjf: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x bad-commands -ex "info source": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x bad-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands -ex "set not-a-thing 4": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands -x bad-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch: spawn
new FAIL: gdb.base/bitfields2.exp: bitfield containment; flags.u1, flags.u3, and flags.s3 to all 1s
new FAIL: gdb.base/bitfields2.exp: bitfield containment; flags.u2, flags.s1, flags.s2 to all 1s
new FAIL: gdb.base/bitfields2.exp: bitfield uniqueness; flags.s1 = 1
new FAIL: gdb.base/bitfields2.exp: bitfield uniqueness; flags.s2 = 1
new FAIL: gdb.base/bitfields2.exp: bitfield uniqueness; flags.s3 = 1
new FAIL: gdb.base/bitfields2.exp: bitfield uniqueness; flags.u1 = 1
new FAIL: gdb.base/bitfields2.exp: bitfield uniqueness; flags.u2 = 1
new FAIL: gdb.base/bitfields2.exp: bitfield uniqueness; flags.u3 = 1
new UNRESOLVED: gdb.base/bitfields2.exp: break tester prior to break1
new FAIL: gdb.base/bitfields2.exp: continuing to break1 #0
new FAIL: gdb.base/bitfields2.exp: continuing to break1 #1
new FAIL: gdb.base/bitfields2.exp: continuing to break1 #2
new FAIL: gdb.base/bitfields2.exp: continuing to break1 #3
new FAIL: gdb.base/bitfields2.exp: continuing to break1 #4
new FAIL: gdb.base/bitfields2.exp: continuing to break1 #5
new FAIL: gdb.base/bitfields2.exp: continuing to break2 #0
new FAIL: gdb.base/bitfields2.exp: continuing to break2 #1
new FAIL: gdb.base/bitfields2.exp: continuing to break3 #0
new FAIL: gdb.base/bitfields2.exp: continuing to break4 #0
new FAIL: gdb.base/bitfields2.exp: continuing to break4 #1
new FAIL: gdb.base/bitfields2.exp: continuing to break4 #2
new FAIL: gdb.base/bitfields2.exp: continuing to break5 #0
new FAIL: gdb.base/bitfields2.exp: continuing to tester prior to break1
new FAIL: gdb.base/bitfields2.exp: continuing to tester prior to break2
new FAIL: gdb.base/bitfields2.exp: continuing to tester prior to break3
new FAIL: gdb.base/bitfields2.exp: continuing to tester prior to break4
new FAIL: gdb.base/bitfields2.exp: continuing to tester prior to break5
new FAIL: gdb.base/bitfields2.exp: determining signed-ness of bitfields
new FAIL: gdb.base/bitfields2.exp: long long bitfield values after set
new FAIL: gdb.base/bitfields2.exp: maximum signed bitfield values
new FAIL: gdb.base/bitfields2.exp: maximum unsigned bitfield values
new FAIL: gdb.base/bitfields2.exp: set long long signed bitfield positive
new FAIL: gdb.base/bitfields2.exp: set long long unsigned bitfield
new UNRESOLVED: gdb.base/bitops.exp: print value of !0
new UNRESOLVED: gdb.base/bitops.exp: print value of !1
new UNRESOLVED: gdb.base/bitops.exp: print value of !10
new UNRESOLVED: gdb.base/bitops.exp: print value of !100
new UNRESOLVED: gdb.base/bitops.exp: print value of !1000
new UNRESOLVED: gdb.base/bitops.exp: print value of !2
new UNRESOLVED: gdb.base/bitops.exp: print value of
new UNRESOLVED: gdb.base/bitops.exp: print value of -!0
new UNRESOLVED: gdb.base/bitops.exp: print value of -1 < 0 > 1
new UNRESOLVED: gdb.base/bitops.exp: print value of -3>4
new UNRESOLVED: gdb.base/bitops.exp: print value of 0 == 8 > 128 >> 1 + 2 * 2
new UNRESOLVED: gdb.base/bitops.exp: print value of 0 || 1 && 0 | 0 ^ 0 == 8
new UNRESOLVED: gdb.base/bitops.exp: print value of 0 || 1 && 0 | 0 ^ 0 == 8 > 128 >>1 +2 *2
new UNRESOLVED: gdb.base/bitops.exp: print value of 0.0 || 0
new UNRESOLVED: gdb.base/bitops.exp: print value of 0.0 || 1.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 1.0 || 0
new UNRESOLVED: gdb.base/bitops.exp: print value of 10 & 5
new UNRESOLVED: gdb.base/bitops.exp: print value of 10 ^ 5
new UNRESOLVED: gdb.base/bitops.exp: print value of 10 | 5
new UNRESOLVED: gdb.base/bitops.exp: print value of 15 ^ 10 ^ 5 ^ 7
new UNRESOLVED: gdb.base/bitops.exp: print value of 2 > -3
new UNRESOLVED: gdb.base/bitops.exp: print value of 3 * 2 / 4.0 * 2.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3!=3.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3!=5.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3.5 < -4.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3.5 < 4.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3==3.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3==4.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3>=2.5
new UNRESOLVED: gdb.base/bitops.exp: print value of 3>=4.5
new UNRESOLVED: gdb.base/bitops.exp: print value of 8 << 2 >> 4
new UNRESOLVED: gdb.base/bitops.exp: print value of ~-!0
new UNRESOLVED: gdb.base/command-line-input.exp: print 1\\n + 2
new UNRESOLVED: gdb.base/command-line-input.exp: print 1\\n2
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: cmd complete ""
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: set max-completions 1
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: show editing
new UNRESOLVED: gdb.base/complete-empty.exp: show editing
new UNRESOLVED: gdb.base/default.exp:
new UNRESOLVED: gdb.base/default.exp: add-symbol-file
new UNRESOLVED: gdb.base/default.exp: append
new UNRESOLVED: gdb.base/default.exp: append binary
new UNRESOLVED: gdb.base/default.exp: append binary memory
new UNRESOLVED: gdb.base/default.exp: append binary value
new UNRESOLVED: gdb.base/default.exp: append memory
new UNRESOLVED: gdb.base/default.exp: append value
new UNRESOLVED: gdb.base/default.exp: call
new UNRESOLVED: gdb.base/default.exp: catch
new UNRESOLVED: gdb.base/default.exp: cd
new UNRESOLVED: gdb.base/default.exp: check if python 3
new UNRESOLVED: gdb.base/default.exp: clear
new UNRESOLVED: gdb.base/default.exp: commands
new UNRESOLVED: gdb.base/default.exp: condition
new UNRESOLVED: gdb.base/default.exp: continue
new UNRESOLVED: gdb.base/default.exp: continue "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: core-file
new UNRESOLVED: gdb.base/default.exp: define
new UNRESOLVED: gdb.base/default.exp: delete
new UNRESOLVED: gdb.base/default.exp: delete "d" abbreviation
new UNRESOLVED: gdb.base/default.exp: delete breakpoints
new UNRESOLVED: gdb.base/default.exp: delete display prompt
new UNRESOLVED: gdb.base/default.exp: detach
new UNRESOLVED: gdb.base/default.exp: directory prompt
new UNRESOLVED: gdb.base/default.exp: disable
new UNRESOLVED: gdb.base/default.exp: disable "dis" abbreviation
new UNRESOLVED: gdb.base/default.exp: disable "disa" abbreviation
new UNRESOLVED: gdb.base/default.exp: disable breakpoints
new UNRESOLVED: gdb.base/default.exp: disable display
new UNRESOLVED: gdb.base/default.exp: disassemble
new UNRESOLVED: gdb.base/default.exp: display
new UNRESOLVED: gdb.base/default.exp: do
new UNRESOLVED: gdb.base/default.exp: document
new UNRESOLVED: gdb.base/default.exp: down
new UNRESOLVED: gdb.base/default.exp: down-silently
new UNRESOLVED: gdb.base/default.exp: dump
new UNRESOLVED: gdb.base/default.exp: dump binary
new UNRESOLVED: gdb.base/default.exp: dump binary memory
new UNRESOLVED: gdb.base/default.exp: dump binary value
new UNRESOLVED: gdb.base/default.exp: dump ihex
new UNRESOLVED: gdb.base/default.exp: dump ihex memory
new UNRESOLVED: gdb.base/default.exp: dump ihex value
new UNRESOLVED: gdb.base/default.exp: dump memory
new UNRESOLVED: gdb.base/default.exp: dump srec
new UNRESOLVED: gdb.base/default.exp: dump srec memory
new UNRESOLVED: gdb.base/default.exp: dump srec value
new UNRESOLVED: gdb.base/default.exp: dump tekhex
new UNRESOLVED: gdb.base/default.exp: dump tekhex memory
new UNRESOLVED: gdb.base/default.exp: dump tekhex value
new UNRESOLVED: gdb.base/default.exp: dump value
new UNRESOLVED: gdb.base/default.exp: echo
new UNRESOLVED: gdb.base/default.exp: enable
new UNRESOLVED: gdb.base/default.exp: enable breakpoints
new UNRESOLVED: gdb.base/default.exp: enable breakpoints delete
new UNRESOLVED: gdb.base/default.exp: enable breakpoints once
new UNRESOLVED: gdb.base/default.exp: enable delete
new UNRESOLVED: gdb.base/default.exp: enable display
new UNRESOLVED: gdb.base/default.exp: enable once
new UNRESOLVED: gdb.base/default.exp: fg
new UNRESOLVED: gdb.base/default.exp: finish
new UNRESOLVED: gdb.base/default.exp: forward-search
new UNRESOLVED: gdb.base/default.exp: frame
new UNRESOLVED: gdb.base/default.exp: frame "f" abbreviation
new UNRESOLVED: gdb.base/default.exp: gcore
new UNRESOLVED: gdb.base/default.exp: generate-core-file
new UNRESOLVED: gdb.base/default.exp: handle
new UNRESOLVED: gdb.base/default.exp: help
new UNRESOLVED: gdb.base/default.exp: help "h" abbreviation
new UNRESOLVED: gdb.base/default.exp: ignore
new UNRESOLVED: gdb.base/default.exp: info
new UNRESOLVED: gdb.base/default.exp: info "i" abbreviation
new UNRESOLVED: gdb.base/default.exp: info address
new UNRESOLVED: gdb.base/default.exp: info all-registers
new UNRESOLVED: gdb.base/default.exp: info args
new UNRESOLVED: gdb.base/default.exp: info bogus-gdb-command
new UNRESOLVED: gdb.base/default.exp: info breakpoints
new UNRESOLVED: gdb.base/default.exp: info copying
new UNRESOLVED: gdb.base/default.exp: info display
new UNRESOLVED: gdb.base/default.exp: info files
new UNRESOLVED: gdb.base/default.exp: info float
new UNRESOLVED: gdb.base/default.exp: info frame
new UNRESOLVED: gdb.base/default.exp: info frame "f" abbreviation
new UNRESOLVED: gdb.base/default.exp: info functions
new UNRESOLVED: gdb.base/default.exp: info locals
new UNRESOLVED: gdb.base/default.exp: info program
new UNRESOLVED: gdb.base/default.exp: info registers
new UNRESOLVED: gdb.base/default.exp: info set
new UNRESOLVED: gdb.base/default.exp: info source
new UNRESOLVED: gdb.base/default.exp: info sources
new UNRESOLVED: gdb.base/default.exp: info stack
new UNRESOLVED: gdb.base/default.exp: info stack "s" abbreviation
new UNRESOLVED: gdb.base/default.exp: info symbol
new UNRESOLVED: gdb.base/default.exp: info target
new UNRESOLVED: gdb.base/default.exp: info terminal
new UNRESOLVED: gdb.base/default.exp: info threads
new UNRESOLVED: gdb.base/default.exp: info types
new UNRESOLVED: gdb.base/default.exp: info variables
new UNRESOLVED: gdb.base/default.exp: info vector
new UNRESOLVED: gdb.base/default.exp: info warranty
new UNRESOLVED: gdb.base/default.exp: info watchpoints
new UNRESOLVED: gdb.base/default.exp: inspect
new UNRESOLVED: gdb.base/default.exp: jump
new UNRESOLVED: gdb.base/default.exp: kill
new UNRESOLVED: gdb.base/default.exp: list
new UNRESOLVED: gdb.base/default.exp: list "l" abbreviation
new UNRESOLVED: gdb.base/default.exp: load
new UNRESOLVED: gdb.base/default.exp: next
new UNRESOLVED: gdb.base/default.exp: next "n" abbreviation
new UNRESOLVED: gdb.base/default.exp: nexti
new UNRESOLVED: gdb.base/default.exp: nexti "ni" abbreviation
new UNRESOLVED: gdb.base/default.exp: output
new UNRESOLVED: gdb.base/default.exp: overlay
new UNRESOLVED: gdb.base/default.exp: overlay auto
new UNRESOLVED: gdb.base/default.exp: overlay list
new UNRESOLVED: gdb.base/default.exp: overlay manual #1
new UNRESOLVED: gdb.base/default.exp: overlay manual #2
new UNRESOLVED: gdb.base/default.exp: overlay map #1
new UNRESOLVED: gdb.base/default.exp: overlay map #2
new UNRESOLVED: gdb.base/default.exp: overlay off
new UNRESOLVED: gdb.base/default.exp: overlay on
new UNRESOLVED: gdb.base/default.exp: overlay unmap #1
new UNRESOLVED: gdb.base/default.exp: overlay unmap #2
new UNRESOLVED: gdb.base/default.exp: print
new UNRESOLVED: gdb.base/default.exp: print "p" abbreviation
new UNRESOLVED: gdb.base/default.exp: printf
new UNRESOLVED: gdb.base/default.exp: ptype
new UNRESOLVED: gdb.base/default.exp: pwd
new UNRESOLVED: gdb.base/default.exp: rbreak
new UNRESOLVED: gdb.base/default.exp: restore
new UNRESOLVED: gdb.base/default.exp: return
new UNRESOLVED: gdb.base/default.exp: reverse-search
new UNRESOLVED: gdb.base/default.exp: search
new UNRESOLVED: gdb.base/default.exp: section
new UNRESOLVED: gdb.base/default.exp: set
new UNRESOLVED: gdb.base/default.exp: set annotate
new UNRESOLVED: gdb.base/default.exp: set args
new UNRESOLVED: gdb.base/default.exp: set check "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check "ch" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check "check" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check range
new UNRESOLVED: gdb.base/default.exp: set check type
new UNRESOLVED: gdb.base/default.exp: set complaints
new UNRESOLVED: gdb.base/default.exp: set confirm
new UNRESOLVED: gdb.base/default.exp: set environment
new UNRESOLVED: gdb.base/default.exp: set height
new UNRESOLVED: gdb.base/default.exp: set history
new UNRESOLVED: gdb.base/default.exp: set history expansion
new UNRESOLVED: gdb.base/default.exp: set history filename
new UNRESOLVED: gdb.base/default.exp: set history save
new UNRESOLVED: gdb.base/default.exp: set history save off
new UNRESOLVED: gdb.base/default.exp: set history size
new UNRESOLVED: gdb.base/default.exp: set language
new UNRESOLVED: gdb.base/default.exp: set listsize
new UNRESOLVED: gdb.base/default.exp: set print
new UNRESOLVED: gdb.base/default.exp: set print "p" abbreviation
new UNRESOLVED: gdb.base/default.exp: set print "pr" abbreviation
new UNRESOLVED: gdb.base/default.exp: set print address
new UNRESOLVED: gdb.base/default.exp: set print array
new UNRESOLVED: gdb.base/default.exp: set print asm-demangle
new UNRESOLVED: gdb.base/default.exp: set print demangle
new UNRESOLVED: gdb.base/default.exp: set print elements
new UNRESOLVED: gdb.base/default.exp: set print object
new UNRESOLVED: gdb.base/default.exp: set print pretty
new UNRESOLVED: gdb.base/default.exp: set print sevenbit-strings
new UNRESOLVED: gdb.base/default.exp: set print union
new UNRESOLVED: gdb.base/default.exp: set print vtbl
new UNRESOLVED: gdb.base/default.exp: set radix
new UNRESOLVED: gdb.base/default.exp: set the history filename
new UNRESOLVED: gdb.base/default.exp: set variable
new UNRESOLVED: gdb.base/default.exp: set verbose
new UNRESOLVED: gdb.base/default.exp: set width
new UNRESOLVED: gdb.base/default.exp: set write
new UNRESOLVED: gdb.base/default.exp: shell echo Hi dad!
new UNRESOLVED: gdb.base/default.exp: show
new UNRESOLVED: gdb.base/default.exp: show annotate
new UNRESOLVED: gdb.base/default.exp: show args
new UNRESOLVED: gdb.base/default.exp: show check "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check "ch" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check "check" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check range
new UNRESOLVED: gdb.base/default.exp: show check type
new UNRESOLVED: gdb.base/default.exp: show commands
new UNRESOLVED: gdb.base/default.exp: show complaints
new UNRESOLVED: gdb.base/default.exp: show confirm
new UNRESOLVED: gdb.base/default.exp: show convenience
new UNRESOLVED: gdb.base/default.exp: show directories
new UNRESOLVED: gdb.base/default.exp: show editing
new UNRESOLVED: gdb.base/default.exp: show height
new UNRESOLVED: gdb.base/default.exp: show history
new UNRESOLVED: gdb.base/default.exp: show history expansion
new UNRESOLVED: gdb.base/default.exp: show history filename
new UNRESOLVED: gdb.base/default.exp: show history save
new UNRESOLVED: gdb.base/default.exp: show history size
new UNRESOLVED: gdb.base/default.exp: show language
new UNRESOLVED: gdb.base/default.exp: show listsize
new UNRESOLVED: gdb.base/default.exp: show p
new UNRESOLVED: gdb.base/default.exp: show paths
new UNRESOLVED: gdb.base/default.exp: show pr
new UNRESOLVED: gdb.base/default.exp: show print
new UNRESOLVED: gdb.base/default.exp: show print address
new UNRESOLVED: gdb.base/default.exp: show print array
new UNRESOLVED: gdb.base/default.exp: show print asm-demangle
new UNRESOLVED: gdb.base/default.exp: show print demangle
new UNRESOLVED: gdb.base/default.exp: show print elements
new UNRESOLVED: gdb.base/default.exp: show print object
new UNRESOLVED: gdb.base/default.exp: show print pretty
new UNRESOLVED: gdb.base/default.exp: show print sevenbit-strings
new UNRESOLVED: gdb.base/default.exp: show print union
new UNRESOLVED: gdb.base/default.exp: show print vtbl
new UNRESOLVED: gdb.base/default.exp: show prompt
new UNRESOLVED: gdb.base/default.exp: show radix
new UNRESOLVED: gdb.base/default.exp: show user
new UNRESOLVED: gdb.base/default.exp: show values
new UNRESOLVED: gdb.base/default.exp: show verbose
new UNRESOLVED: gdb.base/default.exp: show version
new UNRESOLVED: gdb.base/default.exp: show width
new UNRESOLVED: gdb.base/default.exp: show write
new UNRESOLVED: gdb.base/default.exp: signal
new UNRESOLVED: gdb.base/default.exp: source
new UNRESOLVED: gdb.base/default.exp: step "s" abbreviation #1
new UNRESOLVED: gdb.base/default.exp: step "s" abbreviation #2
new UNRESOLVED: gdb.base/default.exp: step #1
new UNRESOLVED: gdb.base/default.exp: step #2
new UNRESOLVED: gdb.base/default.exp: stepi
new UNRESOLVED: gdb.base/default.exp: stepi "si" abbreviation
new UNRESOLVED: gdb.base/default.exp: symbol-file
new UNRESOLVED: gdb.base/default.exp: target
new UNRESOLVED: gdb.base/default.exp: target native
new UNRESOLVED: gdb.base/default.exp: tbreak
new UNRESOLVED: gdb.base/default.exp: thread
new UNRESOLVED: gdb.base/default.exp: thread apply
new UNRESOLVED: gdb.base/default.exp: thread find
new UNRESOLVED: gdb.base/default.exp: thread name
new UNRESOLVED: gdb.base/default.exp: undisplay prompt
new UNRESOLVED: gdb.base/default.exp: unset
new UNRESOLVED: gdb.base/default.exp: unset environment prompt
new UNRESOLVED: gdb.base/default.exp: until
new UNRESOLVED: gdb.base/default.exp: until "u" abbreviation
new UNRESOLVED: gdb.base/default.exp: up-silently
new UNRESOLVED: gdb.base/default.exp: verify python support
new UNRESOLVED: gdb.base/default.exp: watch
new UNRESOLVED: gdb.base/default.exp: whatis
new UNRESOLVED: gdb.base/default.exp: where
new UNRESOLVED: gdb.base/default.exp: x
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567890123456789012345678901234dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567890123456dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567890123456.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567890123456789012345678901234.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567890123456789012345678901234dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567890123456dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E384dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E6144dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E96df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2147483648ll
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2147483648ull
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2ll
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 4294967296ull
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd < 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd < 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df + 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df + 1.2f
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df < 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df < 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df > 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl < 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl < 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl > 2
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd * 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd + 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd - 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd / 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df * 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df + 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df - 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df / 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl * 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl + 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl - 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl / 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567890123456.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567890123456789012345678901234.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 + 1.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 > 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 > 3.1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.1dd + 2.7df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.1df + 2.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.3dd + 2.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.3dl + 2.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.6df + 2.7dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.6dl + 2.7df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 3 + 2.1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 1.2df + 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2 + 1.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dd + 2.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dd + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dl + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 3 + 2.1dl
new UNRESOLVED: gdb.base/echo.exp: echo test
new UNRESOLVED: gdb.base/empty_exe.exp: file ''
new UNRESOLVED: gdb.base/empty_exe.exp: print 1
new UNRESOLVED: gdb.base/endian.exp: auto target endianness
new UNRESOLVED: gdb.base/endian.exp: auto target endianness big
new UNRESOLVED: gdb.base/endian.exp: auto target endianness little
new UNRESOLVED: gdb.base/endian.exp: default target endianness
new UNRESOLVED: gdb.base/endian.exp: get target endianness
new FAIL: gdb.base/endian.exp: override auto target endianness big
new FAIL: gdb.base/endian.exp: override auto target endianness little
new UNRESOLVED: gdb.base/endian.exp: override target endianness big
new FAIL: gdb.base/endian.exp: override target endianness little
new UNRESOLVED: gdb.base/endian.exp: previously big default executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously big default no executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously little default executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously little default no executable endianness
new UNRESOLVED: gdb.base/endian.exp: set target endianness
new UNRESOLVED: gdb.base/endian.exp: set target endianness big
new UNRESOLVED: gdb.base/endian.exp: set target endianness little
new UNRESOLVED: gdb.base/environ.exp: all environment variables have been unset
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable previously undefined
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable using = syntax
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable with trailing equals
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable with trailing whitespace
new UNRESOLVED: gdb.base/environ.exp: confirm unset environment variable worked
new UNRESOLVED: gdb.base/environ.exp: set environment variable
new UNRESOLVED: gdb.base/environ.exp: set environment variable previously undefined
new UNRESOLVED: gdb.base/environ.exp: set environment variable to null value
new UNRESOLVED: gdb.base/environ.exp: set environment variable using = syntax
new UNRESOLVED: gdb.base/environ.exp: set environment variable with trailing equals
new UNRESOLVED: gdb.base/environ.exp: set environment variable with trailing whitespace
new UNRESOLVED: gdb.base/environ.exp: set environment without arguments
new UNRESOLVED: gdb.base/environ.exp: set environment without variable name
new UNRESOLVED: gdb.base/environ.exp: set path works properly
new UNRESOLVED: gdb.base/environ.exp: show environment works
new UNRESOLVED: gdb.base/environ.exp: show non-existent environment variable
new UNRESOLVED: gdb.base/environ.exp: show null environment variable
new UNRESOLVED: gdb.base/environ.exp: show paths works properly
new UNRESOLVED: gdb.base/environ.exp: unset all environment variables
new UNRESOLVED: gdb.base/environ.exp: unset environment variable
new UNRESOLVED: gdb.base/eval.exp: first eval.
new UNRESOLVED: gdb.base/eval.exp: initialize $a.
new UNRESOLVED: gdb.base/eval.exp: second eval.
new UNRESOLVED: gdb.base/frameapply.exp: can't run to setup_done
new UNRESOLVED: gdb.base/gdb1056.exp: print 1/0
new UNRESOLVED: gdb.base/gdb1056.exp: test unsigned division by zero
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize= 20 : show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize= 20 : show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5ab: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5ab: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=0: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=0: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=10zab: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=10zab: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=20: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=20: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=50: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=50: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=99999999999999999999999999999999999: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=99999999999999999999999999999999999: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=not_an_integer: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=not_an_integer: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=1000: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=1000: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=foo: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=foo: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/zero: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/zero: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: appending: server show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: creating: server show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: print 1
new UNRESOLVED: gdb.base/help.exp: apropos \
new UNRESOLVED: gdb.base/help.exp: apropos apropos
new UNRESOLVED: gdb.base/help.exp: apropos handle signal
new UNRESOLVED: gdb.base/help.exp: disable pagination
new UNRESOLVED: gdb.base/help.exp: help aliases
new UNRESOLVED: gdb.base/help.exp: help backtrace
new UNRESOLVED: gdb.base/help.exp: help backtrace "bt" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "b" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "br" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "bre" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "brea" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "break" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoints
new UNRESOLVED: gdb.base/help.exp: help commands
new UNRESOLVED: gdb.base/help.exp: help data
new UNRESOLVED: gdb.base/help.exp: help delete
new UNRESOLVED: gdb.base/help.exp: help delete "d" abbreviation
new UNRESOLVED: gdb.base/help.exp: help files
new UNRESOLVED: gdb.base/help.exp: help gotcha
new UNRESOLVED: gdb.base/help.exp: help help
new UNRESOLVED: gdb.base/help.exp: help help "h" abbreviation
new UNRESOLVED: gdb.base/help.exp: help info bogus-gdb-command
new UNRESOLVED: gdb.base/help.exp: help internals
new UNRESOLVED: gdb.base/help.exp: help obscure
new UNRESOLVED: gdb.base/help.exp: help running
new UNRESOLVED: gdb.base/help.exp: help show commands
new UNRESOLVED: gdb.base/help.exp: help show confirm
new UNRESOLVED: gdb.base/help.exp: help show copying
new UNRESOLVED: gdb.base/help.exp: help show warranty
new UNRESOLVED: gdb.base/help.exp: help stack
new UNRESOLVED: gdb.base/help.exp: help status
new UNRESOLVED: gdb.base/help.exp: help support
new UNRESOLVED: gdb.base/help.exp: help tracepoints
new UNRESOLVED: gdb.base/help.exp: help user-defined
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: set history remove-duplicates 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: set history remove-duplicates 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: set history remove-duplicates 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 3
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 4
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 3
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 4
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: set history remove-duplicates unlimited
new UNRESOLVED: gdb.base/history-duplicates.exp: show editing
new UNRESOLVED: gdb.base/history-duplicates.exp: show history remove-duplicates
new UNRESOLVED: gdb.base/ifelse.exp: call original define
new UNRESOLVED: gdb.base/ifelse.exp: call replacement define
new UNRESOLVED: gdb.base/ifelse.exp: create define with empty else
new UNRESOLVED: gdb.base/ifelse.exp: if 0 .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 0 with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 1 .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 1 with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #1
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #2
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #3
new UNRESOLVED: gdb.base/ifelse.exp: replace define with if .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: set confirm off
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tc-td: 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-tc-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ts: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tf: 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-tf-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-ts: 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-ti-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tl-td: 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-tl-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-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-td: 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-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tld: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tll-tf: 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-td: 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-ts-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ts: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tc-td: 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-tc-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-ts: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tf: 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-tf-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-ts: 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-ti-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tl-td: 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-tl-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-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-td: 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-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tld: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tll-tf: 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-td: 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-ts-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ts: failed to compile
new FAIL: gdb.base/info-os.exp: cannot compile test program
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode on
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode on
new UNRESOLVED: gdb.base/interact.exp: show interactive-mode
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode on
new UNRESOLVED: gdb.base/interp.exp: run to main
new UNRESOLVED: gdb.base/multi-line-starts-subshell.exp: gdb input still works
new UNRESOLVED: gdb.base/multi-line-starts-subshell.exp: spawn subshell from multi-line
new UNRESOLVED: gdb.base/osabi.exp: set debug arch 1
new UNRESOLVED: gdb.base/osabi.exp: set osabi none
new UNRESOLVED: gdb.base/page.exp: paged count
new UNRESOLVED: gdb.base/page.exp: paged count for interrupt
new UNRESOLVED: gdb.base/page.exp: paged count remainder
new UNRESOLVED: gdb.base/page.exp: paged help
new UNRESOLVED: gdb.base/page.exp: pagination is off
new UNRESOLVED: gdb.base/page.exp: pagination is on
new UNRESOLVED: gdb.base/page.exp: q
new UNRESOLVED: gdb.base/page.exp: quit while paging
new UNRESOLVED: gdb.base/page.exp: set editing off
new UNRESOLVED: gdb.base/page.exp: set height -1
new UNRESOLVED: gdb.base/page.exp: set height 10
new UNRESOLVED: gdb.base/page.exp: set height 5
new UNRESOLVED: gdb.base/page.exp: set pagination off
new UNRESOLVED: gdb.base/page.exp: set pagination on
new UNRESOLVED: gdb.base/page.exp: set width -1
new UNRESOLVED: gdb.base/page.exp: set width 30
new UNRESOLVED: gdb.base/page.exp: size=0: set height 0
new UNRESOLVED: gdb.base/page.exp: size=0: set height 200
new UNRESOLVED: gdb.base/page.exp: size=0: set width 0
new UNRESOLVED: gdb.base/page.exp: size=0: set width 200
new UNRESOLVED: gdb.base/page.exp: size=0: show height
new UNRESOLVED: gdb.base/page.exp: size=0: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=0: show width
new UNRESOLVED: gdb.base/page.exp: size=0: show width unlimited
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set height 0x80000000
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set height 200
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set width 0x80000000
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set width 200
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show height
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show width
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show width unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set height 200
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set height unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set width 200
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set width unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show height
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show width
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show width unlimited
new UNRESOLVED: gdb.base/page.exp: unpaged help
new UNRESOLVED: gdb.base/quit.exp: quit with expression
new UNRESOLVED: gdb.base/quit.exp: quit with syntax error
new UNRESOLVED: gdb.base/radix.exp: Output radix unchanged after rejecting 0
new UNRESOLVED: gdb.base/radix.exp: Reject input-radix 0
new UNRESOLVED: gdb.base/radix.exp: Reject input-radix 1
new UNRESOLVED: gdb.base/radix.exp: Reject output-radix 0
new UNRESOLVED: gdb.base/radix.exp: Reject output-radix 1
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 10
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 16
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 2
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 3
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 8
new UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 10
new UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 16
new UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 8
new UNRESOLVED: gdb.base/radix.exp: input radix unchanged after rejecting 0
new UNRESOLVED: gdb.base/radix.exp: input radix unchanged after rejecting 1
new UNRESOLVED: gdb.base/radix.exp: output radix unchanged after rejecting 1
new UNRESOLVED: gdb.base/radix.exp: output radix unchanged after rejection through set radix command
new UNRESOLVED: gdb.base/radix.exp: print
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -100; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -256; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -4; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -64; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -9; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -101; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -10; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -257; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -5; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -65; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -10; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -16; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -2; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -3; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -8; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -11; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -17; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -3; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -4; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -9; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -12; expect -12; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -20; expect -16; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -2; expect Invalid number "2"\.; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -9; expect Invalid number "9".; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 010; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 17; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect f; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 100; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 100; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 144; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 256; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 4; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 64; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 64; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 9; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 10101; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 21; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 4161; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 65793; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 91; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 101; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 10; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 257; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 5; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 65; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 10; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 10; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 12; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 16; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 2; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 3; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 8; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10; expect a; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 11; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 17; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 3; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 4; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 9; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 14; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 24; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20; expect 16; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20; expect 6; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 2; expect 2; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 30; expect Invalid number "30"\.; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 3; expect Invalid number "3"\.; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 4; expect Invalid number "4"\.; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 8; expect Invalid number "8".; input radix 8
new UNRESOLVED: gdb.base/radix.exp: reset radices
new UNRESOLVED: gdb.base/radix.exp: set input-radix 10
new UNRESOLVED: gdb.base/radix.exp: set input-radix 16
new UNRESOLVED: gdb.base/radix.exp: set input-radix 2
new UNRESOLVED: gdb.base/radix.exp: set input-radix 3
new UNRESOLVED: gdb.base/radix.exp: set input-radix 8
new UNRESOLVED: gdb.base/radix.exp: set output-radix 10
new UNRESOLVED: gdb.base/radix.exp: set output-radix 16
new UNRESOLVED: gdb.base/radix.exp: set output-radix 8
new UNRESOLVED: gdb.base/radix.exp: set radix 7 rejected
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 10
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 16
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 2
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 3
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 8
new UNRESOLVED: gdb.base/radix.exp: show radix, output radix 10
new UNRESOLVED: gdb.base/radix.exp: show radix, output radix 16
new UNRESOLVED: gdb.base/radix.exp: show radix, output radix 8
new UNRESOLVED: gdb.base/readline.exp: Simple operate-and-get-next - send p 1
new UNRESOLVED: gdb.base/readline.exp: arrow keys with secondary prompt
new UNRESOLVED: gdb.base/readline.exp: operate-and-get-next with secondary prompt - send if 1 > 0
new UNRESOLVED: gdb.base/readline.exp: print 42
new UNRESOLVED: gdb.base/readline.exp: show editing
new UNRESOLVED: gdb.base/remotetimeout.exp: correct remotetimeout printed
new UNRESOLVED: gdb.base/shell.exp: ! echo foo
new UNRESOLVED: gdb.base/shell.exp: ! exit 0
new UNRESOLVED: gdb.base/shell.exp: ! exit 1
new UNRESOLVED: gdb.base/shell.exp: ! kill -2 $$
new UNRESOLVED: gdb.base/shell.exp: !echo foo
new UNRESOLVED: gdb.base/shell.exp: -d spaces value missing
new UNRESOLVED: gdb.base/shell.exp: -d value missing
new UNRESOLVED: gdb.base/shell.exp: DELIM delimiter missing
new UNRESOLVED: gdb.base/shell.exp: SHELL_COMMAND missing
new UNRESOLVED: gdb.base/shell.exp: SHELL_COMMAND missing with delimiter
new UNRESOLVED: gdb.base/shell.exp: all missing
new UNRESOLVED: gdb.base/shell.exp: alternate 1char delim
new UNRESOLVED: gdb.base/shell.exp: alternate 1char delim, no space
new UNRESOLVED: gdb.base/shell.exp: alternate 3char delim
new UNRESOLVED: gdb.base/shell.exp: alternate 3char delim, no space
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe print 1 | "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| print 1 | "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|print 1 | "
new UNRESOLVED: gdb.base/shell.exp: define foo
new UNRESOLVED: gdb.base/shell.exp: delimiter missing due to missing space
new UNRESOLVED: gdb.base/shell.exp: double pipe
new UNRESOLVED: gdb.base/shell.exp: double pipe, pipe char
new UNRESOLVED: gdb.base/shell.exp: echo coucou
new UNRESOLVED: gdb.base/shell.exp: enter commands
new UNRESOLVED: gdb.base/shell.exp: no space around pipe char
new UNRESOLVED: gdb.base/shell.exp: pipe fail exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe fail exitsignal
new UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitsignal
new UNRESOLVED: gdb.base/shell.exp: pipe success exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe success exitsignal
new UNRESOLVED: gdb.base/shell.exp: repeat previous command
new UNRESOLVED: gdb.base/shell.exp: set max-completions 0
new UNRESOLVED: gdb.base/shell.exp: set max-completions 2
new UNRESOLVED: gdb.base/shell.exp: shell echo foo
new UNRESOLVED: gdb.base/shell.exp: shell fail exitcode
new UNRESOLVED: gdb.base/shell.exp: shell fail exitsignal
new UNRESOLVED: gdb.base/shell.exp: shell interrupt exitcode
new UNRESOLVED: gdb.base/shell.exp: shell interrupt exitsignal
new UNRESOLVED: gdb.base/shell.exp: shell success exitcode
new UNRESOLVED: gdb.base/shell.exp: shell success exitsignal
new UNRESOLVED: gdb.base/shell.exp: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
new UNRESOLVED: gdb.base/shell.exp: simple pipe
new UNRESOLVED: gdb.base/shell.exp: simple pipe with arg
new UNRESOLVED: gdb.base/shell.exp: | delimiter missing
new UNRESOLVED: gdb.base/shell.exp: |p 123| exit 0
new UNRESOLVED: gdb.base/shell.exp: |p 123| exit 1
new UNRESOLVED: gdb.base/shell.exp: |p 123| kill -2 $$
new UNRESOLVED: gdb.base/source-dir.exp: directory /nOtExStInG/a /nOtExStInG/b /nOtExStInG/c
new UNRESOLVED: gdb.base/source-dir.exp: directory /nOtExStInG/b /nOtExStInG/d /nOtExStInG/c
new UNRESOLVED: gdb.base/source.exp: script contains error
new UNRESOLVED: gdb.base/source.exp: set search directories
new UNRESOLVED: gdb.base/source.exp: source -s
new UNRESOLVED: gdb.base/source.exp: source -s -v
new UNRESOLVED: gdb.base/source.exp: source -v
new UNRESOLVED: gdb.base/source.exp: source -v -s
new UNRESOLVED: gdb.base/source.exp: source after -v
new UNRESOLVED: gdb.base/source.exp: source for-sure-nonexistant-file
new UNRESOLVED: gdb.base/source.exp: source source-nofile.gdb
new UNRESOLVED: gdb.base/step-over-syscall.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/step-over-syscall.exp: run to main
new UNRESOLVED: gdb.base/subst.exp: add depuis -> vers substitution rule
new UNRESOLVED: gdb.base/subst.exp: add from -> to substitution rule
new UNRESOLVED: gdb.base/subst.exp: add from1 -> to1 substitution rule
new UNRESOLVED: gdb.base/subst.exp: add source -> destination substitution rule
new UNRESOLVED: gdb.base/subst.exp: add substitution rule to empty string
new UNRESOLVED: gdb.base/subst.exp: deactivate GDB's confirmation interface
new UNRESOLVED: gdb.base/subst.exp: remove all remaining substitution rules
new UNRESOLVED: gdb.base/subst.exp: remove default substitution rules
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, first argument is empty string
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, too few arguments
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, too many arguments
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after all remaining rules removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after depuis rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after empty rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after from rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path depuis, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, after unsetting it
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from/path, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from_a_bad_path, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path garbage, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: show substitute-path, too many arguments
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path depuis
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path empty
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from after the rule was removed
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path, too many arguments
new UNRESOLVED: gdb.base/trace-commands.exp: define user command
new UNRESOLVED: gdb.base/trace-commands.exp: depth resets on error part 1
new UNRESOLVED: gdb.base/trace-commands.exp: depth resets on error part 2
new UNRESOLVED: gdb.base/trace-commands.exp: nested trace-commands test
new UNRESOLVED: gdb.base/trace-commands.exp: nested trace-commands test with source
new UNRESOLVED: gdb.base/trace-commands.exp: set trace-commands
new UNRESOLVED: gdb.base/trace-commands.exp: show trace-commands says off
new UNRESOLVED: gdb.base/trace-commands.exp: show trace-commands says on
new UNRESOLVED: gdb.base/trace-commands.exp: simple trace-commands test
new UNRESOLVED: gdb.base/trace-commands.exp: source -v
new UNRESOLVED: gdb.base/vla-optimized-out.exp: o1: can't run to f1
new UNRESOLVED: gdb.base/warning.exp: echo 23\n
new UNRESOLVED: gdb.btrace/cpu.exp: default cpu
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu auto
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/1
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0x0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo/bar
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu none
new UNRESOLVED: gdb.btrace/cpu.exp: set record
new UNRESOLVED: gdb.btrace/cpu.exp: set record btrace
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu auto
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/1
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0x0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo/bar
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu none
new UNRESOLVED: gdb.cp/debug-expr.exp: print dynamic_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: print reinterpret_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: print static_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: set debug expression 1
new UNRESOLVED: gdb.cp/debug-expr.exp: set language c++
new UNRESOLVED: gdb.cp/demangle.exp: auto: check demangling style
new UNRESOLVED: gdb.cp/demangle.exp: auto: set demangle-style
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c -- _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c++ -- _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c++ _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l garbage xyzdje
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z13BitPatterntoaOK10BitPatternccc
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z31DrawDestinationTransformedImageP7_XImageiiS0_iimjiijmmP4_XGCOK13ivTransformeriiii
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z3argOK7Complex
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN11RelateManip6EffectEO7ivEvent
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN20DisplayList_IteratorC4EO11DisplayList
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN3fooC4EOS_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN3fooC4EiOS_iS0_iS0_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE3PixC4EOKS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE7elementC2EOKS0_PS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE7elementC4EOKS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityEC4EOKS1_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4PixXI11VHDLLibrary14VHDLLibraryRep4ListI10VHDLEntityEEC2EOKS5_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN7ivWorldC2EPKcOiPPcPK12ivOptionDescPK14ivPropertyData
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN8TextCode14CoreConstDeclsEO7ostream
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic: gnu-v3: check demangling style
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic: gnu-v3: set demangle-style
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK11VHDLLibrary5nextEEO4PixXIS_14VHDLLibraryRep4ListI10VHDLEntityEE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK4ListI10VHDLEntityE4nextEONS1_3PixE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK4ListI10VHDLEntityEclEOKNS1_3PixE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOK10BitPattern
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOK12BitSubStringi
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOKS_
new UNRESOLVED: gdb.cp/demangle.exp: set language c++
new UNRESOLVED: gdb.cp/demangle.exp: set language unknown
new UNRESOLVED: gdb.cp/demangle.exp: set width 0
new UNRESOLVED: gdb.cp/maint.exp: help maint cp
new UNRESOLVED: gdb.cp/maint.exp: help maint cp first_component
new UNRESOLVED: gdb.cp/maint.exp: help maint cp namespace
new UNRESOLVED: gdb.cp/maint.exp: help maintenance cplus
new UNRESOLVED: gdb.cp/maint.exp: maint cp
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component C<A>::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component C<std::basic_streambuf<wchar_t,std::char_traits<wchar_t> > >::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component T<Cooperator>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component bool operator<<char>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo::bar::baz
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<&
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<&operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int operator<< <char>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator  ->
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator ->
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator>>
new UNRESOLVED: gdb.cp/maint.exp: maint cp namespace
new UNRESOLVED: gdb.cp/maint.exp: set complaints 1000
new UNRESOLVED: gdb.cp/punctuator.exp: print
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 1
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 2
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 3
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 1
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 2
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 3
new UNRESOLVED: gdb.cp/punctuator.exp: set lang c++
new KFAIL: gdb.cp/re-set-overloaded.exp: breakpoint resolved
new UNRESOLVED: gdb.cp/re-set-overloaded.exp: start
new UNRESOLVED: gdb.cp/ref-params.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/ref-params.exp: print value of Child& in f2
new UNRESOLVED: gdb.cp/ref-params.exp: print value of Parent& in f1
new UNRESOLVED: gdb.cp/ref-params.exp: print value of a Child in main
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on Child in main
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on Child& in f2
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f2 on
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f2 on Child in main
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print f1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print mf1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print mf2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Child&& in f2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Child&& in f2: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Parent&& in f1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Parent&& in f1: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f1 on
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f1 on Child&& in f2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f2 on
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char16_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char16_t is unsigned
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char32_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char32_t is unsigned
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p L"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p U"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p u"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: set language c++
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: sizeof
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: wchar_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: wchar_t sign
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: char16_t is not built-in
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: char32_t is not built-in
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p L"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p U"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p u"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: set language c
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: wchar_t is not built-in
new UNRESOLVED: gdb.disasm/disassembler-options.exp: set disassembler-options
new UNRESOLVED: gdb.disasm/disassembler-options.exp: set disassembler-options invalid_option_value
new UNRESOLVED: gdb.disasm/disassembler-options.exp: show NULL disassembler-options
new UNRESOLVED: gdb.dlang/watch-loc.exp: disassemble _Dmain
new UNRESOLVED: gdb.dlang/watch-loc.exp: p _Dmain_label - _Dmain
new UNRESOLVED: gdb.dlang/watch-loc.exp: x/2i _Dmain+
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p g_label - g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i g+
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: console: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: console: set print object on
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: disassemble func01
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: p func01_label - func01
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: x/2i func01+
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p bar_label - bar
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p baz_label - baz
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_cold_label - foo_cold
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_label - foo
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p main_label - main
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble bar
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble baz
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble foo
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble foo_low
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p bar_label - bar
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p baz_label - baz
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p foo_label - foo
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p foo_low_label - foo_low
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i bar+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i baz+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i foo+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i foo_low+
new UNRESOLVED: gdb.dwarf2/implref-struct.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: disassemble mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: p mymain_label - mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: x/2i mymain+
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/void-type.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/void-type.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i main+
new UNRESOLVED: gdb.guile/guile.exp: collect help from uiout
new UNRESOLVED: gdb.guile/guile.exp: guile
new UNRESOLVED: gdb.guile/guile.exp: show guile command - define zzq
new UNRESOLVED: gdb.guile/guile.exp: source -s source2.scm
new UNRESOLVED: gdb.guile/guile.exp: source source2.scm
new UNRESOLVED: gdb.guile/guile.exp: verify guile support
new UNRESOLVED: gdb.guile/guile.exp: verify help to uiout
new UNRESOLVED: gdb.guile/scm-error.exp: backtrace printed
new UNRESOLVED: gdb.guile/scm-error.exp: error loading scm file caught
new UNRESOLVED: gdb.guile/scm-error.exp: error message printed
new UNRESOLVED: gdb.guile/scm-error.exp: guile
new UNRESOLVED: gdb.guile/scm-error.exp: no delayed error
new UNRESOLVED: gdb.guile/scm-error.exp: no error printed
new UNRESOLVED: gdb.guile/scm-error.exp: reset print-stack to default, post set/show tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to full, for backtrace test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error printing tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to none, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: source /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.guile/scm-error/scm-error-2.scm
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack full setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack none setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting of default
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to full
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to none
new UNRESOLVED: gdb.guile/scm-error.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-gsmob.exp: gu
new UNRESOLVED: gdb.guile/scm-gsmob.exp: guile
new UNRESOLVED: gdb.guile/scm-gsmob.exp: object-properties
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-parameter.exp: Simple gdb boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: enum gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: error registering existing parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: file gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously ambiguously named boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set print s on
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: restricted gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: enum parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set invalid enum parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set print test-enum-param two
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: initial parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: new parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param bar.txt
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set print test-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 10
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 42
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: show test-restricted-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set print test-undoc-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: undocumented gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: verify guile support
new UNRESOLVED: gdb.objc/print.exp: set language objective-c
new UNRESOLVED: gdb.pascal/print.exp: set language pascal
new UNRESOLVED: gdb.pascal/types.exp: set language pascal
new UNRESOLVED: gdb.python/py-block.exp: can't run to main
new UNRESOLVED: gdb.python/py-completion.exp: check if python 3
new UNRESOLVED: gdb.python/py-completion.exp: discard #1
new UNRESOLVED: gdb.python/py-completion.exp: discard #2
new UNRESOLVED: gdb.python/py-completion.exp: discard #3
new UNRESOLVED: gdb.python/py-completion.exp: discard #4
new UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completel'
new UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit1 c'
new UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit2 c'
new UNRESOLVED: gdb.python/py-completion.exp: load python file
new UNRESOLVED: gdb.python/py-completion.exp: load python file again
new UNRESOLVED: gdb.python/py-completion.exp: show editing
new UNRESOLVED: gdb.python/py-completion.exp: verify python support
new UNRESOLVED: gdb.python/py-error.exp: check if python 3
new UNRESOLVED: gdb.python/py-error.exp: main reached
new UNRESOLVED: gdb.python/py-error.exp: no delayed error
new UNRESOLVED: gdb.python/py-error.exp: set host-charset IBM1047
new UNRESOLVED: gdb.python/py-error.exp: verify python support
new KFAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new UNRESOLVED: gdb.python/py-function.exp: Test GDBError - python
new UNRESOLVED: gdb.python/py-function.exp: Test GdbError.  There should not be a stack trace
new UNRESOLVED: gdb.python/py-function.exp: Test Normal Error - python
new UNRESOLVED: gdb.python/py-function.exp: Test a Runtime error.  There should be a stack trace.
new UNRESOLVED: gdb.python/py-function.exp: call function
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = ada
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = asm
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = auto
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = c
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = c++
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = d
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = fortran
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = go
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = minimal
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = modula-2
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = objective-c
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = opencl
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = pascal
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = rust
new UNRESOLVED: gdb.python/py-function.exp: call yes with &&
new UNRESOLVED: gdb.python/py-function.exp: call yes with ||
new UNRESOLVED: gdb.python/py-function.exp: check if python 3
new UNRESOLVED: gdb.python/py-function.exp: input command-calling function - python
new UNRESOLVED: gdb.python/py-function.exp: input convenience function - python
new UNRESOLVED: gdb.python/py-function.exp: input int-returning function - python
new UNRESOLVED: gdb.python/py-function.exp: input value-returning convenience function - python
new UNRESOLVED: gdb.python/py-function.exp: set language ada
new UNRESOLVED: gdb.python/py-function.exp: set language asm
new UNRESOLVED: gdb.python/py-function.exp: set language auto
new UNRESOLVED: gdb.python/py-function.exp: set language c
new UNRESOLVED: gdb.python/py-function.exp: set language c++
new UNRESOLVED: gdb.python/py-function.exp: set language d
new UNRESOLVED: gdb.python/py-function.exp: set language fortran
new UNRESOLVED: gdb.python/py-function.exp: set language go
new UNRESOLVED: gdb.python/py-function.exp: set language minimal
new UNRESOLVED: gdb.python/py-function.exp: set language modula-2
new UNRESOLVED: gdb.python/py-function.exp: set language objective-c
new UNRESOLVED: gdb.python/py-function.exp: set language opencl
new UNRESOLVED: gdb.python/py-function.exp: set language pascal
new UNRESOLVED: gdb.python/py-function.exp: set language rust
new UNRESOLVED: gdb.python/py-function.exp: set python print-stack full
new UNRESOLVED: gdb.python/py-function.exp: setting a value from a function which executes a command, again.
new UNRESOLVED: gdb.python/py-function.exp: setting a value from a function which executes a command.
new UNRESOLVED: gdb.python/py-function.exp: verify python support
new UNRESOLVED: gdb.python/py-lookup-type.exp: check if python 3
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type CARDINAL using language modula-2
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language c
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language objective-c
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language pascal
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type character using language ada
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type character using language fortran
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type int32 using language go
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type ucent using language d
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type ushort using language opencl
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language ada
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language c
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language d
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language fortran
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language go
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language modula-2
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language objective-c
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language opencl
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language pascal
new UNRESOLVED: gdb.python/py-lookup-type.exp: verify python support
new UNRESOLVED: gdb.python/py-nested-maps.exp: check if python 3
new UNRESOLVED: gdb.python/py-nested-maps.exp: verify python support
new UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER - python
new UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER_UNLIMITED - python
new UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb booleanparameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: Throwing gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: check if python 3
new UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value can be set to -1
new UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value is -1 after setting
new UNRESOLVED: gdb.python/py-parameter.exp: enum gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: file gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: gdb.GdbError does not show Python stack
new UNRESOLVED: gdb.python/py-parameter.exp: python print
new UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -1
new UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -5
new UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER_UNLIMITED.value = -5
new UNRESOLVED: gdb.python/py-parameter.exp: set enum to two
new UNRESOLVED: gdb.python/py-parameter.exp: set invalid enum parameter
new UNRESOLVED: gdb.python/py-parameter.exp: set new file parameter
new UNRESOLVED: gdb.python/py-parameter.exp: set test-file-param
new UNRESOLVED: gdb.python/py-parameter.exp: show initial file value
new UNRESOLVED: gdb.python/py-parameter.exp: show new file value
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter is initial value
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter is new value
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter off
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter on
new UNRESOLVED: gdb.python/py-parameter.exp: test enum parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test file parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test general help
new UNRESOLVED: gdb.python/py-parameter.exp: test new file parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test set help
new UNRESOLVED: gdb.python/py-parameter.exp: test show help
new UNRESOLVED: gdb.python/py-parameter.exp: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: verify python support
new UNRESOLVED: gdb.python/py-prettyprint.exp: check if python 3
new UNRESOLVED: gdb.python/py-prettyprint.exp: verify python support
new UNRESOLVED: gdb.python/py-prompt.exp: check if python 3
new UNRESOLVED: gdb.python/py-prompt.exp: verify python support
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sigall-precsave.exp
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sigall-reverse.exp
new UNRESOLVED: gdb.rust/expr.exp: set language rust
new UNRESOLVED: gdb.rust/expr.exp: set var $something = 27
new FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
new FAIL: gdb.server/unittest.exp: unit tests
new UNRESOLVED: gdb.trace/actions.exp: failed to compile
new UNRESOLVED: gdb.trace/ax.exp: failed to compile
new UNRESOLVED: gdb.trace/deltrace.exp: failed to compile
new UNRESOLVED: gdb.trace/infotrace.exp: failed to compile
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with missing argument
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with too many arguments
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with wrong option
new UNRESOLVED: gdb.trace/packetlen.exp: failed to compile
new UNRESOLVED: gdb.trace/passc-dyn.exp: failed to compile
new UNRESOLVED: gdb.trace/passcount.exp: failed to compile
new UNRESOLVED: gdb.trace/report.exp: failed to compile
new UNRESOLVED: gdb.trace/save-trace.exp: failed to compile
new UNRESOLVED: gdb.trace/tfind.exp: failed to compile
new UNRESOLVED: gdb.trace/tracecmd.exp: failed to compile
new UNRESOLVED: gdb.trace/tsv.exp: failed to compile
new UNRESOLVED: gdb.trace/while-dyn.exp: failed to compile
new UNRESOLVED: gdb.trace/while-stepping.exp: failed to compile
new UNRESOLVED: gdb.tui/completion.exp: verify tui support
new UNRESOLVED: gdb.tui/empty.exp: set tui border-kind ascii
new UNRESOLVED: gdb.tui/empty.exp: src: 80x24: box 1
new UNRESOLVED: gdb.tui/empty.exp: verify tui support
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: correct line breaks
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: set height 2000
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: set pagination on
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: tui enable
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: verify tui support
new UNRESOLVED: gdb.xml/maint_print_struct.exp: printing tdesc with a structure and a bitfield
new UNRESOLVED: gdb.xml/maint_print_struct.exp: setting a new tdesc having only a structure
new UNRESOLVED: gdb.xml/tdesc-arch.exp: architecture XML tests
new UNRESOLVED: gdb.xml/tdesc-arch.exp: read default architecture
new UNRESOLVED: gdb.xml/tdesc-arch.exp: read valid architectures
new UNRESOLVED: gdb.xml/tdesc-errors.exp: set tdesc filename gdb.xml/tdesc-bogus.xml
new UNRESOLVED: gdb.xml/tdesc-errors.exp: set tdesc filename gdb.xml/tdesc-unknown.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: cd to directory holding xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: maintenance print reggroups
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $bitfields
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $extrareg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $flags
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $mixed_flags
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $structreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $structreg.v4
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $uintreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $unionreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $unionreg.v4
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $vecreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc file single-reg.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc filename test-extra-regs.xml - from extra-regs.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc filename test-regs.xml - from core-only.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/bad-include.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/includes.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/loop.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-gdbserver-m64/ed/edc8bbe90b82f1fa4f3f261b5c97503867e9aba4//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/ed/edc8bbe90b82f1fa4f3f261b5c97503867e9aba4//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-08  6:23 [binutils-gdb] libctf: eschew C99 for loop initial declarations gdb-buildbot
@ 2019-10-08  8:50 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-08  8:50 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/868

Author:
        Nick Alcock <nick.alcock@oracle.com>

Commit tested:
        5ae6af75b50bb4137d286a14e2fd1e74cfa089f4

Subject of commit:
        libctf: eschew C99 for loop initial declarations

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/5a/5ae6af75b50bb4137d286a14e2fd1e74cfa089f4/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.ada/assign_arr.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/assign_arr.exp: print assign_arr_input.u2 :=
new UNRESOLVED: gdb.ada/display_nested.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/display_nested.exp: display s
new UNRESOLVED: gdb.ada/fullname_bp.exp: break Pck.Hello
new UNRESOLVED: gdb.ada/fullname_bp.exp: break pck.adb:Pck.Hello
new UNRESOLVED: gdb.ada/fullname_bp.exp: break pck.adb:pck.hello
new UNRESOLVED: gdb.ada/fullname_bp.exp: break pck.hello
new UNRESOLVED: gdb.ada/notcplusplus.exp: list ver.ads:16
new UNRESOLVED: gdb.ada/notcplusplus.exp: print <symada__cS> after loading symbols from ver.ads
new UNRESOLVED: gdb.ada/notcplusplus.exp: print <symada__cS> before loading symbols from ver.ads
new UNRESOLVED: gdb.ada/tagged_access.exp: ptype c.all
new FAIL: gdb.ada/tagged_access.exp: ptype c.menu_name
new UNRESOLVED: gdb.base/display.exp: could not run to main - other tests will fail.
new UNRESOLVED: gdb.base/execl-update-breakpoints.exp: couldn't run to main
new UNRESOLVED: gdb.base/frameapply.exp: can't run to setup_done
new UNRESOLVED: gdb.base/sym-file.exp: can't run to main
new UNRESOLVED: gdb.base/vla-optimized-out.exp: o1: can't run to f1
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble bar
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble baz
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble foo
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble foo_low
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p bar_label - bar
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p baz_label - baz
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p foo_label - foo
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p foo_low_label - foo_low
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i bar+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i baz+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i foo+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i foo_low+
==============================================

*** 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/5a/5ae6af75b50bb4137d286a14e2fd1e74cfa089f4//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/5a/5ae6af75b50bb4137d286a14e2fd1e74cfa089f4//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-08  3:14 [binutils-gdb] libctf: don't leak hash keys or values on value replacement gdb-buildbot
@ 2019-10-08  5:34 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-08  5:34 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/867

Author:
        Nick Alcock <nick.alcock@oracle.com>

Commit tested:
        1820745a0af0768d9dcd515b98ad038ff9f15f23

Subject of commit:
        libctf: don't leak hash keys or values on value replacement

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/18/1820745a0af0768d9dcd515b98ad038ff9f15f23/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.python/lib-types.exp: can't run to main
new UNRESOLVED: gdb.python/py-frame-args.exp: check if python 3
new UNRESOLVED: gdb.python/py-frame-args.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.python/py-frame-args.exp: verify python support
==============================================

*** 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/18/1820745a0af0768d9dcd515b98ad038ff9f15f23//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/18/1820745a0af0768d9dcd515b98ad038ff9f15f23//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-08  0:06 [binutils-gdb] libctf: teach ctf_add_type how forwards work gdb-buildbot
@ 2019-10-08  2:25 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-08  2:25 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/866

Author:
        Nick Alcock <nick.alcock@oracle.com>

Commit tested:
        5de9eada3b4e39c89431765b1c59159cb04878ed

Subject of commit:
        libctf: teach ctf_add_type how forwards work

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/5d/5de9eada3b4e39c89431765b1c59159cb04878ed/

*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/O2_float_param.exp: compilation foo.adb
new FAIL: gdb.ada/access_tagged_param.exp: compilation foo.adb
new FAIL: gdb.ada/access_to_unbounded_array.exp: compilation foo.adb
new FAIL: gdb.ada/addr_arith.exp: compilation foo_na07_019.adb
new FAIL: gdb.ada/aliased_array.exp: compilation foo.adb
new FAIL: gdb.ada/arr_acc_idx_w_gap.exp: compilation enum_with_gap_main.adb
new FAIL: gdb.ada/arr_arr.exp: compilation foo.adb
new FAIL: gdb.ada/arr_enum_idx_w_gap.exp: compilation foo_q418_043.adb
new FAIL: gdb.ada/array_bounds.exp: compilation bar.adb
new FAIL: gdb.ada/array_char_idx.exp: compilation foo.adb
new FAIL: gdb.ada/array_of_variable_length.exp: compilation foo.adb
new FAIL: gdb.ada/array_ptr_renaming.exp: compilation foo.adb
new FAIL: gdb.ada/array_return.exp: compilation p.adb
new FAIL: gdb.ada/array_subscript_addr.exp: compilation p.adb
new FAIL: gdb.ada/arraydim.exp: compilation foo.adb
new FAIL: gdb.ada/arrayidx.exp: compilation p.adb
new FAIL: gdb.ada/arrayparam.exp: compilation foo.adb
new FAIL: gdb.ada/arrayptr.exp: compilation foo.adb
new FAIL: gdb.ada/assign_arr.exp: compilation main_p324_051.adb
new FAIL: gdb.ada/atomic_enum.exp: compilation foo.adb
new FAIL: gdb.ada/attr_ref_and_charlit.exp: compilation foo.adb
new FAIL: gdb.ada/bad-task-bp-keyword.exp: compilation foo.adb
new FAIL: gdb.ada/big_packed_array.exp: compilation foo_ra24_010.adb
new FAIL: gdb.ada/bp_c_mixed_case.exp: compilation foo_h731_021.adb
new FAIL: gdb.ada/bp_enum_homonym.exp: compilation p.adb
new FAIL: gdb.ada/bp_fun_addr.exp: compilation bp_fun_addr.adb
new FAIL: gdb.ada/bp_inlined_func.exp: compilation foo.adb
new FAIL: gdb.ada/bp_on_var.exp: compilation foo.adb
new FAIL: gdb.ada/bp_range_type.exp: compilation foo.adb
new FAIL: gdb.ada/bp_reset.exp: compilation foo.adb
new FAIL: gdb.ada/byte_packed_arr.exp: compilation reprod_main.adb
new FAIL: gdb.ada/catch_assert_if.exp: compilation bla.adb
new FAIL: gdb.ada/catch_ex.exp: compilation foo.adb
new FAIL: gdb.ada/char_enum.exp: compilation foo.adb
new FAIL: gdb.ada/char_param.exp: compilation foo.adb
new FAIL: gdb.ada/complete.exp: compilation foo.adb
new FAIL: gdb.ada/cond_lang.exp: compilation a.adb
new FAIL: gdb.ada/dgopt.exp: compilation x.adb
new FAIL: gdb.ada/disc_arr_bound.exp: compilation foo_n612_026.adb
new FAIL: gdb.ada/display_nested.exp: compilation foo.adb
new FAIL: gdb.ada/dyn_arrayidx.exp: compilation foo.adb
new FAIL: gdb.ada/dyn_loc.exp: compilation p.adb
new FAIL: gdb.ada/dyn_stride.exp: compilation foo.adb
new FAIL: gdb.ada/enum_idx_packed.exp: compilation foo.adb
new FAIL: gdb.ada/excep_handle.exp: compilation foo.adb
new FAIL: gdb.ada/expr_delims.exp: compilation foo.adb
new FAIL: gdb.ada/expr_with_funcall.exp: compilation expr_r821_013.adb
new FAIL: gdb.ada/exprs.exp: compilation p.adb
new FAIL: gdb.ada/fin_fun_out.exp: compilation foo_o525_013.adb
new FAIL: gdb.ada/fixed_cmp.exp: compilation fixed.adb
new FAIL: gdb.ada/fixed_points.exp: compilation fixed_points.adb
new FAIL: gdb.ada/float_param.exp: compilation foo.adb
new FAIL: gdb.ada/formatted_ref.exp: compilation formatted_ref.adb
new FAIL: gdb.ada/frame_arg_lang.exp: compilation bla.adb
new FAIL: gdb.ada/frame_args.exp: compilation foo.adb
new FAIL: gdb.ada/fullname_bp.exp: compilation foo.adb
new FAIL: gdb.ada/fun_addr.exp: compilation foo.adb
new FAIL: gdb.ada/fun_in_declare.exp: compilation foo.adb
new FAIL: gdb.ada/fun_overload_menu.exp: compilation foo.adb
new FAIL: gdb.ada/fun_renaming.exp: compilation fun_renaming.adb
new FAIL: gdb.ada/funcall_param.exp: compilation foo.adb
new FAIL: gdb.ada/funcall_ptr.exp: compilation foo.adb
new FAIL: gdb.ada/funcall_ref.exp: compilation foo.adb
new FAIL: gdb.ada/homonym.exp: compilation homonym_main.adb
new FAIL: gdb.ada/info_addr_mixed_case.exp: compilation foo.adb
new FAIL: gdb.ada/info_exc.exp: compilation foo.adb
new FAIL: gdb.ada/info_locals_renaming.exp: compilation foo.adb
new FAIL: gdb.ada/int_deref.exp: compilation foo.adb
new FAIL: gdb.ada/interface.exp: compilation foo.adb
new FAIL: gdb.ada/iwide.exp: compilation p.adb
new FAIL: gdb.ada/lang_switch.exp: compilation lang_switch.adb
new FAIL: gdb.ada/length_cond.exp: compilation length_cond.adb
new FAIL: gdb.ada/maint_with_ada.exp: compilation var_arr_typedef.adb
new FAIL: gdb.ada/mi_catch_assert.exp: compilation bla.adb
new FAIL: gdb.ada/mi_catch_ex_hand.exp: compilation foo.adb
new FAIL: gdb.ada/mi_ex_cond.exp: compilation foo.adb
new FAIL: gdb.ada/mi_exc_info.exp: compilation foo.adb
new FAIL: gdb.ada/mi_interface.exp: compilation foo.adb
new FAIL: gdb.ada/mi_ref_changeable.exp: compilation foo_rb20_056.adb
new FAIL: gdb.ada/mi_string_access.exp: compilation bar.adb
new FAIL: gdb.ada/mi_task_arg.exp: compilation task_switch.adb
new FAIL: gdb.ada/mi_task_info.exp: compilation task_switch.adb
new FAIL: gdb.ada/mi_var_array.exp: compilation bar.adb
new FAIL: gdb.ada/mi_var_union.exp: compilation bar.adb
new FAIL: gdb.ada/mod_from_name.exp: compilation foo.adb
new FAIL: gdb.ada/n_arr_bound.exp: compilation foo.adb
new FAIL: gdb.ada/notcplusplus.exp: compilation foo.adb
new FAIL: gdb.ada/null_array.exp: compilation foo.adb
new FAIL: gdb.ada/null_record.exp: compilation null_record.adb
new FAIL: gdb.ada/operator_bp.exp: compilation ops_test.adb
new FAIL: gdb.ada/optim_drec.exp: compilation foo.adb
new FAIL: gdb.ada/out_of_line_in_inlined.exp: compilation foo_o224_021.adb
new FAIL: gdb.ada/packed_array.exp: compilation pa.adb
new FAIL: gdb.ada/packed_array_assign.exp: compilation tester.adb
new FAIL: gdb.ada/packed_tagged.exp: compilation comp_bug.adb
new FAIL: gdb.ada/pckd_arr_ren.exp: compilation foo.adb
new FAIL: gdb.ada/pckd_neg.exp: compilation foo_o508_021.adb
new FAIL: gdb.ada/pkd_arr_elem.exp: compilation failure.adb
new FAIL: gdb.ada/pp-rec-component.exp: compilation foo.adb
new FAIL: gdb.ada/print_chars.exp: compilation foo.adb
new FAIL: gdb.ada/print_pc.exp: compilation dummy.adb
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: ptype 3 * 2.0
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: ptype 3 / 2.0
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: set lang ada
new FAIL: gdb.ada/ptype_array.exp: compilation foo.adb
new FAIL: gdb.ada/ptype_field.exp: compilation foo.adb
new FAIL: gdb.ada/ptype_tagged_param.exp: compilation foo.adb
new FAIL: gdb.ada/py_range.exp: compilation foo.adb
new FAIL: gdb.ada/py_taft.exp: compilation main.adb
new FAIL: gdb.ada/rdv_wait.exp: compilation foo.adb
new FAIL: gdb.ada/rec_comp.exp: compilation bar_o203_012.adb
new FAIL: gdb.ada/rec_return.exp: compilation foo.adb
new FAIL: gdb.ada/ref_param.exp: compilation foo.adb
new FAIL: gdb.ada/ref_tick_size.exp: compilation p.adb
new FAIL: gdb.ada/repeat_dyn.exp: compilation foo_oc22_002.adb
new FAIL: gdb.ada/same_component_name.exp: compilation foo.adb
new FAIL: gdb.ada/same_enum.exp: compilation a.adb
new FAIL: gdb.ada/scoped_watch.exp: compilation foo_p708_025.adb
new FAIL: gdb.ada/set_pckd_arr_elt.exp: compilation foo.adb
new FAIL: gdb.ada/set_wstr.exp: compilation a.adb
new FAIL: gdb.ada/small_reg_param.exp: compilation foo.adb
new FAIL: gdb.ada/str_binop_equal.exp: compilation foo_p211_061.adb
new FAIL: gdb.ada/str_uninit.exp: compilation parse.adb
new FAIL: gdb.ada/sym_print_name.exp: compilation foo.adb
new FAIL: gdb.ada/taft_type.exp: compilation p.adb
new FAIL: gdb.ada/tagged.exp: compilation foo.adb
new FAIL: gdb.ada/tagged_access.exp: compilation p.adb
new FAIL: gdb.ada/tagged_not_init.exp: compilation foo.adb
new FAIL: gdb.ada/task_bp.exp: compilation foo.adb
new FAIL: gdb.ada/task_switch_in_core.exp: compilation crash.adb
new FAIL: gdb.ada/tasks.exp: compilation foo.adb
new FAIL: gdb.ada/tick_last_segv.exp: compilation foo.adb
new FAIL: gdb.ada/tick_length_array_enum_idx.exp: compilation foo_n207_004.adb
new FAIL: gdb.ada/type_coercion.exp: compilation assign.adb
new FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: compilation foo.adb
new FAIL: gdb.ada/var_arr_attrs.exp: compilation foo_o115_002.adb
new FAIL: gdb.ada/variant_record_packed_array.exp: compilation foo.adb
new FAIL: gdb.ada/varsize_limit.exp: compilation vsizelim.adb
new FAIL: gdb.ada/vla.exp: compilation vla.adb
new FAIL: gdb.ada/watch_minus_l.exp: compilation foo_ra10_006.adb
new FAIL: gdb.ada/whatis_array_val.exp: compilation foo.adb
new FAIL: gdb.ada/widewide.exp: compilation foo.adb
new FAIL: gdb.ada/win_fu_syms.exp: compilation foo.adb
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: set tdesc filename $srcdir/gdb.arch/arc-tdesc-cpu.xml
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: set tdesc filename /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.arch/arc-tdesc-cpu/trivial.xml
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: setting HS architecture
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: .text is readable
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: complete set architecture i386
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: complete set gnutarget
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: load core file
new UNRESOLVED: gdb.base/alias.exp: -a print elements 47
new UNRESOLVED: gdb.base/alias.exp: abbrev -a not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set2 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set3 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set4 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set5 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set6 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: alias -a -- -a = set
new UNRESOLVED: gdb.base/alias.exp: alias -a -- set6 = set
new UNRESOLVED: gdb.base/alias.exp: alias -a set2=set
new UNRESOLVED: gdb.base/alias.exp: alias -a set3= set
new UNRESOLVED: gdb.base/alias.exp: alias -a set4 =set
new UNRESOLVED: gdb.base/alias.exp: alias -a set5 = set
new UNRESOLVED: gdb.base/alias.exp: alias assigne
new UNRESOLVED: gdb.base/alias.exp: alias assigne imprime
new UNRESOLVED: gdb.base/alias.exp: alias assigne imprime limite-elements
new UNRESOLVED: gdb.base/alias.exp: alias foo=bar
new UNRESOLVED: gdb.base/alias.exp: alias set pr elms = set p elem
new UNRESOLVED: gdb.base/alias.exp: alias set print max-elements using assigne imprime
new UNRESOLVED: gdb.base/alias.exp: alias set2=set
new UNRESOLVED: gdb.base/alias.exp: alias spe = set p elem
new UNRESOLVED: gdb.base/alias.exp: assigne imprime elements 53
new UNRESOLVED: gdb.base/alias.exp: assigne imprime limite-elements 54
new UNRESOLVED: gdb.base/alias.exp: assigne imprime prefix not defined
new UNRESOLVED: gdb.base/alias.exp: assigne print elements 52
new UNRESOLVED: gdb.base/alias.exp: help set print
new UNRESOLVED: gdb.base/alias.exp: mismatched length
new UNRESOLVED: gdb.base/alias.exp: mismatched prefix
new UNRESOLVED: gdb.base/alias.exp: set imprime elements 55
new UNRESOLVED: gdb.base/alias.exp: set imprime prefix not defined
new UNRESOLVED: gdb.base/alias.exp: set pr elms 51
new UNRESOLVED: gdb.base/alias.exp: set print limite-elements 56
new UNRESOLVED: gdb.base/alias.exp: set print max-elements 57
new UNRESOLVED: gdb.base/alias.exp: set2 print elements 42
new UNRESOLVED: gdb.base/alias.exp: set3 print elements 43
new UNRESOLVED: gdb.base/alias.exp: set4 print elements 44
new UNRESOLVED: gdb.base/alias.exp: set5 print elements 45
new UNRESOLVED: gdb.base/alias.exp: set6 print elements 46
new UNRESOLVED: gdb.base/alias.exp: spe 50
new UNRESOLVED: gdb.base/alias.exp: verify -a
new UNRESOLVED: gdb.base/alias.exp: verify 52
new UNRESOLVED: gdb.base/alias.exp: verify 53
new UNRESOLVED: gdb.base/alias.exp: verify 54
new UNRESOLVED: gdb.base/alias.exp: verify 55
new UNRESOLVED: gdb.base/alias.exp: verify 56
new UNRESOLVED: gdb.base/alias.exp: verify 57
new UNRESOLVED: gdb.base/alias.exp: verify set pr elms
new UNRESOLVED: gdb.base/alias.exp: verify set2
new UNRESOLVED: gdb.base/alias.exp: verify set3
new UNRESOLVED: gdb.base/alias.exp: verify set4
new UNRESOLVED: gdb.base/alias.exp: verify set5
new UNRESOLVED: gdb.base/alias.exp: verify set6
new UNRESOLVED: gdb.base/alias.exp: verify spe
new FAIL: gdb.base/all-architectures-0.exp: all passed
new FAIL: gdb.base/all-architectures-0.exp: at least one architecture
new FAIL: gdb.base/all-architectures-0.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-0.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-0.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-0.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-1.exp: all passed
new FAIL: gdb.base/all-architectures-1.exp: at least one architecture
new FAIL: gdb.base/all-architectures-1.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-1.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-1.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-1.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-2.exp: all passed
new FAIL: gdb.base/all-architectures-2.exp: at least one architecture
new FAIL: gdb.base/all-architectures-2.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-2.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-2.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-2.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-3.exp: all passed
new FAIL: gdb.base/all-architectures-3.exp: at least one architecture
new FAIL: gdb.base/all-architectures-3.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-3.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-3.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-3.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-4.exp: all passed
new FAIL: gdb.base/all-architectures-4.exp: at least one architecture
new FAIL: gdb.base/all-architectures-4.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-4.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-4.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-4.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-5.exp: all passed
new FAIL: gdb.base/all-architectures-5.exp: at least one architecture
new FAIL: gdb.base/all-architectures-5.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-5.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-5.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-5.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-6.exp: all passed
new FAIL: gdb.base/all-architectures-6.exp: at least one architecture
new FAIL: gdb.base/all-architectures-6.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-6.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-7.exp: all passed
new FAIL: gdb.base/all-architectures-7.exp: at least one architecture
new FAIL: gdb.base/all-architectures-7.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-7.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-7.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-7.exp: set max-completions unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: break main
new UNRESOLVED: gdb.base/argv0-symlink.exp: p argc
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print elements 200
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print elements unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print repeats 200
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print repeats unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: show print elements
new UNRESOLVED: gdb.base/argv0-symlink.exp: show print repeats
new UNRESOLVED: gdb.base/bad-file.exp: directory
new UNRESOLVED: gdb.base/bad-file.exp: neither file nor directory
new UNRESOLVED: gdb.base/bad-file.exp: non-existent file
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "info source": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "set not-a-thing 4" -x good-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "set not-a-thing 4": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -jslkflsdjlkfjlksdjf: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x bad-commands -ex "info source": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x bad-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands -ex "set not-a-thing 4": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands -x bad-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch: spawn
new UNRESOLVED: gdb.base/bitops.exp: print value of !0
new UNRESOLVED: gdb.base/bitops.exp: print value of !1
new UNRESOLVED: gdb.base/bitops.exp: print value of !10
new UNRESOLVED: gdb.base/bitops.exp: print value of !100
new UNRESOLVED: gdb.base/bitops.exp: print value of !1000
new UNRESOLVED: gdb.base/bitops.exp: print value of !2
new UNRESOLVED: gdb.base/bitops.exp: print value of
new UNRESOLVED: gdb.base/bitops.exp: print value of -!0
new UNRESOLVED: gdb.base/bitops.exp: print value of -1 < 0 > 1
new UNRESOLVED: gdb.base/bitops.exp: print value of -3>4
new UNRESOLVED: gdb.base/bitops.exp: print value of 0 == 8 > 128 >> 1 + 2 * 2
new UNRESOLVED: gdb.base/bitops.exp: print value of 0 || 1 && 0 | 0 ^ 0 == 8
new UNRESOLVED: gdb.base/bitops.exp: print value of 0 || 1 && 0 | 0 ^ 0 == 8 > 128 >>1 +2 *2
new UNRESOLVED: gdb.base/bitops.exp: print value of 0.0 || 0
new UNRESOLVED: gdb.base/bitops.exp: print value of 0.0 || 1.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 1.0 || 0
new UNRESOLVED: gdb.base/bitops.exp: print value of 10 & 5
new UNRESOLVED: gdb.base/bitops.exp: print value of 10 ^ 5
new UNRESOLVED: gdb.base/bitops.exp: print value of 10 | 5
new UNRESOLVED: gdb.base/bitops.exp: print value of 15 ^ 10 ^ 5 ^ 7
new UNRESOLVED: gdb.base/bitops.exp: print value of 2 > -3
new UNRESOLVED: gdb.base/bitops.exp: print value of 3 * 2 / 4.0 * 2.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3!=3.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3!=5.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3.5 < -4.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3.5 < 4.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3==3.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3==4.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3>=2.5
new UNRESOLVED: gdb.base/bitops.exp: print value of 3>=4.5
new UNRESOLVED: gdb.base/bitops.exp: print value of 8 << 2 >> 4
new UNRESOLVED: gdb.base/bitops.exp: print value of ~-!0
new UNRESOLVED: gdb.base/command-line-input.exp: print 1\\n + 2
new UNRESOLVED: gdb.base/command-line-input.exp: print 1\\n2
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: cmd complete ""
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: set max-completions 1
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: show editing
new UNRESOLVED: gdb.base/complete-empty.exp: show editing
new UNRESOLVED: gdb.base/default.exp:
new UNRESOLVED: gdb.base/default.exp: add-symbol-file
new UNRESOLVED: gdb.base/default.exp: append
new UNRESOLVED: gdb.base/default.exp: append binary
new UNRESOLVED: gdb.base/default.exp: append binary memory
new UNRESOLVED: gdb.base/default.exp: append binary value
new UNRESOLVED: gdb.base/default.exp: append memory
new UNRESOLVED: gdb.base/default.exp: append value
new UNRESOLVED: gdb.base/default.exp: call
new UNRESOLVED: gdb.base/default.exp: catch
new UNRESOLVED: gdb.base/default.exp: cd
new UNRESOLVED: gdb.base/default.exp: check if python 3
new UNRESOLVED: gdb.base/default.exp: clear
new UNRESOLVED: gdb.base/default.exp: commands
new UNRESOLVED: gdb.base/default.exp: condition
new UNRESOLVED: gdb.base/default.exp: continue
new UNRESOLVED: gdb.base/default.exp: continue "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: core-file
new UNRESOLVED: gdb.base/default.exp: define
new UNRESOLVED: gdb.base/default.exp: delete
new UNRESOLVED: gdb.base/default.exp: delete "d" abbreviation
new UNRESOLVED: gdb.base/default.exp: delete breakpoints
new UNRESOLVED: gdb.base/default.exp: delete display prompt
new UNRESOLVED: gdb.base/default.exp: detach
new UNRESOLVED: gdb.base/default.exp: directory prompt
new UNRESOLVED: gdb.base/default.exp: disable
new UNRESOLVED: gdb.base/default.exp: disable "dis" abbreviation
new UNRESOLVED: gdb.base/default.exp: disable "disa" abbreviation
new UNRESOLVED: gdb.base/default.exp: disable breakpoints
new UNRESOLVED: gdb.base/default.exp: disable display
new UNRESOLVED: gdb.base/default.exp: disassemble
new UNRESOLVED: gdb.base/default.exp: display
new UNRESOLVED: gdb.base/default.exp: do
new UNRESOLVED: gdb.base/default.exp: document
new UNRESOLVED: gdb.base/default.exp: down
new UNRESOLVED: gdb.base/default.exp: down-silently
new UNRESOLVED: gdb.base/default.exp: dump
new UNRESOLVED: gdb.base/default.exp: dump binary
new UNRESOLVED: gdb.base/default.exp: dump binary memory
new UNRESOLVED: gdb.base/default.exp: dump binary value
new UNRESOLVED: gdb.base/default.exp: dump ihex
new UNRESOLVED: gdb.base/default.exp: dump ihex memory
new UNRESOLVED: gdb.base/default.exp: dump ihex value
new UNRESOLVED: gdb.base/default.exp: dump memory
new UNRESOLVED: gdb.base/default.exp: dump srec
new UNRESOLVED: gdb.base/default.exp: dump srec memory
new UNRESOLVED: gdb.base/default.exp: dump srec value
new UNRESOLVED: gdb.base/default.exp: dump tekhex
new UNRESOLVED: gdb.base/default.exp: dump tekhex memory
new UNRESOLVED: gdb.base/default.exp: dump tekhex value
new UNRESOLVED: gdb.base/default.exp: dump value
new UNRESOLVED: gdb.base/default.exp: echo
new UNRESOLVED: gdb.base/default.exp: enable
new UNRESOLVED: gdb.base/default.exp: enable breakpoints
new UNRESOLVED: gdb.base/default.exp: enable breakpoints delete
new UNRESOLVED: gdb.base/default.exp: enable breakpoints once
new UNRESOLVED: gdb.base/default.exp: enable delete
new UNRESOLVED: gdb.base/default.exp: enable display
new UNRESOLVED: gdb.base/default.exp: enable once
new UNRESOLVED: gdb.base/default.exp: fg
new UNRESOLVED: gdb.base/default.exp: finish
new UNRESOLVED: gdb.base/default.exp: forward-search
new UNRESOLVED: gdb.base/default.exp: frame
new UNRESOLVED: gdb.base/default.exp: frame "f" abbreviation
new UNRESOLVED: gdb.base/default.exp: gcore
new UNRESOLVED: gdb.base/default.exp: generate-core-file
new UNRESOLVED: gdb.base/default.exp: handle
new UNRESOLVED: gdb.base/default.exp: help
new UNRESOLVED: gdb.base/default.exp: help "h" abbreviation
new UNRESOLVED: gdb.base/default.exp: ignore
new UNRESOLVED: gdb.base/default.exp: info
new UNRESOLVED: gdb.base/default.exp: info "i" abbreviation
new UNRESOLVED: gdb.base/default.exp: info address
new UNRESOLVED: gdb.base/default.exp: info all-registers
new UNRESOLVED: gdb.base/default.exp: info args
new UNRESOLVED: gdb.base/default.exp: info bogus-gdb-command
new UNRESOLVED: gdb.base/default.exp: info breakpoints
new UNRESOLVED: gdb.base/default.exp: info copying
new UNRESOLVED: gdb.base/default.exp: info display
new UNRESOLVED: gdb.base/default.exp: info files
new UNRESOLVED: gdb.base/default.exp: info float
new UNRESOLVED: gdb.base/default.exp: info frame
new UNRESOLVED: gdb.base/default.exp: info frame "f" abbreviation
new UNRESOLVED: gdb.base/default.exp: info functions
new UNRESOLVED: gdb.base/default.exp: info locals
new UNRESOLVED: gdb.base/default.exp: info program
new UNRESOLVED: gdb.base/default.exp: info registers
new UNRESOLVED: gdb.base/default.exp: info set
new UNRESOLVED: gdb.base/default.exp: info source
new UNRESOLVED: gdb.base/default.exp: info sources
new UNRESOLVED: gdb.base/default.exp: info stack
new UNRESOLVED: gdb.base/default.exp: info stack "s" abbreviation
new UNRESOLVED: gdb.base/default.exp: info symbol
new UNRESOLVED: gdb.base/default.exp: info target
new UNRESOLVED: gdb.base/default.exp: info terminal
new UNRESOLVED: gdb.base/default.exp: info threads
new UNRESOLVED: gdb.base/default.exp: info types
new UNRESOLVED: gdb.base/default.exp: info variables
new UNRESOLVED: gdb.base/default.exp: info vector
new UNRESOLVED: gdb.base/default.exp: info warranty
new UNRESOLVED: gdb.base/default.exp: info watchpoints
new UNRESOLVED: gdb.base/default.exp: inspect
new UNRESOLVED: gdb.base/default.exp: jump
new UNRESOLVED: gdb.base/default.exp: kill
new UNRESOLVED: gdb.base/default.exp: list
new UNRESOLVED: gdb.base/default.exp: list "l" abbreviation
new UNRESOLVED: gdb.base/default.exp: load
new UNRESOLVED: gdb.base/default.exp: next
new UNRESOLVED: gdb.base/default.exp: next "n" abbreviation
new UNRESOLVED: gdb.base/default.exp: nexti
new UNRESOLVED: gdb.base/default.exp: nexti "ni" abbreviation
new UNRESOLVED: gdb.base/default.exp: output
new UNRESOLVED: gdb.base/default.exp: overlay
new UNRESOLVED: gdb.base/default.exp: overlay auto
new UNRESOLVED: gdb.base/default.exp: overlay list
new UNRESOLVED: gdb.base/default.exp: overlay manual #1
new UNRESOLVED: gdb.base/default.exp: overlay manual #2
new UNRESOLVED: gdb.base/default.exp: overlay map #1
new UNRESOLVED: gdb.base/default.exp: overlay map #2
new UNRESOLVED: gdb.base/default.exp: overlay off
new UNRESOLVED: gdb.base/default.exp: overlay on
new UNRESOLVED: gdb.base/default.exp: overlay unmap #1
new UNRESOLVED: gdb.base/default.exp: overlay unmap #2
new UNRESOLVED: gdb.base/default.exp: print
new UNRESOLVED: gdb.base/default.exp: print "p" abbreviation
new UNRESOLVED: gdb.base/default.exp: printf
new UNRESOLVED: gdb.base/default.exp: ptype
new UNRESOLVED: gdb.base/default.exp: pwd
new UNRESOLVED: gdb.base/default.exp: rbreak
new UNRESOLVED: gdb.base/default.exp: restore
new UNRESOLVED: gdb.base/default.exp: return
new UNRESOLVED: gdb.base/default.exp: reverse-search
new UNRESOLVED: gdb.base/default.exp: search
new UNRESOLVED: gdb.base/default.exp: section
new UNRESOLVED: gdb.base/default.exp: set
new UNRESOLVED: gdb.base/default.exp: set annotate
new UNRESOLVED: gdb.base/default.exp: set args
new UNRESOLVED: gdb.base/default.exp: set check "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check "ch" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check "check" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check range
new UNRESOLVED: gdb.base/default.exp: set check type
new UNRESOLVED: gdb.base/default.exp: set complaints
new UNRESOLVED: gdb.base/default.exp: set confirm
new UNRESOLVED: gdb.base/default.exp: set environment
new UNRESOLVED: gdb.base/default.exp: set height
new UNRESOLVED: gdb.base/default.exp: set history
new UNRESOLVED: gdb.base/default.exp: set history expansion
new UNRESOLVED: gdb.base/default.exp: set history filename
new UNRESOLVED: gdb.base/default.exp: set history save
new UNRESOLVED: gdb.base/default.exp: set history save off
new UNRESOLVED: gdb.base/default.exp: set history size
new UNRESOLVED: gdb.base/default.exp: set language
new UNRESOLVED: gdb.base/default.exp: set listsize
new UNRESOLVED: gdb.base/default.exp: set print
new UNRESOLVED: gdb.base/default.exp: set print "p" abbreviation
new UNRESOLVED: gdb.base/default.exp: set print "pr" abbreviation
new UNRESOLVED: gdb.base/default.exp: set print address
new UNRESOLVED: gdb.base/default.exp: set print array
new UNRESOLVED: gdb.base/default.exp: set print asm-demangle
new UNRESOLVED: gdb.base/default.exp: set print demangle
new UNRESOLVED: gdb.base/default.exp: set print elements
new UNRESOLVED: gdb.base/default.exp: set print object
new UNRESOLVED: gdb.base/default.exp: set print pretty
new UNRESOLVED: gdb.base/default.exp: set print sevenbit-strings
new UNRESOLVED: gdb.base/default.exp: set print union
new UNRESOLVED: gdb.base/default.exp: set print vtbl
new UNRESOLVED: gdb.base/default.exp: set radix
new UNRESOLVED: gdb.base/default.exp: set the history filename
new UNRESOLVED: gdb.base/default.exp: set variable
new UNRESOLVED: gdb.base/default.exp: set verbose
new UNRESOLVED: gdb.base/default.exp: set width
new UNRESOLVED: gdb.base/default.exp: set write
new UNRESOLVED: gdb.base/default.exp: shell echo Hi dad!
new UNRESOLVED: gdb.base/default.exp: show
new UNRESOLVED: gdb.base/default.exp: show annotate
new UNRESOLVED: gdb.base/default.exp: show args
new UNRESOLVED: gdb.base/default.exp: show check "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check "ch" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check "check" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check range
new UNRESOLVED: gdb.base/default.exp: show check type
new UNRESOLVED: gdb.base/default.exp: show commands
new UNRESOLVED: gdb.base/default.exp: show complaints
new UNRESOLVED: gdb.base/default.exp: show confirm
new UNRESOLVED: gdb.base/default.exp: show convenience
new UNRESOLVED: gdb.base/default.exp: show directories
new UNRESOLVED: gdb.base/default.exp: show editing
new UNRESOLVED: gdb.base/default.exp: show height
new UNRESOLVED: gdb.base/default.exp: show history
new UNRESOLVED: gdb.base/default.exp: show history expansion
new UNRESOLVED: gdb.base/default.exp: show history filename
new UNRESOLVED: gdb.base/default.exp: show history save
new UNRESOLVED: gdb.base/default.exp: show history size
new UNRESOLVED: gdb.base/default.exp: show language
new UNRESOLVED: gdb.base/default.exp: show listsize
new UNRESOLVED: gdb.base/default.exp: show p
new UNRESOLVED: gdb.base/default.exp: show paths
new UNRESOLVED: gdb.base/default.exp: show pr
new UNRESOLVED: gdb.base/default.exp: show print
new UNRESOLVED: gdb.base/default.exp: show print address
new UNRESOLVED: gdb.base/default.exp: show print array
new UNRESOLVED: gdb.base/default.exp: show print asm-demangle
new UNRESOLVED: gdb.base/default.exp: show print demangle
new UNRESOLVED: gdb.base/default.exp: show print elements
new UNRESOLVED: gdb.base/default.exp: show print object
new UNRESOLVED: gdb.base/default.exp: show print pretty
new UNRESOLVED: gdb.base/default.exp: show print sevenbit-strings
new UNRESOLVED: gdb.base/default.exp: show print union
new UNRESOLVED: gdb.base/default.exp: show print vtbl
new UNRESOLVED: gdb.base/default.exp: show prompt
new UNRESOLVED: gdb.base/default.exp: show radix
new UNRESOLVED: gdb.base/default.exp: show user
new UNRESOLVED: gdb.base/default.exp: show values
new UNRESOLVED: gdb.base/default.exp: show verbose
new UNRESOLVED: gdb.base/default.exp: show version
new UNRESOLVED: gdb.base/default.exp: show width
new UNRESOLVED: gdb.base/default.exp: show write
new UNRESOLVED: gdb.base/default.exp: signal
new UNRESOLVED: gdb.base/default.exp: source
new UNRESOLVED: gdb.base/default.exp: step "s" abbreviation #1
new UNRESOLVED: gdb.base/default.exp: step "s" abbreviation #2
new UNRESOLVED: gdb.base/default.exp: step #1
new UNRESOLVED: gdb.base/default.exp: step #2
new UNRESOLVED: gdb.base/default.exp: stepi
new UNRESOLVED: gdb.base/default.exp: stepi "si" abbreviation
new UNRESOLVED: gdb.base/default.exp: symbol-file
new UNRESOLVED: gdb.base/default.exp: target
new UNRESOLVED: gdb.base/default.exp: target native
new UNRESOLVED: gdb.base/default.exp: tbreak
new UNRESOLVED: gdb.base/default.exp: thread
new UNRESOLVED: gdb.base/default.exp: thread apply
new UNRESOLVED: gdb.base/default.exp: thread find
new UNRESOLVED: gdb.base/default.exp: thread name
new UNRESOLVED: gdb.base/default.exp: undisplay prompt
new UNRESOLVED: gdb.base/default.exp: unset
new UNRESOLVED: gdb.base/default.exp: unset environment prompt
new UNRESOLVED: gdb.base/default.exp: until
new UNRESOLVED: gdb.base/default.exp: until "u" abbreviation
new UNRESOLVED: gdb.base/default.exp: up-silently
new UNRESOLVED: gdb.base/default.exp: verify python support
new UNRESOLVED: gdb.base/default.exp: watch
new UNRESOLVED: gdb.base/default.exp: whatis
new UNRESOLVED: gdb.base/default.exp: where
new UNRESOLVED: gdb.base/default.exp: x
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567890123456789012345678901234dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567890123456dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567890123456.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567890123456789012345678901234.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567890123456789012345678901234dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567890123456dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E384dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E6144dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E96df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2147483648ll
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2147483648ull
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2ll
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 4294967296ull
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd < 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd < 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df + 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df + 1.2f
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df < 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df < 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df > 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl < 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl < 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl > 2
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd * 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd + 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd - 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd / 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df * 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df + 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df - 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df / 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl * 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl + 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl - 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl / 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567890123456.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567890123456789012345678901234.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 + 1.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 > 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 > 3.1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.1dd + 2.7df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.1df + 2.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.3dd + 2.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.3dl + 2.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.6df + 2.7dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.6dl + 2.7df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 3 + 2.1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 1.2df + 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2 + 1.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dd + 2.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dd + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dl + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 3 + 2.1dl
new UNRESOLVED: gdb.base/echo.exp: echo test
new UNRESOLVED: gdb.base/empty_exe.exp: file ''
new UNRESOLVED: gdb.base/empty_exe.exp: print 1
new UNRESOLVED: gdb.base/endian.exp: auto target endianness
new UNRESOLVED: gdb.base/endian.exp: auto target endianness big
new UNRESOLVED: gdb.base/endian.exp: auto target endianness little
new UNRESOLVED: gdb.base/endian.exp: default target endianness
new UNRESOLVED: gdb.base/endian.exp: get target endianness
new FAIL: gdb.base/endian.exp: override auto target endianness big
new FAIL: gdb.base/endian.exp: override auto target endianness little
new UNRESOLVED: gdb.base/endian.exp: override target endianness big
new FAIL: gdb.base/endian.exp: override target endianness little
new UNRESOLVED: gdb.base/endian.exp: previously big default executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously big default no executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously little default executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously little default no executable endianness
new UNRESOLVED: gdb.base/endian.exp: set target endianness
new UNRESOLVED: gdb.base/endian.exp: set target endianness big
new UNRESOLVED: gdb.base/endian.exp: set target endianness little
new UNRESOLVED: gdb.base/environ.exp: all environment variables have been unset
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable previously undefined
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable using = syntax
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable with trailing equals
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable with trailing whitespace
new UNRESOLVED: gdb.base/environ.exp: confirm unset environment variable worked
new UNRESOLVED: gdb.base/environ.exp: set environment variable
new UNRESOLVED: gdb.base/environ.exp: set environment variable previously undefined
new UNRESOLVED: gdb.base/environ.exp: set environment variable to null value
new UNRESOLVED: gdb.base/environ.exp: set environment variable using = syntax
new UNRESOLVED: gdb.base/environ.exp: set environment variable with trailing equals
new UNRESOLVED: gdb.base/environ.exp: set environment variable with trailing whitespace
new UNRESOLVED: gdb.base/environ.exp: set environment without arguments
new UNRESOLVED: gdb.base/environ.exp: set environment without variable name
new UNRESOLVED: gdb.base/environ.exp: set path works properly
new UNRESOLVED: gdb.base/environ.exp: show environment works
new UNRESOLVED: gdb.base/environ.exp: show non-existent environment variable
new UNRESOLVED: gdb.base/environ.exp: show null environment variable
new UNRESOLVED: gdb.base/environ.exp: show paths works properly
new UNRESOLVED: gdb.base/environ.exp: unset all environment variables
new UNRESOLVED: gdb.base/environ.exp: unset environment variable
new UNRESOLVED: gdb.base/eval.exp: first eval.
new UNRESOLVED: gdb.base/eval.exp: initialize $a.
new UNRESOLVED: gdb.base/eval.exp: second eval.
new UNRESOLVED: gdb.base/gdb1056.exp: print 1/0
new UNRESOLVED: gdb.base/gdb1056.exp: test unsigned division by zero
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize= 20 : show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize= 20 : show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5ab: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5ab: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=0: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=0: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=10zab: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=10zab: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=20: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=20: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=50: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=50: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=99999999999999999999999999999999999: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=99999999999999999999999999999999999: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=not_an_integer: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=not_an_integer: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=1000: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=1000: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=foo: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=foo: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/zero: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/zero: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: appending: server show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: creating: server show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: print 1
new UNRESOLVED: gdb.base/help.exp: apropos \
new UNRESOLVED: gdb.base/help.exp: apropos apropos
new UNRESOLVED: gdb.base/help.exp: apropos handle signal
new UNRESOLVED: gdb.base/help.exp: disable pagination
new UNRESOLVED: gdb.base/help.exp: help aliases
new UNRESOLVED: gdb.base/help.exp: help backtrace
new UNRESOLVED: gdb.base/help.exp: help backtrace "bt" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "b" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "br" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "bre" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "brea" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "break" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoints
new UNRESOLVED: gdb.base/help.exp: help commands
new UNRESOLVED: gdb.base/help.exp: help data
new UNRESOLVED: gdb.base/help.exp: help delete
new UNRESOLVED: gdb.base/help.exp: help delete "d" abbreviation
new UNRESOLVED: gdb.base/help.exp: help files
new UNRESOLVED: gdb.base/help.exp: help gotcha
new UNRESOLVED: gdb.base/help.exp: help help
new UNRESOLVED: gdb.base/help.exp: help help "h" abbreviation
new UNRESOLVED: gdb.base/help.exp: help info bogus-gdb-command
new UNRESOLVED: gdb.base/help.exp: help internals
new UNRESOLVED: gdb.base/help.exp: help obscure
new UNRESOLVED: gdb.base/help.exp: help running
new UNRESOLVED: gdb.base/help.exp: help show commands
new UNRESOLVED: gdb.base/help.exp: help show confirm
new UNRESOLVED: gdb.base/help.exp: help show copying
new UNRESOLVED: gdb.base/help.exp: help show warranty
new UNRESOLVED: gdb.base/help.exp: help stack
new UNRESOLVED: gdb.base/help.exp: help status
new UNRESOLVED: gdb.base/help.exp: help support
new UNRESOLVED: gdb.base/help.exp: help tracepoints
new UNRESOLVED: gdb.base/help.exp: help user-defined
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: set history remove-duplicates 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: set history remove-duplicates 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: set history remove-duplicates 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 3
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 4
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 3
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 4
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: set history remove-duplicates unlimited
new UNRESOLVED: gdb.base/history-duplicates.exp: show editing
new UNRESOLVED: gdb.base/history-duplicates.exp: show history remove-duplicates
new UNRESOLVED: gdb.base/ifelse.exp: call original define
new UNRESOLVED: gdb.base/ifelse.exp: call replacement define
new UNRESOLVED: gdb.base/ifelse.exp: create define with empty else
new UNRESOLVED: gdb.base/ifelse.exp: if 0 .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 0 with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 1 .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 1 with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #1
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #2
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #3
new UNRESOLVED: gdb.base/ifelse.exp: replace define with if .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: set confirm off
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tc-td: 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-tc-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ts: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tf: 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-tf-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-ts: 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-ti-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tl-td: 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-tl-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-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-td: 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-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tld: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tll-tf: 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-td: 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-ts-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ts: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tc-td: 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-tc-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-ts: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tf: 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-tf-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-ts: 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-ti-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tl-td: 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-tl-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-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-td: 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-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tld: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tll-tf: 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-td: 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-ts-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ts: failed to compile
new FAIL: gdb.base/info-os.exp: cannot compile test program
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode on
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode on
new UNRESOLVED: gdb.base/interact.exp: show interactive-mode
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode on
new UNRESOLVED: gdb.base/multi-line-starts-subshell.exp: gdb input still works
new UNRESOLVED: gdb.base/multi-line-starts-subshell.exp: spawn subshell from multi-line
new UNRESOLVED: gdb.base/osabi.exp: set debug arch 1
new UNRESOLVED: gdb.base/osabi.exp: set osabi none
new UNRESOLVED: gdb.base/page.exp: paged count
new UNRESOLVED: gdb.base/page.exp: paged count for interrupt
new UNRESOLVED: gdb.base/page.exp: paged count remainder
new UNRESOLVED: gdb.base/page.exp: paged help
new UNRESOLVED: gdb.base/page.exp: pagination is off
new UNRESOLVED: gdb.base/page.exp: pagination is on
new UNRESOLVED: gdb.base/page.exp: q
new UNRESOLVED: gdb.base/page.exp: quit while paging
new UNRESOLVED: gdb.base/page.exp: set editing off
new UNRESOLVED: gdb.base/page.exp: set height -1
new UNRESOLVED: gdb.base/page.exp: set height 10
new UNRESOLVED: gdb.base/page.exp: set height 5
new UNRESOLVED: gdb.base/page.exp: set pagination off
new UNRESOLVED: gdb.base/page.exp: set pagination on
new UNRESOLVED: gdb.base/page.exp: set width -1
new UNRESOLVED: gdb.base/page.exp: set width 30
new UNRESOLVED: gdb.base/page.exp: size=0: set height 0
new UNRESOLVED: gdb.base/page.exp: size=0: set height 200
new UNRESOLVED: gdb.base/page.exp: size=0: set width 0
new UNRESOLVED: gdb.base/page.exp: size=0: set width 200
new UNRESOLVED: gdb.base/page.exp: size=0: show height
new UNRESOLVED: gdb.base/page.exp: size=0: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=0: show width
new UNRESOLVED: gdb.base/page.exp: size=0: show width unlimited
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set height 0x80000000
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set height 200
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set width 0x80000000
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set width 200
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show height
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show width
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show width unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set height 200
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set height unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set width 200
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set width unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show height
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show width
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show width unlimited
new UNRESOLVED: gdb.base/page.exp: unpaged help
new UNRESOLVED: gdb.base/quit.exp: quit with expression
new UNRESOLVED: gdb.base/quit.exp: quit with syntax error
new UNRESOLVED: gdb.base/radix.exp: Output radix unchanged after rejecting 0
new UNRESOLVED: gdb.base/radix.exp: Reject input-radix 0
new UNRESOLVED: gdb.base/radix.exp: Reject input-radix 1
new UNRESOLVED: gdb.base/radix.exp: Reject output-radix 0
new UNRESOLVED: gdb.base/radix.exp: Reject output-radix 1
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 10
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 16
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 2
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 3
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 8
new UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 10
new UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 16
new UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 8
new UNRESOLVED: gdb.base/radix.exp: input radix unchanged after rejecting 0
new UNRESOLVED: gdb.base/radix.exp: input radix unchanged after rejecting 1
new UNRESOLVED: gdb.base/radix.exp: output radix unchanged after rejecting 1
new UNRESOLVED: gdb.base/radix.exp: output radix unchanged after rejection through set radix command
new UNRESOLVED: gdb.base/radix.exp: print
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -100; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -256; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -4; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -64; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -9; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -101; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -10; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -257; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -5; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -65; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -10; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -16; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -2; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -3; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -8; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -11; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -17; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -3; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -4; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -9; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -12; expect -12; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -20; expect -16; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -2; expect Invalid number "2"\.; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -9; expect Invalid number "9".; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 010; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 17; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect f; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 100; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 100; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 144; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 256; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 4; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 64; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 64; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 9; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 10101; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 21; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 4161; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 65793; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 91; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 101; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 10; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 257; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 5; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 65; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 10; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 10; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 12; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 16; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 2; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 3; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 8; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10; expect a; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 11; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 17; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 3; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 4; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 9; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 14; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 24; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20; expect 16; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20; expect 6; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 2; expect 2; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 30; expect Invalid number "30"\.; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 3; expect Invalid number "3"\.; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 4; expect Invalid number "4"\.; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 8; expect Invalid number "8".; input radix 8
new UNRESOLVED: gdb.base/radix.exp: reset radices
new UNRESOLVED: gdb.base/radix.exp: set input-radix 10
new UNRESOLVED: gdb.base/radix.exp: set input-radix 16
new UNRESOLVED: gdb.base/radix.exp: set input-radix 2
new UNRESOLVED: gdb.base/radix.exp: set input-radix 3
new UNRESOLVED: gdb.base/radix.exp: set input-radix 8
new UNRESOLVED: gdb.base/radix.exp: set output-radix 10
new UNRESOLVED: gdb.base/radix.exp: set output-radix 16
new UNRESOLVED: gdb.base/radix.exp: set output-radix 8
new UNRESOLVED: gdb.base/radix.exp: set radix 7 rejected
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 10
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 16
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 2
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 3
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 8
new UNRESOLVED: gdb.base/radix.exp: show radix, output radix 10
new UNRESOLVED: gdb.base/radix.exp: show radix, output radix 16
new UNRESOLVED: gdb.base/radix.exp: show radix, output radix 8
new UNRESOLVED: gdb.base/readline.exp: Simple operate-and-get-next - send p 1
new UNRESOLVED: gdb.base/readline.exp: arrow keys with secondary prompt
new UNRESOLVED: gdb.base/readline.exp: operate-and-get-next with secondary prompt - send if 1 > 0
new UNRESOLVED: gdb.base/readline.exp: print 42
new UNRESOLVED: gdb.base/readline.exp: show editing
new UNRESOLVED: gdb.base/remotetimeout.exp: correct remotetimeout printed
new UNRESOLVED: gdb.base/shell.exp: ! echo foo
new UNRESOLVED: gdb.base/shell.exp: ! exit 0
new UNRESOLVED: gdb.base/shell.exp: ! exit 1
new UNRESOLVED: gdb.base/shell.exp: ! kill -2 $$
new UNRESOLVED: gdb.base/shell.exp: !echo foo
new UNRESOLVED: gdb.base/shell.exp: -d spaces value missing
new UNRESOLVED: gdb.base/shell.exp: -d value missing
new UNRESOLVED: gdb.base/shell.exp: DELIM delimiter missing
new UNRESOLVED: gdb.base/shell.exp: SHELL_COMMAND missing
new UNRESOLVED: gdb.base/shell.exp: SHELL_COMMAND missing with delimiter
new UNRESOLVED: gdb.base/shell.exp: all missing
new UNRESOLVED: gdb.base/shell.exp: alternate 1char delim
new UNRESOLVED: gdb.base/shell.exp: alternate 1char delim, no space
new UNRESOLVED: gdb.base/shell.exp: alternate 3char delim
new UNRESOLVED: gdb.base/shell.exp: alternate 3char delim, no space
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe print 1 | "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| print 1 | "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|print 1 | "
new UNRESOLVED: gdb.base/shell.exp: define foo
new UNRESOLVED: gdb.base/shell.exp: delimiter missing due to missing space
new UNRESOLVED: gdb.base/shell.exp: double pipe
new UNRESOLVED: gdb.base/shell.exp: double pipe, pipe char
new UNRESOLVED: gdb.base/shell.exp: echo coucou
new UNRESOLVED: gdb.base/shell.exp: enter commands
new UNRESOLVED: gdb.base/shell.exp: no space around pipe char
new UNRESOLVED: gdb.base/shell.exp: pipe fail exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe fail exitsignal
new UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitsignal
new UNRESOLVED: gdb.base/shell.exp: pipe success exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe success exitsignal
new UNRESOLVED: gdb.base/shell.exp: repeat previous command
new UNRESOLVED: gdb.base/shell.exp: set max-completions 0
new UNRESOLVED: gdb.base/shell.exp: set max-completions 2
new UNRESOLVED: gdb.base/shell.exp: shell echo foo
new UNRESOLVED: gdb.base/shell.exp: shell fail exitcode
new UNRESOLVED: gdb.base/shell.exp: shell fail exitsignal
new UNRESOLVED: gdb.base/shell.exp: shell interrupt exitcode
new UNRESOLVED: gdb.base/shell.exp: shell interrupt exitsignal
new UNRESOLVED: gdb.base/shell.exp: shell success exitcode
new UNRESOLVED: gdb.base/shell.exp: shell success exitsignal
new UNRESOLVED: gdb.base/shell.exp: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
new UNRESOLVED: gdb.base/shell.exp: simple pipe
new UNRESOLVED: gdb.base/shell.exp: simple pipe with arg
new UNRESOLVED: gdb.base/shell.exp: | delimiter missing
new UNRESOLVED: gdb.base/shell.exp: |p 123| exit 0
new UNRESOLVED: gdb.base/shell.exp: |p 123| exit 1
new UNRESOLVED: gdb.base/shell.exp: |p 123| kill -2 $$
new UNRESOLVED: gdb.base/source-dir.exp: directory /nOtExStInG/a /nOtExStInG/b /nOtExStInG/c
new UNRESOLVED: gdb.base/source-dir.exp: directory /nOtExStInG/b /nOtExStInG/d /nOtExStInG/c
new UNRESOLVED: gdb.base/source.exp: script contains error
new UNRESOLVED: gdb.base/source.exp: set search directories
new UNRESOLVED: gdb.base/source.exp: source -s
new UNRESOLVED: gdb.base/source.exp: source -s -v
new UNRESOLVED: gdb.base/source.exp: source -v
new UNRESOLVED: gdb.base/source.exp: source -v -s
new UNRESOLVED: gdb.base/source.exp: source after -v
new UNRESOLVED: gdb.base/source.exp: source for-sure-nonexistant-file
new UNRESOLVED: gdb.base/source.exp: source source-nofile.gdb
new UNRESOLVED: gdb.base/step-over-syscall.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/step-over-syscall.exp: run to main
new UNRESOLVED: gdb.base/subst.exp: add depuis -> vers substitution rule
new UNRESOLVED: gdb.base/subst.exp: add from -> to substitution rule
new UNRESOLVED: gdb.base/subst.exp: add from1 -> to1 substitution rule
new UNRESOLVED: gdb.base/subst.exp: add source -> destination substitution rule
new UNRESOLVED: gdb.base/subst.exp: add substitution rule to empty string
new UNRESOLVED: gdb.base/subst.exp: deactivate GDB's confirmation interface
new UNRESOLVED: gdb.base/subst.exp: remove all remaining substitution rules
new UNRESOLVED: gdb.base/subst.exp: remove default substitution rules
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, first argument is empty string
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, too few arguments
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, too many arguments
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after all remaining rules removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after depuis rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after empty rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after from rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path depuis, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, after unsetting it
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from/path, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from_a_bad_path, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path garbage, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: show substitute-path, too many arguments
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path depuis
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path empty
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from after the rule was removed
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path, too many arguments
new UNRESOLVED: gdb.base/trace-commands.exp: define user command
new UNRESOLVED: gdb.base/trace-commands.exp: depth resets on error part 1
new UNRESOLVED: gdb.base/trace-commands.exp: depth resets on error part 2
new UNRESOLVED: gdb.base/trace-commands.exp: nested trace-commands test
new UNRESOLVED: gdb.base/trace-commands.exp: nested trace-commands test with source
new UNRESOLVED: gdb.base/trace-commands.exp: set trace-commands
new UNRESOLVED: gdb.base/trace-commands.exp: show trace-commands says off
new UNRESOLVED: gdb.base/trace-commands.exp: show trace-commands says on
new UNRESOLVED: gdb.base/trace-commands.exp: simple trace-commands test
new UNRESOLVED: gdb.base/trace-commands.exp: source -v
new UNRESOLVED: gdb.base/warning.exp: echo 23\n
new UNRESOLVED: gdb.btrace/cpu.exp: default cpu
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu auto
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/1
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0x0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo/bar
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu none
new UNRESOLVED: gdb.btrace/cpu.exp: set record
new UNRESOLVED: gdb.btrace/cpu.exp: set record btrace
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu auto
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/1
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0x0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo/bar
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu none
new UNRESOLVED: gdb.cp/debug-expr.exp: print dynamic_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: print reinterpret_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: print static_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: set debug expression 1
new UNRESOLVED: gdb.cp/debug-expr.exp: set language c++
new UNRESOLVED: gdb.cp/demangle.exp: auto: check demangling style
new UNRESOLVED: gdb.cp/demangle.exp: auto: set demangle-style
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c -- _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c++ -- _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c++ _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l garbage xyzdje
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z13BitPatterntoaOK10BitPatternccc
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z31DrawDestinationTransformedImageP7_XImageiiS0_iimjiijmmP4_XGCOK13ivTransformeriiii
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z3argOK7Complex
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN11RelateManip6EffectEO7ivEvent
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN20DisplayList_IteratorC4EO11DisplayList
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN3fooC4EOS_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN3fooC4EiOS_iS0_iS0_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE3PixC4EOKS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE7elementC2EOKS0_PS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE7elementC4EOKS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityEC4EOKS1_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4PixXI11VHDLLibrary14VHDLLibraryRep4ListI10VHDLEntityEEC2EOKS5_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN7ivWorldC2EPKcOiPPcPK12ivOptionDescPK14ivPropertyData
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN8TextCode14CoreConstDeclsEO7ostream
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic: gnu-v3: check demangling style
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic: gnu-v3: set demangle-style
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK11VHDLLibrary5nextEEO4PixXIS_14VHDLLibraryRep4ListI10VHDLEntityEE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK4ListI10VHDLEntityE4nextEONS1_3PixE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK4ListI10VHDLEntityEclEOKNS1_3PixE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOK10BitPattern
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOK12BitSubStringi
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOKS_
new UNRESOLVED: gdb.cp/demangle.exp: set language c++
new UNRESOLVED: gdb.cp/demangle.exp: set language unknown
new UNRESOLVED: gdb.cp/demangle.exp: set width 0
new UNRESOLVED: gdb.cp/maint.exp: help maint cp
new UNRESOLVED: gdb.cp/maint.exp: help maint cp first_component
new UNRESOLVED: gdb.cp/maint.exp: help maint cp namespace
new UNRESOLVED: gdb.cp/maint.exp: help maintenance cplus
new UNRESOLVED: gdb.cp/maint.exp: maint cp
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component C<A>::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component C<std::basic_streambuf<wchar_t,std::char_traits<wchar_t> > >::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component T<Cooperator>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component bool operator<<char>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo::bar::baz
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<&
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<&operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int operator<< <char>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator  ->
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator ->
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator>>
new UNRESOLVED: gdb.cp/maint.exp: maint cp namespace
new UNRESOLVED: gdb.cp/maint.exp: set complaints 1000
new UNRESOLVED: gdb.cp/punctuator.exp: print
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 1
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 2
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 3
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 1
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 2
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 3
new UNRESOLVED: gdb.cp/punctuator.exp: set lang c++
new UNRESOLVED: gdb.cp/ref-params.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/ref-params.exp: print value of Child& in f2
new UNRESOLVED: gdb.cp/ref-params.exp: print value of Parent& in f1
new UNRESOLVED: gdb.cp/ref-params.exp: print value of a Child in main
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on Child in main
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on Child& in f2
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f2 on
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f2 on Child in main
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print f1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print mf1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print mf2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Child&& in f2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Child&& in f2: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Parent&& in f1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Parent&& in f1: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f1 on
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f1 on Child&& in f2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f2 on
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char16_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char16_t is unsigned
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char32_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char32_t is unsigned
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p L"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p U"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p u"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: set language c++
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: sizeof
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: wchar_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: wchar_t sign
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: char16_t is not built-in
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: char32_t is not built-in
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p L"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p U"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p u"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: set language c
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: wchar_t is not built-in
new UNRESOLVED: gdb.disasm/disassembler-options.exp: set disassembler-options
new UNRESOLVED: gdb.disasm/disassembler-options.exp: set disassembler-options invalid_option_value
new UNRESOLVED: gdb.disasm/disassembler-options.exp: show NULL disassembler-options
new UNRESOLVED: gdb.dlang/debug-expr.exp: print *
new UNRESOLVED: gdb.dlang/debug-expr.exp: set debug expression 1
new UNRESOLVED: gdb.dlang/debug-expr.exp: set language d
new UNRESOLVED: gdb.dlang/demangle.exp: set language d
new UNRESOLVED: gdb.dlang/expression.exp: set language d
new UNRESOLVED: gdb.dlang/primitive-types.exp: set language d
new UNRESOLVED: gdb.dlang/properties.exp: set language d
new UNRESOLVED: gdb.dlang/watch-loc.exp: disassemble _Dmain
new UNRESOLVED: gdb.dlang/watch-loc.exp: p _Dmain_label - _Dmain
new UNRESOLVED: gdb.dlang/watch-loc.exp: x/2i _Dmain+
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: disassemble first
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: disassemble second
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p first_label - first
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p second_label - second
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: x/2i first+
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: x/2i second+
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p g_label - g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i g+
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: console: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: console: set print object on
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: disassemble func01
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: p func01_label - func01
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: x/2i func01+
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dwz.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dwz.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dwz.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: disassemble mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: p mymain_label - mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: x/2i mymain+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/var-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/var-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/var-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/void-type.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/void-type.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i main+
new UNRESOLVED: gdb.guile/guile.exp: collect help from uiout
new UNRESOLVED: gdb.guile/guile.exp: guile
new UNRESOLVED: gdb.guile/guile.exp: show guile command - define zzq
new UNRESOLVED: gdb.guile/guile.exp: source -s source2.scm
new UNRESOLVED: gdb.guile/guile.exp: source source2.scm
new UNRESOLVED: gdb.guile/guile.exp: verify guile support
new UNRESOLVED: gdb.guile/guile.exp: verify help to uiout
new UNRESOLVED: gdb.guile/scm-error.exp: backtrace printed
new UNRESOLVED: gdb.guile/scm-error.exp: error loading scm file caught
new UNRESOLVED: gdb.guile/scm-error.exp: error message printed
new UNRESOLVED: gdb.guile/scm-error.exp: guile
new UNRESOLVED: gdb.guile/scm-error.exp: no delayed error
new UNRESOLVED: gdb.guile/scm-error.exp: no error printed
new UNRESOLVED: gdb.guile/scm-error.exp: reset print-stack to default, post set/show tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to full, for backtrace test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error printing tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to none, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: source /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.guile/scm-error/scm-error-2.scm
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack full setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack none setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting of default
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to full
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to none
new UNRESOLVED: gdb.guile/scm-error.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-gsmob.exp: gu
new UNRESOLVED: gdb.guile/scm-gsmob.exp: guile
new UNRESOLVED: gdb.guile/scm-gsmob.exp: object-properties
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-parameter.exp: Simple gdb boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: enum gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: error registering existing parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: file gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously ambiguously named boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set print s on
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: restricted gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: enum parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set invalid enum parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set print test-enum-param two
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: initial parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: new parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param bar.txt
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set print test-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 10
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 42
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: show test-restricted-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set print test-undoc-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: undocumented gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: verify guile support
new UNRESOLVED: gdb.objc/print.exp: set language objective-c
new UNRESOLVED: gdb.pascal/print.exp: set language pascal
new UNRESOLVED: gdb.pascal/types.exp: set language pascal
new UNRESOLVED: gdb.python/py-completion.exp: check if python 3
new UNRESOLVED: gdb.python/py-completion.exp: discard #1
new UNRESOLVED: gdb.python/py-completion.exp: discard #2
new UNRESOLVED: gdb.python/py-completion.exp: discard #3
new UNRESOLVED: gdb.python/py-completion.exp: discard #4
new UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completel'
new UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit1 c'
new UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit2 c'
new UNRESOLVED: gdb.python/py-completion.exp: load python file
new UNRESOLVED: gdb.python/py-completion.exp: load python file again
new UNRESOLVED: gdb.python/py-completion.exp: show editing
new UNRESOLVED: gdb.python/py-completion.exp: verify python support
new UNRESOLVED: gdb.python/py-error.exp: check if python 3
new UNRESOLVED: gdb.python/py-error.exp: main reached
new UNRESOLVED: gdb.python/py-error.exp: no delayed error
new UNRESOLVED: gdb.python/py-error.exp: set host-charset IBM1047
new UNRESOLVED: gdb.python/py-error.exp: verify python support
new KFAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new UNRESOLVED: gdb.python/py-function.exp: Test GDBError - python
new UNRESOLVED: gdb.python/py-function.exp: Test GdbError.  There should not be a stack trace
new UNRESOLVED: gdb.python/py-function.exp: Test Normal Error - python
new UNRESOLVED: gdb.python/py-function.exp: Test a Runtime error.  There should be a stack trace.
new UNRESOLVED: gdb.python/py-function.exp: call function
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = ada
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = asm
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = auto
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = c
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = c++
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = d
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = fortran
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = go
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = minimal
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = modula-2
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = objective-c
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = opencl
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = pascal
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = rust
new UNRESOLVED: gdb.python/py-function.exp: call yes with &&
new UNRESOLVED: gdb.python/py-function.exp: call yes with ||
new UNRESOLVED: gdb.python/py-function.exp: check if python 3
new UNRESOLVED: gdb.python/py-function.exp: input command-calling function - python
new UNRESOLVED: gdb.python/py-function.exp: input convenience function - python
new UNRESOLVED: gdb.python/py-function.exp: input int-returning function - python
new UNRESOLVED: gdb.python/py-function.exp: input value-returning convenience function - python
new UNRESOLVED: gdb.python/py-function.exp: set language ada
new UNRESOLVED: gdb.python/py-function.exp: set language asm
new UNRESOLVED: gdb.python/py-function.exp: set language auto
new UNRESOLVED: gdb.python/py-function.exp: set language c
new UNRESOLVED: gdb.python/py-function.exp: set language c++
new UNRESOLVED: gdb.python/py-function.exp: set language d
new UNRESOLVED: gdb.python/py-function.exp: set language fortran
new UNRESOLVED: gdb.python/py-function.exp: set language go
new UNRESOLVED: gdb.python/py-function.exp: set language minimal
new UNRESOLVED: gdb.python/py-function.exp: set language modula-2
new UNRESOLVED: gdb.python/py-function.exp: set language objective-c
new UNRESOLVED: gdb.python/py-function.exp: set language opencl
new UNRESOLVED: gdb.python/py-function.exp: set language pascal
new UNRESOLVED: gdb.python/py-function.exp: set language rust
new UNRESOLVED: gdb.python/py-function.exp: set python print-stack full
new UNRESOLVED: gdb.python/py-function.exp: setting a value from a function which executes a command, again.
new UNRESOLVED: gdb.python/py-function.exp: setting a value from a function which executes a command.
new UNRESOLVED: gdb.python/py-function.exp: verify python support
new UNRESOLVED: gdb.python/py-lookup-type.exp: check if python 3
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type CARDINAL using language modula-2
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language c
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language objective-c
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language pascal
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type character using language ada
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type character using language fortran
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type int32 using language go
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type ucent using language d
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type ushort using language opencl
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language ada
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language c
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language d
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language fortran
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language go
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language modula-2
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language objective-c
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language opencl
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language pascal
new UNRESOLVED: gdb.python/py-lookup-type.exp: verify python support
new UNRESOLVED: gdb.python/py-nested-maps.exp: check if python 3
new UNRESOLVED: gdb.python/py-nested-maps.exp: verify python support
new UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER - python
new UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER_UNLIMITED - python
new UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb booleanparameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: Throwing gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: check if python 3
new UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value can be set to -1
new UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value is -1 after setting
new UNRESOLVED: gdb.python/py-parameter.exp: enum gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: file gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: gdb.GdbError does not show Python stack
new UNRESOLVED: gdb.python/py-parameter.exp: python print
new UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -1
new UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -5
new UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER_UNLIMITED.value = -5
new UNRESOLVED: gdb.python/py-parameter.exp: set enum to two
new UNRESOLVED: gdb.python/py-parameter.exp: set invalid enum parameter
new UNRESOLVED: gdb.python/py-parameter.exp: set new file parameter
new UNRESOLVED: gdb.python/py-parameter.exp: set test-file-param
new UNRESOLVED: gdb.python/py-parameter.exp: show initial file value
new UNRESOLVED: gdb.python/py-parameter.exp: show new file value
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter is initial value
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter is new value
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter off
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter on
new UNRESOLVED: gdb.python/py-parameter.exp: test enum parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test file parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test general help
new UNRESOLVED: gdb.python/py-parameter.exp: test new file parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test set help
new UNRESOLVED: gdb.python/py-parameter.exp: test show help
new UNRESOLVED: gdb.python/py-parameter.exp: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: verify python support
new UNRESOLVED: gdb.python/py-prettyprint.exp: check if python 3
new UNRESOLVED: gdb.python/py-prettyprint.exp: verify python support
new UNRESOLVED: gdb.python/py-prompt.exp: check if python 3
new UNRESOLVED: gdb.python/py-prompt.exp: verify python support
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sigall-precsave.exp
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sigall-reverse.exp
new UNRESOLVED: gdb.rust/expr.exp: set language rust
new UNRESOLVED: gdb.rust/expr.exp: set var $something = 27
new FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
new FAIL: gdb.server/unittest.exp: unit tests
new UNRESOLVED: gdb.trace/actions.exp: failed to compile
new UNRESOLVED: gdb.trace/ax.exp: failed to compile
new UNRESOLVED: gdb.trace/deltrace.exp: failed to compile
new UNRESOLVED: gdb.trace/infotrace.exp: failed to compile
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with missing argument
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with too many arguments
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with wrong option
new UNRESOLVED: gdb.trace/packetlen.exp: failed to compile
new UNRESOLVED: gdb.trace/passc-dyn.exp: failed to compile
new UNRESOLVED: gdb.trace/passcount.exp: failed to compile
new UNRESOLVED: gdb.trace/report.exp: failed to compile
new UNRESOLVED: gdb.trace/save-trace.exp: failed to compile
new UNRESOLVED: gdb.trace/tfind.exp: failed to compile
new UNRESOLVED: gdb.trace/tracecmd.exp: failed to compile
new UNRESOLVED: gdb.trace/tsv.exp: failed to compile
new UNRESOLVED: gdb.trace/while-dyn.exp: failed to compile
new UNRESOLVED: gdb.trace/while-stepping.exp: failed to compile
new UNRESOLVED: gdb.tui/completion.exp: verify tui support
new UNRESOLVED: gdb.tui/empty.exp: set tui border-kind ascii
new UNRESOLVED: gdb.tui/empty.exp: src: 80x24: box 1
new UNRESOLVED: gdb.tui/empty.exp: verify tui support
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: correct line breaks
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: set height 2000
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: set pagination on
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: tui enable
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: verify tui support
new UNRESOLVED: gdb.xml/maint_print_struct.exp: printing tdesc with a structure and a bitfield
new UNRESOLVED: gdb.xml/maint_print_struct.exp: setting a new tdesc having only a structure
new UNRESOLVED: gdb.xml/tdesc-arch.exp: architecture XML tests
new UNRESOLVED: gdb.xml/tdesc-arch.exp: read default architecture
new UNRESOLVED: gdb.xml/tdesc-arch.exp: read valid architectures
new UNRESOLVED: gdb.xml/tdesc-errors.exp: set tdesc filename gdb.xml/tdesc-bogus.xml
new UNRESOLVED: gdb.xml/tdesc-errors.exp: set tdesc filename gdb.xml/tdesc-unknown.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: cd to directory holding xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: maintenance print reggroups
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $bitfields
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $extrareg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $flags
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $mixed_flags
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $structreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $structreg.v4
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $uintreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $unionreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $unionreg.v4
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $vecreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc file single-reg.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc filename test-extra-regs.xml - from extra-regs.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc filename test-regs.xml - from core-only.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/bad-include.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/includes.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/loop.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-gdbserver-m64/5d/5de9eada3b4e39c89431765b1c59159cb04878ed//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/5d/5de9eada3b4e39c89431765b1c59159cb04878ed//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-07 17:44 [binutils-gdb] libctf: add linking of the variable section gdb-buildbot
@ 2019-10-07 20:07 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-07 20:07 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/864

Author:
        Nick Alcock <nick.alcock@oracle.com>

Commit tested:
        eabb7154df3e97e9d808a8673953cc1ce708f3d4

Subject of commit:
        libctf: add linking of the variable section

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/ea/eabb7154df3e97e9d808a8673953cc1ce708f3d4/

*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/O2_float_param.exp: compilation foo.adb
new FAIL: gdb.ada/access_tagged_param.exp: compilation foo.adb
new FAIL: gdb.ada/access_to_unbounded_array.exp: compilation foo.adb
new FAIL: gdb.ada/addr_arith.exp: compilation foo_na07_019.adb
new FAIL: gdb.ada/aliased_array.exp: compilation foo.adb
new FAIL: gdb.ada/arr_acc_idx_w_gap.exp: compilation enum_with_gap_main.adb
new FAIL: gdb.ada/arr_arr.exp: compilation foo.adb
new FAIL: gdb.ada/arr_enum_idx_w_gap.exp: compilation foo_q418_043.adb
new FAIL: gdb.ada/array_bounds.exp: compilation bar.adb
new FAIL: gdb.ada/array_char_idx.exp: compilation foo.adb
new FAIL: gdb.ada/array_of_variable_length.exp: compilation foo.adb
new FAIL: gdb.ada/array_ptr_renaming.exp: compilation foo.adb
new FAIL: gdb.ada/array_return.exp: compilation p.adb
new FAIL: gdb.ada/array_subscript_addr.exp: compilation p.adb
new FAIL: gdb.ada/arraydim.exp: compilation foo.adb
new FAIL: gdb.ada/arrayidx.exp: compilation p.adb
new FAIL: gdb.ada/arrayparam.exp: compilation foo.adb
new FAIL: gdb.ada/arrayptr.exp: compilation foo.adb
new FAIL: gdb.ada/assign_arr.exp: compilation main_p324_051.adb
new FAIL: gdb.ada/atomic_enum.exp: compilation foo.adb
new FAIL: gdb.ada/attr_ref_and_charlit.exp: compilation foo.adb
new FAIL: gdb.ada/bad-task-bp-keyword.exp: compilation foo.adb
new FAIL: gdb.ada/big_packed_array.exp: compilation foo_ra24_010.adb
new FAIL: gdb.ada/bp_c_mixed_case.exp: compilation foo_h731_021.adb
new FAIL: gdb.ada/bp_enum_homonym.exp: compilation p.adb
new FAIL: gdb.ada/bp_fun_addr.exp: compilation bp_fun_addr.adb
new FAIL: gdb.ada/bp_inlined_func.exp: compilation foo.adb
new FAIL: gdb.ada/bp_on_var.exp: compilation foo.adb
new FAIL: gdb.ada/bp_range_type.exp: compilation foo.adb
new FAIL: gdb.ada/bp_reset.exp: compilation foo.adb
new FAIL: gdb.ada/byte_packed_arr.exp: compilation reprod_main.adb
new FAIL: gdb.ada/catch_assert_if.exp: compilation bla.adb
new FAIL: gdb.ada/catch_ex.exp: compilation foo.adb
new FAIL: gdb.ada/char_enum.exp: compilation foo.adb
new FAIL: gdb.ada/char_param.exp: compilation foo.adb
new FAIL: gdb.ada/complete.exp: compilation foo.adb
new FAIL: gdb.ada/cond_lang.exp: compilation a.adb
new FAIL: gdb.ada/dgopt.exp: compilation x.adb
new FAIL: gdb.ada/disc_arr_bound.exp: compilation foo_n612_026.adb
new FAIL: gdb.ada/display_nested.exp: compilation foo.adb
new FAIL: gdb.ada/dyn_arrayidx.exp: compilation foo.adb
new FAIL: gdb.ada/dyn_loc.exp: compilation p.adb
new FAIL: gdb.ada/dyn_stride.exp: compilation foo.adb
new FAIL: gdb.ada/enum_idx_packed.exp: compilation foo.adb
new FAIL: gdb.ada/excep_handle.exp: compilation foo.adb
new FAIL: gdb.ada/expr_delims.exp: compilation foo.adb
new FAIL: gdb.ada/expr_with_funcall.exp: compilation expr_r821_013.adb
new FAIL: gdb.ada/exprs.exp: compilation p.adb
new FAIL: gdb.ada/fin_fun_out.exp: compilation foo_o525_013.adb
new FAIL: gdb.ada/fixed_cmp.exp: compilation fixed.adb
new FAIL: gdb.ada/fixed_points.exp: compilation fixed_points.adb
new FAIL: gdb.ada/float_param.exp: compilation foo.adb
new FAIL: gdb.ada/formatted_ref.exp: compilation formatted_ref.adb
new FAIL: gdb.ada/frame_arg_lang.exp: compilation bla.adb
new FAIL: gdb.ada/frame_args.exp: compilation foo.adb
new FAIL: gdb.ada/fullname_bp.exp: compilation foo.adb
new FAIL: gdb.ada/fun_addr.exp: compilation foo.adb
new FAIL: gdb.ada/fun_in_declare.exp: compilation foo.adb
new FAIL: gdb.ada/fun_overload_menu.exp: compilation foo.adb
new FAIL: gdb.ada/fun_renaming.exp: compilation fun_renaming.adb
new FAIL: gdb.ada/funcall_param.exp: compilation foo.adb
new FAIL: gdb.ada/funcall_ptr.exp: compilation foo.adb
new FAIL: gdb.ada/funcall_ref.exp: compilation foo.adb
new FAIL: gdb.ada/homonym.exp: compilation homonym_main.adb
new FAIL: gdb.ada/info_addr_mixed_case.exp: compilation foo.adb
new FAIL: gdb.ada/info_exc.exp: compilation foo.adb
new FAIL: gdb.ada/info_locals_renaming.exp: compilation foo.adb
new FAIL: gdb.ada/int_deref.exp: compilation foo.adb
new FAIL: gdb.ada/interface.exp: compilation foo.adb
new FAIL: gdb.ada/iwide.exp: compilation p.adb
new FAIL: gdb.ada/lang_switch.exp: compilation lang_switch.adb
new FAIL: gdb.ada/length_cond.exp: compilation length_cond.adb
new FAIL: gdb.ada/maint_with_ada.exp: compilation var_arr_typedef.adb
new FAIL: gdb.ada/mi_catch_assert.exp: compilation bla.adb
new FAIL: gdb.ada/mi_catch_ex_hand.exp: compilation foo.adb
new FAIL: gdb.ada/mi_ex_cond.exp: compilation foo.adb
new FAIL: gdb.ada/mi_exc_info.exp: compilation foo.adb
new FAIL: gdb.ada/mi_interface.exp: compilation foo.adb
new FAIL: gdb.ada/mi_ref_changeable.exp: compilation foo_rb20_056.adb
new FAIL: gdb.ada/mi_string_access.exp: compilation bar.adb
new FAIL: gdb.ada/mi_task_arg.exp: compilation task_switch.adb
new FAIL: gdb.ada/mi_task_info.exp: compilation task_switch.adb
new FAIL: gdb.ada/mi_var_array.exp: compilation bar.adb
new FAIL: gdb.ada/mi_var_union.exp: compilation bar.adb
new FAIL: gdb.ada/mod_from_name.exp: compilation foo.adb
new FAIL: gdb.ada/n_arr_bound.exp: compilation foo.adb
new FAIL: gdb.ada/notcplusplus.exp: compilation foo.adb
new FAIL: gdb.ada/null_array.exp: compilation foo.adb
new FAIL: gdb.ada/null_record.exp: compilation null_record.adb
new FAIL: gdb.ada/operator_bp.exp: compilation ops_test.adb
new FAIL: gdb.ada/optim_drec.exp: compilation foo.adb
new FAIL: gdb.ada/out_of_line_in_inlined.exp: compilation foo_o224_021.adb
new FAIL: gdb.ada/packed_array.exp: compilation pa.adb
new FAIL: gdb.ada/packed_array_assign.exp: compilation tester.adb
new FAIL: gdb.ada/packed_tagged.exp: compilation comp_bug.adb
new FAIL: gdb.ada/pckd_arr_ren.exp: compilation foo.adb
new FAIL: gdb.ada/pckd_neg.exp: compilation foo_o508_021.adb
new FAIL: gdb.ada/pkd_arr_elem.exp: compilation failure.adb
new FAIL: gdb.ada/pp-rec-component.exp: compilation foo.adb
new FAIL: gdb.ada/print_chars.exp: compilation foo.adb
new FAIL: gdb.ada/print_pc.exp: compilation dummy.adb
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: ptype 3 * 2.0
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: ptype 3 / 2.0
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: set lang ada
new FAIL: gdb.ada/ptype_array.exp: compilation foo.adb
new FAIL: gdb.ada/ptype_field.exp: compilation foo.adb
new FAIL: gdb.ada/ptype_tagged_param.exp: compilation foo.adb
new FAIL: gdb.ada/py_range.exp: compilation foo.adb
new FAIL: gdb.ada/py_taft.exp: compilation main.adb
new FAIL: gdb.ada/rdv_wait.exp: compilation foo.adb
new FAIL: gdb.ada/rec_comp.exp: compilation bar_o203_012.adb
new FAIL: gdb.ada/rec_return.exp: compilation foo.adb
new FAIL: gdb.ada/ref_param.exp: compilation foo.adb
new FAIL: gdb.ada/ref_tick_size.exp: compilation p.adb
new FAIL: gdb.ada/repeat_dyn.exp: compilation foo_oc22_002.adb
new FAIL: gdb.ada/same_component_name.exp: compilation foo.adb
new FAIL: gdb.ada/same_enum.exp: compilation a.adb
new FAIL: gdb.ada/scoped_watch.exp: compilation foo_p708_025.adb
new FAIL: gdb.ada/set_pckd_arr_elt.exp: compilation foo.adb
new FAIL: gdb.ada/set_wstr.exp: compilation a.adb
new FAIL: gdb.ada/small_reg_param.exp: compilation foo.adb
new FAIL: gdb.ada/str_binop_equal.exp: compilation foo_p211_061.adb
new FAIL: gdb.ada/str_uninit.exp: compilation parse.adb
new FAIL: gdb.ada/sym_print_name.exp: compilation foo.adb
new FAIL: gdb.ada/taft_type.exp: compilation p.adb
new FAIL: gdb.ada/tagged.exp: compilation foo.adb
new FAIL: gdb.ada/tagged_access.exp: compilation p.adb
new FAIL: gdb.ada/tagged_not_init.exp: compilation foo.adb
new FAIL: gdb.ada/task_bp.exp: compilation foo.adb
new FAIL: gdb.ada/task_switch_in_core.exp: compilation crash.adb
new FAIL: gdb.ada/tasks.exp: compilation foo.adb
new FAIL: gdb.ada/tick_last_segv.exp: compilation foo.adb
new FAIL: gdb.ada/tick_length_array_enum_idx.exp: compilation foo_n207_004.adb
new FAIL: gdb.ada/type_coercion.exp: compilation assign.adb
new FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: compilation foo.adb
new FAIL: gdb.ada/var_arr_attrs.exp: compilation foo_o115_002.adb
new FAIL: gdb.ada/variant_record_packed_array.exp: compilation foo.adb
new FAIL: gdb.ada/varsize_limit.exp: compilation vsizelim.adb
new FAIL: gdb.ada/vla.exp: compilation vla.adb
new FAIL: gdb.ada/watch_minus_l.exp: compilation foo_ra10_006.adb
new FAIL: gdb.ada/whatis_array_val.exp: compilation foo.adb
new FAIL: gdb.ada/widewide.exp: compilation foo.adb
new FAIL: gdb.ada/win_fu_syms.exp: compilation foo.adb
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: set tdesc filename $srcdir/gdb.arch/arc-tdesc-cpu.xml
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: set tdesc filename /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.arch/arc-tdesc-cpu/trivial.xml
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: setting HS architecture
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: .text is readable
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: complete set architecture i386
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: complete set gnutarget
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: load core file
new UNRESOLVED: gdb.base/alias.exp: -a print elements 47
new UNRESOLVED: gdb.base/alias.exp: abbrev -a not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set2 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set3 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set4 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set5 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set6 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: alias -a -- -a = set
new UNRESOLVED: gdb.base/alias.exp: alias -a -- set6 = set
new UNRESOLVED: gdb.base/alias.exp: alias -a set2=set
new UNRESOLVED: gdb.base/alias.exp: alias -a set3= set
new UNRESOLVED: gdb.base/alias.exp: alias -a set4 =set
new UNRESOLVED: gdb.base/alias.exp: alias -a set5 = set
new UNRESOLVED: gdb.base/alias.exp: alias assigne
new UNRESOLVED: gdb.base/alias.exp: alias assigne imprime
new UNRESOLVED: gdb.base/alias.exp: alias assigne imprime limite-elements
new UNRESOLVED: gdb.base/alias.exp: alias foo=bar
new UNRESOLVED: gdb.base/alias.exp: alias set pr elms = set p elem
new UNRESOLVED: gdb.base/alias.exp: alias set print max-elements using assigne imprime
new UNRESOLVED: gdb.base/alias.exp: alias set2=set
new UNRESOLVED: gdb.base/alias.exp: alias spe = set p elem
new UNRESOLVED: gdb.base/alias.exp: assigne imprime elements 53
new UNRESOLVED: gdb.base/alias.exp: assigne imprime limite-elements 54
new UNRESOLVED: gdb.base/alias.exp: assigne imprime prefix not defined
new UNRESOLVED: gdb.base/alias.exp: assigne print elements 52
new UNRESOLVED: gdb.base/alias.exp: help set print
new UNRESOLVED: gdb.base/alias.exp: mismatched length
new UNRESOLVED: gdb.base/alias.exp: mismatched prefix
new UNRESOLVED: gdb.base/alias.exp: set imprime elements 55
new UNRESOLVED: gdb.base/alias.exp: set imprime prefix not defined
new UNRESOLVED: gdb.base/alias.exp: set pr elms 51
new UNRESOLVED: gdb.base/alias.exp: set print limite-elements 56
new UNRESOLVED: gdb.base/alias.exp: set print max-elements 57
new UNRESOLVED: gdb.base/alias.exp: set2 print elements 42
new UNRESOLVED: gdb.base/alias.exp: set3 print elements 43
new UNRESOLVED: gdb.base/alias.exp: set4 print elements 44
new UNRESOLVED: gdb.base/alias.exp: set5 print elements 45
new UNRESOLVED: gdb.base/alias.exp: set6 print elements 46
new UNRESOLVED: gdb.base/alias.exp: spe 50
new UNRESOLVED: gdb.base/alias.exp: verify -a
new UNRESOLVED: gdb.base/alias.exp: verify 52
new UNRESOLVED: gdb.base/alias.exp: verify 53
new UNRESOLVED: gdb.base/alias.exp: verify 54
new UNRESOLVED: gdb.base/alias.exp: verify 55
new UNRESOLVED: gdb.base/alias.exp: verify 56
new UNRESOLVED: gdb.base/alias.exp: verify 57
new UNRESOLVED: gdb.base/alias.exp: verify set pr elms
new UNRESOLVED: gdb.base/alias.exp: verify set2
new UNRESOLVED: gdb.base/alias.exp: verify set3
new UNRESOLVED: gdb.base/alias.exp: verify set4
new UNRESOLVED: gdb.base/alias.exp: verify set5
new UNRESOLVED: gdb.base/alias.exp: verify set6
new UNRESOLVED: gdb.base/alias.exp: verify spe
new FAIL: gdb.base/all-architectures-0.exp: all passed
new FAIL: gdb.base/all-architectures-0.exp: at least one architecture
new FAIL: gdb.base/all-architectures-0.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-0.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-0.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-0.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-1.exp: all passed
new FAIL: gdb.base/all-architectures-1.exp: at least one architecture
new FAIL: gdb.base/all-architectures-1.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-1.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-1.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-1.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-2.exp: all passed
new FAIL: gdb.base/all-architectures-2.exp: at least one architecture
new FAIL: gdb.base/all-architectures-2.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-2.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-2.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-2.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-3.exp: all passed
new FAIL: gdb.base/all-architectures-3.exp: at least one architecture
new FAIL: gdb.base/all-architectures-3.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-3.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-3.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-3.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-4.exp: all passed
new FAIL: gdb.base/all-architectures-4.exp: at least one architecture
new FAIL: gdb.base/all-architectures-4.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-4.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-4.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-4.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-5.exp: all passed
new FAIL: gdb.base/all-architectures-5.exp: at least one architecture
new FAIL: gdb.base/all-architectures-5.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-5.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-5.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-5.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-6.exp: all passed
new FAIL: gdb.base/all-architectures-6.exp: at least one architecture
new FAIL: gdb.base/all-architectures-6.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-6.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-7.exp: all passed
new FAIL: gdb.base/all-architectures-7.exp: at least one architecture
new FAIL: gdb.base/all-architectures-7.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-7.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-7.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-7.exp: set max-completions unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: break main
new UNRESOLVED: gdb.base/argv0-symlink.exp: p argc
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print elements 200
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print elements unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print repeats 200
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print repeats unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: show print elements
new UNRESOLVED: gdb.base/argv0-symlink.exp: show print repeats
new UNRESOLVED: gdb.base/bad-file.exp: directory
new UNRESOLVED: gdb.base/bad-file.exp: neither file nor directory
new UNRESOLVED: gdb.base/bad-file.exp: non-existent file
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "info source": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "set not-a-thing 4" -x good-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "set not-a-thing 4": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -jslkflsdjlkfjlksdjf: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x bad-commands -ex "info source": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x bad-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands -ex "set not-a-thing 4": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands -x bad-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch: spawn
new UNRESOLVED: gdb.base/bitops.exp: print value of !0
new UNRESOLVED: gdb.base/bitops.exp: print value of !1
new UNRESOLVED: gdb.base/bitops.exp: print value of !10
new UNRESOLVED: gdb.base/bitops.exp: print value of !100
new UNRESOLVED: gdb.base/bitops.exp: print value of !1000
new UNRESOLVED: gdb.base/bitops.exp: print value of !2
new UNRESOLVED: gdb.base/bitops.exp: print value of
new UNRESOLVED: gdb.base/bitops.exp: print value of -!0
new UNRESOLVED: gdb.base/bitops.exp: print value of -1 < 0 > 1
new UNRESOLVED: gdb.base/bitops.exp: print value of -3>4
new UNRESOLVED: gdb.base/bitops.exp: print value of 0 == 8 > 128 >> 1 + 2 * 2
new UNRESOLVED: gdb.base/bitops.exp: print value of 0 || 1 && 0 | 0 ^ 0 == 8
new UNRESOLVED: gdb.base/bitops.exp: print value of 0 || 1 && 0 | 0 ^ 0 == 8 > 128 >>1 +2 *2
new UNRESOLVED: gdb.base/bitops.exp: print value of 0.0 || 0
new UNRESOLVED: gdb.base/bitops.exp: print value of 0.0 || 1.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 1.0 || 0
new UNRESOLVED: gdb.base/bitops.exp: print value of 10 & 5
new UNRESOLVED: gdb.base/bitops.exp: print value of 10 ^ 5
new UNRESOLVED: gdb.base/bitops.exp: print value of 10 | 5
new UNRESOLVED: gdb.base/bitops.exp: print value of 15 ^ 10 ^ 5 ^ 7
new UNRESOLVED: gdb.base/bitops.exp: print value of 2 > -3
new UNRESOLVED: gdb.base/bitops.exp: print value of 3 * 2 / 4.0 * 2.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3!=3.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3!=5.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3.5 < -4.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3.5 < 4.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3==3.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3==4.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3>=2.5
new UNRESOLVED: gdb.base/bitops.exp: print value of 3>=4.5
new UNRESOLVED: gdb.base/bitops.exp: print value of 8 << 2 >> 4
new UNRESOLVED: gdb.base/bitops.exp: print value of ~-!0
new UNRESOLVED: gdb.base/command-line-input.exp: print 1\\n + 2
new UNRESOLVED: gdb.base/command-line-input.exp: print 1\\n2
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: cmd complete ""
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: set max-completions 1
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: show editing
new UNRESOLVED: gdb.base/complete-empty.exp: show editing
new UNRESOLVED: gdb.base/default.exp:
new UNRESOLVED: gdb.base/default.exp: add-symbol-file
new UNRESOLVED: gdb.base/default.exp: append
new UNRESOLVED: gdb.base/default.exp: append binary
new UNRESOLVED: gdb.base/default.exp: append binary memory
new UNRESOLVED: gdb.base/default.exp: append binary value
new UNRESOLVED: gdb.base/default.exp: append memory
new UNRESOLVED: gdb.base/default.exp: append value
new UNRESOLVED: gdb.base/default.exp: call
new UNRESOLVED: gdb.base/default.exp: catch
new UNRESOLVED: gdb.base/default.exp: cd
new UNRESOLVED: gdb.base/default.exp: check if python 3
new UNRESOLVED: gdb.base/default.exp: clear
new UNRESOLVED: gdb.base/default.exp: commands
new UNRESOLVED: gdb.base/default.exp: condition
new UNRESOLVED: gdb.base/default.exp: continue
new UNRESOLVED: gdb.base/default.exp: continue "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: core-file
new UNRESOLVED: gdb.base/default.exp: define
new UNRESOLVED: gdb.base/default.exp: delete
new UNRESOLVED: gdb.base/default.exp: delete "d" abbreviation
new UNRESOLVED: gdb.base/default.exp: delete breakpoints
new UNRESOLVED: gdb.base/default.exp: delete display prompt
new UNRESOLVED: gdb.base/default.exp: detach
new UNRESOLVED: gdb.base/default.exp: directory prompt
new UNRESOLVED: gdb.base/default.exp: disable
new UNRESOLVED: gdb.base/default.exp: disable "dis" abbreviation
new UNRESOLVED: gdb.base/default.exp: disable "disa" abbreviation
new UNRESOLVED: gdb.base/default.exp: disable breakpoints
new UNRESOLVED: gdb.base/default.exp: disable display
new UNRESOLVED: gdb.base/default.exp: disassemble
new UNRESOLVED: gdb.base/default.exp: display
new UNRESOLVED: gdb.base/default.exp: do
new UNRESOLVED: gdb.base/default.exp: document
new UNRESOLVED: gdb.base/default.exp: down
new UNRESOLVED: gdb.base/default.exp: down-silently
new UNRESOLVED: gdb.base/default.exp: dump
new UNRESOLVED: gdb.base/default.exp: dump binary
new UNRESOLVED: gdb.base/default.exp: dump binary memory
new UNRESOLVED: gdb.base/default.exp: dump binary value
new UNRESOLVED: gdb.base/default.exp: dump ihex
new UNRESOLVED: gdb.base/default.exp: dump ihex memory
new UNRESOLVED: gdb.base/default.exp: dump ihex value
new UNRESOLVED: gdb.base/default.exp: dump memory
new UNRESOLVED: gdb.base/default.exp: dump srec
new UNRESOLVED: gdb.base/default.exp: dump srec memory
new UNRESOLVED: gdb.base/default.exp: dump srec value
new UNRESOLVED: gdb.base/default.exp: dump tekhex
new UNRESOLVED: gdb.base/default.exp: dump tekhex memory
new UNRESOLVED: gdb.base/default.exp: dump tekhex value
new UNRESOLVED: gdb.base/default.exp: dump value
new UNRESOLVED: gdb.base/default.exp: echo
new UNRESOLVED: gdb.base/default.exp: enable
new UNRESOLVED: gdb.base/default.exp: enable breakpoints
new UNRESOLVED: gdb.base/default.exp: enable breakpoints delete
new UNRESOLVED: gdb.base/default.exp: enable breakpoints once
new UNRESOLVED: gdb.base/default.exp: enable delete
new UNRESOLVED: gdb.base/default.exp: enable display
new UNRESOLVED: gdb.base/default.exp: enable once
new UNRESOLVED: gdb.base/default.exp: fg
new UNRESOLVED: gdb.base/default.exp: finish
new UNRESOLVED: gdb.base/default.exp: forward-search
new UNRESOLVED: gdb.base/default.exp: frame
new UNRESOLVED: gdb.base/default.exp: frame "f" abbreviation
new UNRESOLVED: gdb.base/default.exp: gcore
new UNRESOLVED: gdb.base/default.exp: generate-core-file
new UNRESOLVED: gdb.base/default.exp: handle
new UNRESOLVED: gdb.base/default.exp: help
new UNRESOLVED: gdb.base/default.exp: help "h" abbreviation
new UNRESOLVED: gdb.base/default.exp: ignore
new UNRESOLVED: gdb.base/default.exp: info
new UNRESOLVED: gdb.base/default.exp: info "i" abbreviation
new UNRESOLVED: gdb.base/default.exp: info address
new UNRESOLVED: gdb.base/default.exp: info all-registers
new UNRESOLVED: gdb.base/default.exp: info args
new UNRESOLVED: gdb.base/default.exp: info bogus-gdb-command
new UNRESOLVED: gdb.base/default.exp: info breakpoints
new UNRESOLVED: gdb.base/default.exp: info copying
new UNRESOLVED: gdb.base/default.exp: info display
new UNRESOLVED: gdb.base/default.exp: info files
new UNRESOLVED: gdb.base/default.exp: info float
new UNRESOLVED: gdb.base/default.exp: info frame
new UNRESOLVED: gdb.base/default.exp: info frame "f" abbreviation
new UNRESOLVED: gdb.base/default.exp: info functions
new UNRESOLVED: gdb.base/default.exp: info locals
new UNRESOLVED: gdb.base/default.exp: info program
new UNRESOLVED: gdb.base/default.exp: info registers
new UNRESOLVED: gdb.base/default.exp: info set
new UNRESOLVED: gdb.base/default.exp: info source
new UNRESOLVED: gdb.base/default.exp: info sources
new UNRESOLVED: gdb.base/default.exp: info stack
new UNRESOLVED: gdb.base/default.exp: info stack "s" abbreviation
new UNRESOLVED: gdb.base/default.exp: info symbol
new UNRESOLVED: gdb.base/default.exp: info target
new UNRESOLVED: gdb.base/default.exp: info terminal
new UNRESOLVED: gdb.base/default.exp: info threads
new UNRESOLVED: gdb.base/default.exp: info types
new UNRESOLVED: gdb.base/default.exp: info variables
new UNRESOLVED: gdb.base/default.exp: info vector
new UNRESOLVED: gdb.base/default.exp: info warranty
new UNRESOLVED: gdb.base/default.exp: info watchpoints
new UNRESOLVED: gdb.base/default.exp: inspect
new UNRESOLVED: gdb.base/default.exp: jump
new UNRESOLVED: gdb.base/default.exp: kill
new UNRESOLVED: gdb.base/default.exp: list
new UNRESOLVED: gdb.base/default.exp: list "l" abbreviation
new UNRESOLVED: gdb.base/default.exp: load
new UNRESOLVED: gdb.base/default.exp: next
new UNRESOLVED: gdb.base/default.exp: next "n" abbreviation
new UNRESOLVED: gdb.base/default.exp: nexti
new UNRESOLVED: gdb.base/default.exp: nexti "ni" abbreviation
new UNRESOLVED: gdb.base/default.exp: output
new UNRESOLVED: gdb.base/default.exp: overlay
new UNRESOLVED: gdb.base/default.exp: overlay auto
new UNRESOLVED: gdb.base/default.exp: overlay list
new UNRESOLVED: gdb.base/default.exp: overlay manual #1
new UNRESOLVED: gdb.base/default.exp: overlay manual #2
new UNRESOLVED: gdb.base/default.exp: overlay map #1
new UNRESOLVED: gdb.base/default.exp: overlay map #2
new UNRESOLVED: gdb.base/default.exp: overlay off
new UNRESOLVED: gdb.base/default.exp: overlay on
new UNRESOLVED: gdb.base/default.exp: overlay unmap #1
new UNRESOLVED: gdb.base/default.exp: overlay unmap #2
new UNRESOLVED: gdb.base/default.exp: print
new UNRESOLVED: gdb.base/default.exp: print "p" abbreviation
new UNRESOLVED: gdb.base/default.exp: printf
new UNRESOLVED: gdb.base/default.exp: ptype
new UNRESOLVED: gdb.base/default.exp: pwd
new UNRESOLVED: gdb.base/default.exp: rbreak
new UNRESOLVED: gdb.base/default.exp: restore
new UNRESOLVED: gdb.base/default.exp: return
new UNRESOLVED: gdb.base/default.exp: reverse-search
new UNRESOLVED: gdb.base/default.exp: search
new UNRESOLVED: gdb.base/default.exp: section
new UNRESOLVED: gdb.base/default.exp: set
new UNRESOLVED: gdb.base/default.exp: set annotate
new UNRESOLVED: gdb.base/default.exp: set args
new UNRESOLVED: gdb.base/default.exp: set check "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check "ch" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check "check" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check range
new UNRESOLVED: gdb.base/default.exp: set check type
new UNRESOLVED: gdb.base/default.exp: set complaints
new UNRESOLVED: gdb.base/default.exp: set confirm
new UNRESOLVED: gdb.base/default.exp: set environment
new UNRESOLVED: gdb.base/default.exp: set height
new UNRESOLVED: gdb.base/default.exp: set history
new UNRESOLVED: gdb.base/default.exp: set history expansion
new UNRESOLVED: gdb.base/default.exp: set history filename
new UNRESOLVED: gdb.base/default.exp: set history save
new UNRESOLVED: gdb.base/default.exp: set history save off
new UNRESOLVED: gdb.base/default.exp: set history size
new UNRESOLVED: gdb.base/default.exp: set language
new UNRESOLVED: gdb.base/default.exp: set listsize
new UNRESOLVED: gdb.base/default.exp: set print
new UNRESOLVED: gdb.base/default.exp: set print "p" abbreviation
new UNRESOLVED: gdb.base/default.exp: set print "pr" abbreviation
new UNRESOLVED: gdb.base/default.exp: set print address
new UNRESOLVED: gdb.base/default.exp: set print array
new UNRESOLVED: gdb.base/default.exp: set print asm-demangle
new UNRESOLVED: gdb.base/default.exp: set print demangle
new UNRESOLVED: gdb.base/default.exp: set print elements
new UNRESOLVED: gdb.base/default.exp: set print object
new UNRESOLVED: gdb.base/default.exp: set print pretty
new UNRESOLVED: gdb.base/default.exp: set print sevenbit-strings
new UNRESOLVED: gdb.base/default.exp: set print union
new UNRESOLVED: gdb.base/default.exp: set print vtbl
new UNRESOLVED: gdb.base/default.exp: set radix
new UNRESOLVED: gdb.base/default.exp: set the history filename
new UNRESOLVED: gdb.base/default.exp: set variable
new UNRESOLVED: gdb.base/default.exp: set verbose
new UNRESOLVED: gdb.base/default.exp: set width
new UNRESOLVED: gdb.base/default.exp: set write
new UNRESOLVED: gdb.base/default.exp: shell echo Hi dad!
new UNRESOLVED: gdb.base/default.exp: show
new UNRESOLVED: gdb.base/default.exp: show annotate
new UNRESOLVED: gdb.base/default.exp: show args
new UNRESOLVED: gdb.base/default.exp: show check "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check "ch" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check "check" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check range
new UNRESOLVED: gdb.base/default.exp: show check type
new UNRESOLVED: gdb.base/default.exp: show commands
new UNRESOLVED: gdb.base/default.exp: show complaints
new UNRESOLVED: gdb.base/default.exp: show confirm
new UNRESOLVED: gdb.base/default.exp: show convenience
new UNRESOLVED: gdb.base/default.exp: show directories
new UNRESOLVED: gdb.base/default.exp: show editing
new UNRESOLVED: gdb.base/default.exp: show height
new UNRESOLVED: gdb.base/default.exp: show history
new UNRESOLVED: gdb.base/default.exp: show history expansion
new UNRESOLVED: gdb.base/default.exp: show history filename
new UNRESOLVED: gdb.base/default.exp: show history save
new UNRESOLVED: gdb.base/default.exp: show history size
new UNRESOLVED: gdb.base/default.exp: show language
new UNRESOLVED: gdb.base/default.exp: show listsize
new UNRESOLVED: gdb.base/default.exp: show p
new UNRESOLVED: gdb.base/default.exp: show paths
new UNRESOLVED: gdb.base/default.exp: show pr
new UNRESOLVED: gdb.base/default.exp: show print
new UNRESOLVED: gdb.base/default.exp: show print address
new UNRESOLVED: gdb.base/default.exp: show print array
new UNRESOLVED: gdb.base/default.exp: show print asm-demangle
new UNRESOLVED: gdb.base/default.exp: show print demangle
new UNRESOLVED: gdb.base/default.exp: show print elements
new UNRESOLVED: gdb.base/default.exp: show print object
new UNRESOLVED: gdb.base/default.exp: show print pretty
new UNRESOLVED: gdb.base/default.exp: show print sevenbit-strings
new UNRESOLVED: gdb.base/default.exp: show print union
new UNRESOLVED: gdb.base/default.exp: show print vtbl
new UNRESOLVED: gdb.base/default.exp: show prompt
new UNRESOLVED: gdb.base/default.exp: show radix
new UNRESOLVED: gdb.base/default.exp: show user
new UNRESOLVED: gdb.base/default.exp: show values
new UNRESOLVED: gdb.base/default.exp: show verbose
new UNRESOLVED: gdb.base/default.exp: show version
new UNRESOLVED: gdb.base/default.exp: show width
new UNRESOLVED: gdb.base/default.exp: show write
new UNRESOLVED: gdb.base/default.exp: signal
new UNRESOLVED: gdb.base/default.exp: source
new UNRESOLVED: gdb.base/default.exp: step "s" abbreviation #1
new UNRESOLVED: gdb.base/default.exp: step "s" abbreviation #2
new UNRESOLVED: gdb.base/default.exp: step #1
new UNRESOLVED: gdb.base/default.exp: step #2
new UNRESOLVED: gdb.base/default.exp: stepi
new UNRESOLVED: gdb.base/default.exp: stepi "si" abbreviation
new UNRESOLVED: gdb.base/default.exp: symbol-file
new UNRESOLVED: gdb.base/default.exp: target
new UNRESOLVED: gdb.base/default.exp: target native
new UNRESOLVED: gdb.base/default.exp: tbreak
new UNRESOLVED: gdb.base/default.exp: thread
new UNRESOLVED: gdb.base/default.exp: thread apply
new UNRESOLVED: gdb.base/default.exp: thread find
new UNRESOLVED: gdb.base/default.exp: thread name
new UNRESOLVED: gdb.base/default.exp: undisplay prompt
new UNRESOLVED: gdb.base/default.exp: unset
new UNRESOLVED: gdb.base/default.exp: unset environment prompt
new UNRESOLVED: gdb.base/default.exp: until
new UNRESOLVED: gdb.base/default.exp: until "u" abbreviation
new UNRESOLVED: gdb.base/default.exp: up-silently
new UNRESOLVED: gdb.base/default.exp: verify python support
new UNRESOLVED: gdb.base/default.exp: watch
new UNRESOLVED: gdb.base/default.exp: whatis
new UNRESOLVED: gdb.base/default.exp: where
new UNRESOLVED: gdb.base/default.exp: x
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567890123456789012345678901234dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567890123456dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567890123456.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567890123456789012345678901234.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567890123456789012345678901234dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567890123456dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E384dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E6144dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E96df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2147483648ll
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2147483648ull
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2ll
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 4294967296ull
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd < 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd < 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df + 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df + 1.2f
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df < 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df < 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df > 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl < 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl < 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl > 2
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd * 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd + 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd - 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd / 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df * 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df + 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df - 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df / 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl * 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl + 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl - 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl / 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567890123456.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567890123456789012345678901234.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 + 1.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 > 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 > 3.1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.1dd + 2.7df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.1df + 2.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.3dd + 2.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.3dl + 2.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.6df + 2.7dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.6dl + 2.7df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 3 + 2.1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 1.2df + 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2 + 1.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dd + 2.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dd + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dl + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 3 + 2.1dl
new UNRESOLVED: gdb.base/echo.exp: echo test
new UNRESOLVED: gdb.base/empty_exe.exp: file ''
new UNRESOLVED: gdb.base/empty_exe.exp: print 1
new UNRESOLVED: gdb.base/endian.exp: auto target endianness
new UNRESOLVED: gdb.base/endian.exp: auto target endianness big
new UNRESOLVED: gdb.base/endian.exp: auto target endianness little
new UNRESOLVED: gdb.base/endian.exp: default target endianness
new UNRESOLVED: gdb.base/endian.exp: get target endianness
new FAIL: gdb.base/endian.exp: override auto target endianness big
new FAIL: gdb.base/endian.exp: override auto target endianness little
new UNRESOLVED: gdb.base/endian.exp: override target endianness big
new FAIL: gdb.base/endian.exp: override target endianness little
new UNRESOLVED: gdb.base/endian.exp: previously big default executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously big default no executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously little default executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously little default no executable endianness
new UNRESOLVED: gdb.base/endian.exp: set target endianness
new UNRESOLVED: gdb.base/endian.exp: set target endianness big
new UNRESOLVED: gdb.base/endian.exp: set target endianness little
new UNRESOLVED: gdb.base/environ.exp: all environment variables have been unset
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable previously undefined
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable using = syntax
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable with trailing equals
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable with trailing whitespace
new UNRESOLVED: gdb.base/environ.exp: confirm unset environment variable worked
new UNRESOLVED: gdb.base/environ.exp: set environment variable
new UNRESOLVED: gdb.base/environ.exp: set environment variable previously undefined
new UNRESOLVED: gdb.base/environ.exp: set environment variable to null value
new UNRESOLVED: gdb.base/environ.exp: set environment variable using = syntax
new UNRESOLVED: gdb.base/environ.exp: set environment variable with trailing equals
new UNRESOLVED: gdb.base/environ.exp: set environment variable with trailing whitespace
new UNRESOLVED: gdb.base/environ.exp: set environment without arguments
new UNRESOLVED: gdb.base/environ.exp: set environment without variable name
new UNRESOLVED: gdb.base/environ.exp: set path works properly
new UNRESOLVED: gdb.base/environ.exp: show environment works
new UNRESOLVED: gdb.base/environ.exp: show non-existent environment variable
new UNRESOLVED: gdb.base/environ.exp: show null environment variable
new UNRESOLVED: gdb.base/environ.exp: show paths works properly
new UNRESOLVED: gdb.base/environ.exp: unset all environment variables
new UNRESOLVED: gdb.base/environ.exp: unset environment variable
new UNRESOLVED: gdb.base/eval.exp: first eval.
new UNRESOLVED: gdb.base/eval.exp: initialize $a.
new UNRESOLVED: gdb.base/eval.exp: second eval.
new UNRESOLVED: gdb.base/gdb1056.exp: print 1/0
new UNRESOLVED: gdb.base/gdb1056.exp: test unsigned division by zero
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize= 20 : show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize= 20 : show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5ab: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5ab: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=0: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=0: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=10zab: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=10zab: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=20: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=20: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=50: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=50: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=99999999999999999999999999999999999: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=99999999999999999999999999999999999: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=not_an_integer: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=not_an_integer: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=1000: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=1000: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=foo: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=foo: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/zero: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/zero: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: appending: server show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: creating: server show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: print 1
new UNRESOLVED: gdb.base/help.exp: apropos \
new UNRESOLVED: gdb.base/help.exp: apropos apropos
new UNRESOLVED: gdb.base/help.exp: apropos handle signal
new UNRESOLVED: gdb.base/help.exp: disable pagination
new UNRESOLVED: gdb.base/help.exp: help aliases
new UNRESOLVED: gdb.base/help.exp: help backtrace
new UNRESOLVED: gdb.base/help.exp: help backtrace "bt" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "b" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "br" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "bre" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "brea" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "break" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoints
new UNRESOLVED: gdb.base/help.exp: help commands
new UNRESOLVED: gdb.base/help.exp: help data
new UNRESOLVED: gdb.base/help.exp: help delete
new UNRESOLVED: gdb.base/help.exp: help delete "d" abbreviation
new UNRESOLVED: gdb.base/help.exp: help files
new UNRESOLVED: gdb.base/help.exp: help gotcha
new UNRESOLVED: gdb.base/help.exp: help help
new UNRESOLVED: gdb.base/help.exp: help help "h" abbreviation
new UNRESOLVED: gdb.base/help.exp: help info bogus-gdb-command
new UNRESOLVED: gdb.base/help.exp: help internals
new UNRESOLVED: gdb.base/help.exp: help obscure
new UNRESOLVED: gdb.base/help.exp: help running
new UNRESOLVED: gdb.base/help.exp: help show commands
new UNRESOLVED: gdb.base/help.exp: help show confirm
new UNRESOLVED: gdb.base/help.exp: help show copying
new UNRESOLVED: gdb.base/help.exp: help show warranty
new UNRESOLVED: gdb.base/help.exp: help stack
new UNRESOLVED: gdb.base/help.exp: help status
new UNRESOLVED: gdb.base/help.exp: help support
new UNRESOLVED: gdb.base/help.exp: help tracepoints
new UNRESOLVED: gdb.base/help.exp: help user-defined
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: set history remove-duplicates 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: set history remove-duplicates 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: set history remove-duplicates 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 3
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 4
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 3
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 4
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: set history remove-duplicates unlimited
new UNRESOLVED: gdb.base/history-duplicates.exp: show editing
new UNRESOLVED: gdb.base/history-duplicates.exp: show history remove-duplicates
new UNRESOLVED: gdb.base/ifelse.exp: call original define
new UNRESOLVED: gdb.base/ifelse.exp: call replacement define
new UNRESOLVED: gdb.base/ifelse.exp: create define with empty else
new UNRESOLVED: gdb.base/ifelse.exp: if 0 .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 0 with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 1 .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 1 with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #1
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #2
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #3
new UNRESOLVED: gdb.base/ifelse.exp: replace define with if .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: set confirm off
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tc-td: 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-tc-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ts: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tf: 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-tf-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-ts: 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-ti-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tl-td: 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-tl-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-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-td: 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-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tld: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tll-tf: 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-td: 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-ts-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ts: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tc-td: 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-tc-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-ts: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tf: 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-tf-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-ts: 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-ti-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tl-td: 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-tl-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-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-td: 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-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tld: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tll-tf: 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-td: 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-ts-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ts: failed to compile
new FAIL: gdb.base/info-os.exp: cannot compile test program
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode on
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode on
new UNRESOLVED: gdb.base/interact.exp: show interactive-mode
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode on
new UNRESOLVED: gdb.base/multi-line-starts-subshell.exp: gdb input still works
new UNRESOLVED: gdb.base/multi-line-starts-subshell.exp: spawn subshell from multi-line
new UNRESOLVED: gdb.base/osabi.exp: set debug arch 1
new UNRESOLVED: gdb.base/osabi.exp: set osabi none
new UNRESOLVED: gdb.base/page.exp: paged count
new UNRESOLVED: gdb.base/page.exp: paged count for interrupt
new UNRESOLVED: gdb.base/page.exp: paged count remainder
new UNRESOLVED: gdb.base/page.exp: paged help
new UNRESOLVED: gdb.base/page.exp: pagination is off
new UNRESOLVED: gdb.base/page.exp: pagination is on
new UNRESOLVED: gdb.base/page.exp: q
new UNRESOLVED: gdb.base/page.exp: quit while paging
new UNRESOLVED: gdb.base/page.exp: set editing off
new UNRESOLVED: gdb.base/page.exp: set height -1
new UNRESOLVED: gdb.base/page.exp: set height 10
new UNRESOLVED: gdb.base/page.exp: set height 5
new UNRESOLVED: gdb.base/page.exp: set pagination off
new UNRESOLVED: gdb.base/page.exp: set pagination on
new UNRESOLVED: gdb.base/page.exp: set width -1
new UNRESOLVED: gdb.base/page.exp: set width 30
new UNRESOLVED: gdb.base/page.exp: size=0: set height 0
new UNRESOLVED: gdb.base/page.exp: size=0: set height 200
new UNRESOLVED: gdb.base/page.exp: size=0: set width 0
new UNRESOLVED: gdb.base/page.exp: size=0: set width 200
new UNRESOLVED: gdb.base/page.exp: size=0: show height
new UNRESOLVED: gdb.base/page.exp: size=0: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=0: show width
new UNRESOLVED: gdb.base/page.exp: size=0: show width unlimited
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set height 0x80000000
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set height 200
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set width 0x80000000
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set width 200
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show height
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show width
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show width unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set height 200
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set height unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set width 200
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set width unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show height
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show width
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show width unlimited
new UNRESOLVED: gdb.base/page.exp: unpaged help
new UNRESOLVED: gdb.base/quit.exp: quit with expression
new UNRESOLVED: gdb.base/quit.exp: quit with syntax error
new UNRESOLVED: gdb.base/radix.exp: Output radix unchanged after rejecting 0
new UNRESOLVED: gdb.base/radix.exp: Reject input-radix 0
new UNRESOLVED: gdb.base/radix.exp: Reject input-radix 1
new UNRESOLVED: gdb.base/radix.exp: Reject output-radix 0
new UNRESOLVED: gdb.base/radix.exp: Reject output-radix 1
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 10
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 16
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 2
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 3
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 8
new UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 10
new UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 16
new UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 8
new UNRESOLVED: gdb.base/radix.exp: input radix unchanged after rejecting 0
new UNRESOLVED: gdb.base/radix.exp: input radix unchanged after rejecting 1
new UNRESOLVED: gdb.base/radix.exp: output radix unchanged after rejecting 1
new UNRESOLVED: gdb.base/radix.exp: output radix unchanged after rejection through set radix command
new UNRESOLVED: gdb.base/radix.exp: print
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -100; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -256; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -4; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -64; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -9; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -101; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -10; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -257; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -5; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -65; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -10; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -16; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -2; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -3; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -8; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -11; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -17; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -3; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -4; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -9; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -12; expect -12; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -20; expect -16; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -2; expect Invalid number "2"\.; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -9; expect Invalid number "9".; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 010; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 17; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect f; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 100; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 100; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 144; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 256; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 4; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 64; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 64; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 9; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 10101; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 21; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 4161; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 65793; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 91; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 101; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 10; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 257; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 5; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 65; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 10; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 10; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 12; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 16; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 2; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 3; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 8; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10; expect a; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 11; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 17; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 3; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 4; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 9; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 14; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 24; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20; expect 16; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20; expect 6; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 2; expect 2; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 30; expect Invalid number "30"\.; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 3; expect Invalid number "3"\.; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 4; expect Invalid number "4"\.; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 8; expect Invalid number "8".; input radix 8
new UNRESOLVED: gdb.base/radix.exp: reset radices
new UNRESOLVED: gdb.base/radix.exp: set input-radix 10
new UNRESOLVED: gdb.base/radix.exp: set input-radix 16
new UNRESOLVED: gdb.base/radix.exp: set input-radix 2
new UNRESOLVED: gdb.base/radix.exp: set input-radix 3
new UNRESOLVED: gdb.base/radix.exp: set input-radix 8
new UNRESOLVED: gdb.base/radix.exp: set output-radix 10
new UNRESOLVED: gdb.base/radix.exp: set output-radix 16
new UNRESOLVED: gdb.base/radix.exp: set output-radix 8
new UNRESOLVED: gdb.base/radix.exp: set radix 7 rejected
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 10
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 16
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 2
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 3
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 8
new UNRESOLVED: gdb.base/radix.exp: show radix, output radix 10
new UNRESOLVED: gdb.base/radix.exp: show radix, output radix 16
new UNRESOLVED: gdb.base/radix.exp: show radix, output radix 8
new UNRESOLVED: gdb.base/readline.exp: Simple operate-and-get-next - send p 1
new UNRESOLVED: gdb.base/readline.exp: arrow keys with secondary prompt
new UNRESOLVED: gdb.base/readline.exp: operate-and-get-next with secondary prompt - send if 1 > 0
new UNRESOLVED: gdb.base/readline.exp: print 42
new UNRESOLVED: gdb.base/readline.exp: show editing
new UNRESOLVED: gdb.base/remotetimeout.exp: correct remotetimeout printed
new UNRESOLVED: gdb.base/shell.exp: ! echo foo
new UNRESOLVED: gdb.base/shell.exp: ! exit 0
new UNRESOLVED: gdb.base/shell.exp: ! exit 1
new UNRESOLVED: gdb.base/shell.exp: ! kill -2 $$
new UNRESOLVED: gdb.base/shell.exp: !echo foo
new UNRESOLVED: gdb.base/shell.exp: -d spaces value missing
new UNRESOLVED: gdb.base/shell.exp: -d value missing
new UNRESOLVED: gdb.base/shell.exp: DELIM delimiter missing
new UNRESOLVED: gdb.base/shell.exp: SHELL_COMMAND missing
new UNRESOLVED: gdb.base/shell.exp: SHELL_COMMAND missing with delimiter
new UNRESOLVED: gdb.base/shell.exp: all missing
new UNRESOLVED: gdb.base/shell.exp: alternate 1char delim
new UNRESOLVED: gdb.base/shell.exp: alternate 1char delim, no space
new UNRESOLVED: gdb.base/shell.exp: alternate 3char delim
new UNRESOLVED: gdb.base/shell.exp: alternate 3char delim, no space
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe print 1 | "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| print 1 | "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|print 1 | "
new UNRESOLVED: gdb.base/shell.exp: define foo
new UNRESOLVED: gdb.base/shell.exp: delimiter missing due to missing space
new UNRESOLVED: gdb.base/shell.exp: double pipe
new UNRESOLVED: gdb.base/shell.exp: double pipe, pipe char
new UNRESOLVED: gdb.base/shell.exp: echo coucou
new UNRESOLVED: gdb.base/shell.exp: enter commands
new UNRESOLVED: gdb.base/shell.exp: no space around pipe char
new UNRESOLVED: gdb.base/shell.exp: pipe fail exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe fail exitsignal
new UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitsignal
new UNRESOLVED: gdb.base/shell.exp: pipe success exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe success exitsignal
new UNRESOLVED: gdb.base/shell.exp: repeat previous command
new UNRESOLVED: gdb.base/shell.exp: set max-completions 0
new UNRESOLVED: gdb.base/shell.exp: set max-completions 2
new UNRESOLVED: gdb.base/shell.exp: shell echo foo
new UNRESOLVED: gdb.base/shell.exp: shell fail exitcode
new UNRESOLVED: gdb.base/shell.exp: shell fail exitsignal
new UNRESOLVED: gdb.base/shell.exp: shell interrupt exitcode
new UNRESOLVED: gdb.base/shell.exp: shell interrupt exitsignal
new UNRESOLVED: gdb.base/shell.exp: shell success exitcode
new UNRESOLVED: gdb.base/shell.exp: shell success exitsignal
new UNRESOLVED: gdb.base/shell.exp: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
new UNRESOLVED: gdb.base/shell.exp: simple pipe
new UNRESOLVED: gdb.base/shell.exp: simple pipe with arg
new UNRESOLVED: gdb.base/shell.exp: | delimiter missing
new UNRESOLVED: gdb.base/shell.exp: |p 123| exit 0
new UNRESOLVED: gdb.base/shell.exp: |p 123| exit 1
new UNRESOLVED: gdb.base/shell.exp: |p 123| kill -2 $$
new UNRESOLVED: gdb.base/source-dir.exp: directory /nOtExStInG/a /nOtExStInG/b /nOtExStInG/c
new UNRESOLVED: gdb.base/source-dir.exp: directory /nOtExStInG/b /nOtExStInG/d /nOtExStInG/c
new UNRESOLVED: gdb.base/source.exp: script contains error
new UNRESOLVED: gdb.base/source.exp: set search directories
new UNRESOLVED: gdb.base/source.exp: source -s
new UNRESOLVED: gdb.base/source.exp: source -s -v
new UNRESOLVED: gdb.base/source.exp: source -v
new UNRESOLVED: gdb.base/source.exp: source -v -s
new UNRESOLVED: gdb.base/source.exp: source after -v
new UNRESOLVED: gdb.base/source.exp: source for-sure-nonexistant-file
new UNRESOLVED: gdb.base/source.exp: source source-nofile.gdb
new UNRESOLVED: gdb.base/step-over-syscall.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/step-over-syscall.exp: run to main
new UNRESOLVED: gdb.base/subst.exp: add depuis -> vers substitution rule
new UNRESOLVED: gdb.base/subst.exp: add from -> to substitution rule
new UNRESOLVED: gdb.base/subst.exp: add from1 -> to1 substitution rule
new UNRESOLVED: gdb.base/subst.exp: add source -> destination substitution rule
new UNRESOLVED: gdb.base/subst.exp: add substitution rule to empty string
new UNRESOLVED: gdb.base/subst.exp: deactivate GDB's confirmation interface
new UNRESOLVED: gdb.base/subst.exp: remove all remaining substitution rules
new UNRESOLVED: gdb.base/subst.exp: remove default substitution rules
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, first argument is empty string
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, too few arguments
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, too many arguments
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after all remaining rules removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after depuis rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after empty rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after from rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path depuis, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, after unsetting it
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from/path, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from_a_bad_path, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path garbage, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: show substitute-path, too many arguments
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path depuis
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path empty
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from after the rule was removed
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path, too many arguments
new UNRESOLVED: gdb.base/trace-commands.exp: define user command
new UNRESOLVED: gdb.base/trace-commands.exp: depth resets on error part 1
new UNRESOLVED: gdb.base/trace-commands.exp: depth resets on error part 2
new UNRESOLVED: gdb.base/trace-commands.exp: nested trace-commands test
new UNRESOLVED: gdb.base/trace-commands.exp: nested trace-commands test with source
new UNRESOLVED: gdb.base/trace-commands.exp: set trace-commands
new UNRESOLVED: gdb.base/trace-commands.exp: show trace-commands says off
new UNRESOLVED: gdb.base/trace-commands.exp: show trace-commands says on
new UNRESOLVED: gdb.base/trace-commands.exp: simple trace-commands test
new UNRESOLVED: gdb.base/trace-commands.exp: source -v
new UNRESOLVED: gdb.base/warning.exp: echo 23\n
new UNRESOLVED: gdb.btrace/cpu.exp: default cpu
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu auto
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/1
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0x0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo/bar
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu none
new UNRESOLVED: gdb.btrace/cpu.exp: set record
new UNRESOLVED: gdb.btrace/cpu.exp: set record btrace
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu auto
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/1
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0x0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo/bar
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu none
new UNRESOLVED: gdb.cp/debug-expr.exp: print dynamic_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: print reinterpret_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: print static_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: set debug expression 1
new UNRESOLVED: gdb.cp/debug-expr.exp: set language c++
new UNRESOLVED: gdb.cp/demangle.exp: auto: check demangling style
new UNRESOLVED: gdb.cp/demangle.exp: auto: set demangle-style
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c -- _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c++ -- _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c++ _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l garbage xyzdje
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z13BitPatterntoaOK10BitPatternccc
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z31DrawDestinationTransformedImageP7_XImageiiS0_iimjiijmmP4_XGCOK13ivTransformeriiii
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z3argOK7Complex
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN11RelateManip6EffectEO7ivEvent
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN20DisplayList_IteratorC4EO11DisplayList
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN3fooC4EOS_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN3fooC4EiOS_iS0_iS0_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE3PixC4EOKS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE7elementC2EOKS0_PS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE7elementC4EOKS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityEC4EOKS1_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4PixXI11VHDLLibrary14VHDLLibraryRep4ListI10VHDLEntityEEC2EOKS5_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN7ivWorldC2EPKcOiPPcPK12ivOptionDescPK14ivPropertyData
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN8TextCode14CoreConstDeclsEO7ostream
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic: gnu-v3: check demangling style
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic: gnu-v3: set demangle-style
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK11VHDLLibrary5nextEEO4PixXIS_14VHDLLibraryRep4ListI10VHDLEntityEE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK4ListI10VHDLEntityE4nextEONS1_3PixE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK4ListI10VHDLEntityEclEOKNS1_3PixE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOK10BitPattern
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOK12BitSubStringi
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOKS_
new UNRESOLVED: gdb.cp/demangle.exp: set language c++
new UNRESOLVED: gdb.cp/demangle.exp: set language unknown
new UNRESOLVED: gdb.cp/demangle.exp: set width 0
new UNRESOLVED: gdb.cp/maint.exp: help maint cp
new UNRESOLVED: gdb.cp/maint.exp: help maint cp first_component
new UNRESOLVED: gdb.cp/maint.exp: help maint cp namespace
new UNRESOLVED: gdb.cp/maint.exp: help maintenance cplus
new UNRESOLVED: gdb.cp/maint.exp: maint cp
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component C<A>::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component C<std::basic_streambuf<wchar_t,std::char_traits<wchar_t> > >::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component T<Cooperator>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component bool operator<<char>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo::bar::baz
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<&
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<&operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int operator<< <char>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator  ->
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator ->
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator>>
new UNRESOLVED: gdb.cp/maint.exp: maint cp namespace
new UNRESOLVED: gdb.cp/maint.exp: set complaints 1000
new UNRESOLVED: gdb.cp/punctuator.exp: print
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 1
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 2
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 3
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 1
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 2
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 3
new UNRESOLVED: gdb.cp/punctuator.exp: set lang c++
new UNRESOLVED: gdb.cp/ref-params.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/ref-params.exp: print value of Child& in f2
new UNRESOLVED: gdb.cp/ref-params.exp: print value of Parent& in f1
new UNRESOLVED: gdb.cp/ref-params.exp: print value of a Child in main
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on Child in main
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on Child& in f2
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f2 on
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f2 on Child in main
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print f1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print mf1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print mf2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Child&& in f2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Child&& in f2: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Parent&& in f1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Parent&& in f1: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f1 on
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f1 on Child&& in f2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f2 on
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char16_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char16_t is unsigned
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char32_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char32_t is unsigned
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p L"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p U"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p u"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: set language c++
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: sizeof
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: wchar_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: wchar_t sign
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: char16_t is not built-in
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: char32_t is not built-in
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p L"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p U"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p u"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: set language c
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: wchar_t is not built-in
new UNRESOLVED: gdb.disasm/disassembler-options.exp: set disassembler-options
new UNRESOLVED: gdb.disasm/disassembler-options.exp: set disassembler-options invalid_option_value
new UNRESOLVED: gdb.disasm/disassembler-options.exp: show NULL disassembler-options
new UNRESOLVED: gdb.dlang/debug-expr.exp: print *
new UNRESOLVED: gdb.dlang/debug-expr.exp: set debug expression 1
new UNRESOLVED: gdb.dlang/debug-expr.exp: set language d
new UNRESOLVED: gdb.dlang/demangle.exp: set language d
new UNRESOLVED: gdb.dlang/expression.exp: set language d
new UNRESOLVED: gdb.dlang/primitive-types.exp: set language d
new UNRESOLVED: gdb.dlang/properties.exp: set language d
new UNRESOLVED: gdb.dlang/watch-loc.exp: disassemble _Dmain
new UNRESOLVED: gdb.dlang/watch-loc.exp: p _Dmain_label - _Dmain
new UNRESOLVED: gdb.dlang/watch-loc.exp: x/2i _Dmain+
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: disassemble first
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: disassemble second
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p first_label - first
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p second_label - second
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: x/2i first+
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: x/2i second+
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p g_label - g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i g+
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: console: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: console: set print object on
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: disassemble func01
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: p func01_label - func01
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: x/2i func01+
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dwz.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dwz.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dwz.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: disassemble mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: p mymain_label - mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: x/2i mymain+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/var-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/var-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/var-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/void-type.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/void-type.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i main+
new UNRESOLVED: gdb.guile/guile.exp: collect help from uiout
new UNRESOLVED: gdb.guile/guile.exp: guile
new UNRESOLVED: gdb.guile/guile.exp: show guile command - define zzq
new UNRESOLVED: gdb.guile/guile.exp: source -s source2.scm
new UNRESOLVED: gdb.guile/guile.exp: source source2.scm
new UNRESOLVED: gdb.guile/guile.exp: verify guile support
new UNRESOLVED: gdb.guile/guile.exp: verify help to uiout
new UNRESOLVED: gdb.guile/scm-error.exp: backtrace printed
new UNRESOLVED: gdb.guile/scm-error.exp: error loading scm file caught
new UNRESOLVED: gdb.guile/scm-error.exp: error message printed
new UNRESOLVED: gdb.guile/scm-error.exp: guile
new UNRESOLVED: gdb.guile/scm-error.exp: no delayed error
new UNRESOLVED: gdb.guile/scm-error.exp: no error printed
new UNRESOLVED: gdb.guile/scm-error.exp: reset print-stack to default, post set/show tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to full, for backtrace test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error printing tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to none, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: source /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.guile/scm-error/scm-error-2.scm
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack full setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack none setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting of default
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to full
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to none
new UNRESOLVED: gdb.guile/scm-error.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-gsmob.exp: gu
new UNRESOLVED: gdb.guile/scm-gsmob.exp: guile
new UNRESOLVED: gdb.guile/scm-gsmob.exp: object-properties
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-parameter.exp: Simple gdb boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: enum gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: error registering existing parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: file gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously ambiguously named boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set print s on
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: restricted gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: enum parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set invalid enum parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set print test-enum-param two
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: initial parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: new parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param bar.txt
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set print test-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 10
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 42
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: show test-restricted-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set print test-undoc-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: undocumented gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: verify guile support
new UNRESOLVED: gdb.objc/print.exp: set language objective-c
new UNRESOLVED: gdb.pascal/print.exp: set language pascal
new UNRESOLVED: gdb.pascal/types.exp: set language pascal
new UNRESOLVED: gdb.python/py-completion.exp: check if python 3
new UNRESOLVED: gdb.python/py-completion.exp: discard #1
new UNRESOLVED: gdb.python/py-completion.exp: discard #2
new UNRESOLVED: gdb.python/py-completion.exp: discard #3
new UNRESOLVED: gdb.python/py-completion.exp: discard #4
new UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completel'
new UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit1 c'
new UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit2 c'
new UNRESOLVED: gdb.python/py-completion.exp: load python file
new UNRESOLVED: gdb.python/py-completion.exp: load python file again
new UNRESOLVED: gdb.python/py-completion.exp: show editing
new UNRESOLVED: gdb.python/py-completion.exp: verify python support
new UNRESOLVED: gdb.python/py-error.exp: check if python 3
new UNRESOLVED: gdb.python/py-error.exp: main reached
new UNRESOLVED: gdb.python/py-error.exp: no delayed error
new UNRESOLVED: gdb.python/py-error.exp: set host-charset IBM1047
new UNRESOLVED: gdb.python/py-error.exp: verify python support
new KFAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new UNRESOLVED: gdb.python/py-function.exp: Test GDBError - python
new UNRESOLVED: gdb.python/py-function.exp: Test GdbError.  There should not be a stack trace
new UNRESOLVED: gdb.python/py-function.exp: Test Normal Error - python
new UNRESOLVED: gdb.python/py-function.exp: Test a Runtime error.  There should be a stack trace.
new UNRESOLVED: gdb.python/py-function.exp: call function
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = ada
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = asm
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = auto
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = c
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = c++
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = d
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = fortran
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = go
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = minimal
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = modula-2
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = objective-c
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = opencl
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = pascal
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = rust
new UNRESOLVED: gdb.python/py-function.exp: call yes with &&
new UNRESOLVED: gdb.python/py-function.exp: call yes with ||
new UNRESOLVED: gdb.python/py-function.exp: check if python 3
new UNRESOLVED: gdb.python/py-function.exp: input command-calling function - python
new UNRESOLVED: gdb.python/py-function.exp: input convenience function - python
new UNRESOLVED: gdb.python/py-function.exp: input int-returning function - python
new UNRESOLVED: gdb.python/py-function.exp: input value-returning convenience function - python
new UNRESOLVED: gdb.python/py-function.exp: set language ada
new UNRESOLVED: gdb.python/py-function.exp: set language asm
new UNRESOLVED: gdb.python/py-function.exp: set language auto
new UNRESOLVED: gdb.python/py-function.exp: set language c
new UNRESOLVED: gdb.python/py-function.exp: set language c++
new UNRESOLVED: gdb.python/py-function.exp: set language d
new UNRESOLVED: gdb.python/py-function.exp: set language fortran
new UNRESOLVED: gdb.python/py-function.exp: set language go
new UNRESOLVED: gdb.python/py-function.exp: set language minimal
new UNRESOLVED: gdb.python/py-function.exp: set language modula-2
new UNRESOLVED: gdb.python/py-function.exp: set language objective-c
new UNRESOLVED: gdb.python/py-function.exp: set language opencl
new UNRESOLVED: gdb.python/py-function.exp: set language pascal
new UNRESOLVED: gdb.python/py-function.exp: set language rust
new UNRESOLVED: gdb.python/py-function.exp: set python print-stack full
new UNRESOLVED: gdb.python/py-function.exp: setting a value from a function which executes a command, again.
new UNRESOLVED: gdb.python/py-function.exp: setting a value from a function which executes a command.
new UNRESOLVED: gdb.python/py-function.exp: verify python support
new UNRESOLVED: gdb.python/py-lookup-type.exp: check if python 3
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type CARDINAL using language modula-2
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language c
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language objective-c
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language pascal
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type character using language ada
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type character using language fortran
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type int32 using language go
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type ucent using language d
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type ushort using language opencl
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language ada
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language c
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language d
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language fortran
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language go
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language modula-2
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language objective-c
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language opencl
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language pascal
new UNRESOLVED: gdb.python/py-lookup-type.exp: verify python support
new UNRESOLVED: gdb.python/py-nested-maps.exp: check if python 3
new UNRESOLVED: gdb.python/py-nested-maps.exp: verify python support
new UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER - python
new UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER_UNLIMITED - python
new UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb booleanparameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: Throwing gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: check if python 3
new UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value can be set to -1
new UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value is -1 after setting
new UNRESOLVED: gdb.python/py-parameter.exp: enum gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: file gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: gdb.GdbError does not show Python stack
new UNRESOLVED: gdb.python/py-parameter.exp: python print
new UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -1
new UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -5
new UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER_UNLIMITED.value = -5
new UNRESOLVED: gdb.python/py-parameter.exp: set enum to two
new UNRESOLVED: gdb.python/py-parameter.exp: set invalid enum parameter
new UNRESOLVED: gdb.python/py-parameter.exp: set new file parameter
new UNRESOLVED: gdb.python/py-parameter.exp: set test-file-param
new UNRESOLVED: gdb.python/py-parameter.exp: show initial file value
new UNRESOLVED: gdb.python/py-parameter.exp: show new file value
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter is initial value
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter is new value
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter off
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter on
new UNRESOLVED: gdb.python/py-parameter.exp: test enum parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test file parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test general help
new UNRESOLVED: gdb.python/py-parameter.exp: test new file parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test set help
new UNRESOLVED: gdb.python/py-parameter.exp: test show help
new UNRESOLVED: gdb.python/py-parameter.exp: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: verify python support
new UNRESOLVED: gdb.python/py-prettyprint.exp: check if python 3
new UNRESOLVED: gdb.python/py-prettyprint.exp: verify python support
new UNRESOLVED: gdb.python/py-prompt.exp: check if python 3
new UNRESOLVED: gdb.python/py-prompt.exp: verify python support
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sigall-precsave.exp
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sigall-reverse.exp
new UNRESOLVED: gdb.rust/expr.exp: set language rust
new UNRESOLVED: gdb.rust/expr.exp: set var $something = 27
new FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
new FAIL: gdb.server/unittest.exp: unit tests
new UNRESOLVED: gdb.trace/actions.exp: failed to compile
new UNRESOLVED: gdb.trace/ax.exp: failed to compile
new UNRESOLVED: gdb.trace/deltrace.exp: failed to compile
new UNRESOLVED: gdb.trace/infotrace.exp: failed to compile
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with missing argument
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with too many arguments
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with wrong option
new UNRESOLVED: gdb.trace/packetlen.exp: failed to compile
new UNRESOLVED: gdb.trace/passc-dyn.exp: failed to compile
new UNRESOLVED: gdb.trace/passcount.exp: failed to compile
new UNRESOLVED: gdb.trace/report.exp: failed to compile
new UNRESOLVED: gdb.trace/save-trace.exp: failed to compile
new UNRESOLVED: gdb.trace/tfind.exp: failed to compile
new UNRESOLVED: gdb.trace/tracecmd.exp: failed to compile
new UNRESOLVED: gdb.trace/tsv.exp: failed to compile
new UNRESOLVED: gdb.trace/while-dyn.exp: failed to compile
new UNRESOLVED: gdb.trace/while-stepping.exp: failed to compile
new UNRESOLVED: gdb.tui/completion.exp: verify tui support
new UNRESOLVED: gdb.tui/empty.exp: set tui border-kind ascii
new UNRESOLVED: gdb.tui/empty.exp: src: 80x24: box 1
new UNRESOLVED: gdb.tui/empty.exp: verify tui support
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: correct line breaks
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: set height 2000
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: set pagination on
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: tui enable
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: verify tui support
new UNRESOLVED: gdb.xml/maint_print_struct.exp: printing tdesc with a structure and a bitfield
new UNRESOLVED: gdb.xml/maint_print_struct.exp: setting a new tdesc having only a structure
new UNRESOLVED: gdb.xml/tdesc-arch.exp: architecture XML tests
new UNRESOLVED: gdb.xml/tdesc-arch.exp: read default architecture
new UNRESOLVED: gdb.xml/tdesc-arch.exp: read valid architectures
new UNRESOLVED: gdb.xml/tdesc-errors.exp: set tdesc filename gdb.xml/tdesc-bogus.xml
new UNRESOLVED: gdb.xml/tdesc-errors.exp: set tdesc filename gdb.xml/tdesc-unknown.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: cd to directory holding xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: maintenance print reggroups
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $bitfields
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $extrareg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $flags
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $mixed_flags
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $structreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $structreg.v4
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $uintreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $unionreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $unionreg.v4
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $vecreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc file single-reg.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc filename test-extra-regs.xml - from extra-regs.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc filename test-regs.xml - from core-only.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/bad-include.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/includes.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/loop.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-gdbserver-m64/ea/eabb7154df3e97e9d808a8673953cc1ce708f3d4//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/ea/eabb7154df3e97e9d808a8673953cc1ce708f3d4//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-07 11:02 [binutils-gdb] libctf: add the ctf_link machinery gdb-buildbot
@ 2019-10-07 13:06 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-07 13:06 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/862

Author:
        Nick Alcock <nick.alcock@oracle.com>

Commit tested:
        72c83edd92ef15a19ed0c033e25bb5006ee3bdd8

Subject of commit:
        libctf: add the ctf_link machinery

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/72/72c83edd92ef15a19ed0c033e25bb5006ee3bdd8/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.ada/bias.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/bias.exp: print a
new UNRESOLVED: gdb.ada/bias.exp: print cval
new UNRESOLVED: gdb.ada/bias.exp: print spr
new UNRESOLVED: gdb.ada/bias.exp: print x
new UNRESOLVED: gdb.ada/bias.exp: print x * x1
new UNRESOLVED: gdb.ada/bias.exp: print x + x1
new UNRESOLVED: gdb.ada/bias.exp: print x - x1
new UNRESOLVED: gdb.ada/bias.exp: print x / x1
new UNRESOLVED: gdb.ada/bias.exp: print x := 5
new UNRESOLVED: gdb.ada/bias.exp: print y
new UNRESOLVED: gdb.ada/bias.exp: print y /= y
new UNRESOLVED: gdb.ada/bias.exp: print y /= y1
new UNRESOLVED: gdb.ada/bias.exp: print y < y1
new UNRESOLVED: gdb.ada/bias.exp: print y <= y1
new UNRESOLVED: gdb.ada/bias.exp: print y = y
new UNRESOLVED: gdb.ada/bias.exp: print y > y1
new UNRESOLVED: gdb.ada/bias.exp: print y >= y1
new UNRESOLVED: gdb.ada/bias.exp: print/c cval
new UNRESOLVED: gdb.ada/bias.exp: ptype x + x1
new UNRESOLVED: gdb.ada/bias.exp: re-read x after storing
new UNRESOLVED: gdb.ada/funcall_char.exp: print f
new UNRESOLVED: gdb.ada/mi_catch_ex.exp: cannot run to main, testcase aborted
new UNRESOLVED: gdb.ada/nested.exp: break on nested function First
new UNRESOLVED: gdb.base/annota-input-while-running.exp: can't run to main
new UNRESOLVED: gdb.base/catch-follow-exec.exp: could not run to main
new UNRESOLVED: gdb.base/print-file-var.exp: lang=c: hidden=0: dlopen=0: version_id_main=0: could not run to main
new FAIL: gdb.base/reread.exp: opts= "" "" : continue until exit at second pass
new UNRESOLVED: gdb.base/reread.exp: opts= "" "" : run to foo
new UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: run to foo
UNRESOLVED -> FAIL: gdb.cp/rvalue-ref-params.exp: print value of f1 on Child&& in f2
new UNRESOLVED: gdb.linespec/keywords.exp: can't run to main
new UNRESOLVED: gdb.python/py-value.exp: can't run to main
==============================================

*** 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/72/72c83edd92ef15a19ed0c033e25bb5006ee3bdd8//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/72/72c83edd92ef15a19ed0c033e25bb5006ee3bdd8//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-07  7:31 [binutils-gdb] libctf: dump: check the right error values when dumping functions gdb-buildbot
@ 2019-10-07  9:42 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-07  9:42 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/861

Author:
        Nick Alcock <nick.alcock@oracle.com>

Commit tested:
        d18f9f16299170e94a3d2e8a45aa349a25278aa3

Subject of commit:
        libctf: dump: check the right error values when dumping functions

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/d1/d18f9f16299170e94a3d2e8a45aa349a25278aa3/

*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/O2_float_param.exp: compilation foo.adb
new FAIL: gdb.ada/access_tagged_param.exp: compilation foo.adb
new FAIL: gdb.ada/access_to_unbounded_array.exp: compilation foo.adb
new FAIL: gdb.ada/addr_arith.exp: compilation foo_na07_019.adb
new FAIL: gdb.ada/aliased_array.exp: compilation foo.adb
new FAIL: gdb.ada/arr_acc_idx_w_gap.exp: compilation enum_with_gap_main.adb
new FAIL: gdb.ada/arr_arr.exp: compilation foo.adb
new FAIL: gdb.ada/arr_enum_idx_w_gap.exp: compilation foo_q418_043.adb
new FAIL: gdb.ada/array_bounds.exp: compilation bar.adb
new FAIL: gdb.ada/array_char_idx.exp: compilation foo.adb
new FAIL: gdb.ada/array_of_variable_length.exp: compilation foo.adb
new FAIL: gdb.ada/array_ptr_renaming.exp: compilation foo.adb
new FAIL: gdb.ada/array_return.exp: compilation p.adb
new FAIL: gdb.ada/array_subscript_addr.exp: compilation p.adb
new FAIL: gdb.ada/arraydim.exp: compilation foo.adb
new FAIL: gdb.ada/arrayidx.exp: compilation p.adb
new FAIL: gdb.ada/arrayparam.exp: compilation foo.adb
new FAIL: gdb.ada/arrayptr.exp: compilation foo.adb
new FAIL: gdb.ada/assign_arr.exp: compilation main_p324_051.adb
new FAIL: gdb.ada/atomic_enum.exp: compilation foo.adb
new FAIL: gdb.ada/attr_ref_and_charlit.exp: compilation foo.adb
new FAIL: gdb.ada/bad-task-bp-keyword.exp: compilation foo.adb
new FAIL: gdb.ada/big_packed_array.exp: compilation foo_ra24_010.adb
new FAIL: gdb.ada/bp_c_mixed_case.exp: compilation foo_h731_021.adb
new FAIL: gdb.ada/bp_enum_homonym.exp: compilation p.adb
new FAIL: gdb.ada/bp_fun_addr.exp: compilation bp_fun_addr.adb
new FAIL: gdb.ada/bp_inlined_func.exp: compilation foo.adb
new FAIL: gdb.ada/bp_on_var.exp: compilation foo.adb
new FAIL: gdb.ada/bp_range_type.exp: compilation foo.adb
new FAIL: gdb.ada/bp_reset.exp: compilation foo.adb
new FAIL: gdb.ada/byte_packed_arr.exp: compilation reprod_main.adb
new FAIL: gdb.ada/catch_assert_if.exp: compilation bla.adb
new FAIL: gdb.ada/catch_ex.exp: compilation foo.adb
new FAIL: gdb.ada/char_enum.exp: compilation foo.adb
new FAIL: gdb.ada/char_param.exp: compilation foo.adb
new FAIL: gdb.ada/complete.exp: compilation foo.adb
new FAIL: gdb.ada/cond_lang.exp: compilation a.adb
new FAIL: gdb.ada/dgopt.exp: compilation x.adb
new FAIL: gdb.ada/disc_arr_bound.exp: compilation foo_n612_026.adb
new FAIL: gdb.ada/display_nested.exp: compilation foo.adb
new FAIL: gdb.ada/dyn_arrayidx.exp: compilation foo.adb
new FAIL: gdb.ada/dyn_loc.exp: compilation p.adb
new FAIL: gdb.ada/dyn_stride.exp: compilation foo.adb
new FAIL: gdb.ada/enum_idx_packed.exp: compilation foo.adb
new FAIL: gdb.ada/excep_handle.exp: compilation foo.adb
new FAIL: gdb.ada/expr_delims.exp: compilation foo.adb
new FAIL: gdb.ada/expr_with_funcall.exp: compilation expr_r821_013.adb
new FAIL: gdb.ada/exprs.exp: compilation p.adb
new FAIL: gdb.ada/fin_fun_out.exp: compilation foo_o525_013.adb
new FAIL: gdb.ada/fixed_cmp.exp: compilation fixed.adb
new FAIL: gdb.ada/fixed_points.exp: compilation fixed_points.adb
new FAIL: gdb.ada/float_param.exp: compilation foo.adb
new FAIL: gdb.ada/formatted_ref.exp: compilation formatted_ref.adb
new FAIL: gdb.ada/frame_arg_lang.exp: compilation bla.adb
new FAIL: gdb.ada/frame_args.exp: compilation foo.adb
new FAIL: gdb.ada/fullname_bp.exp: compilation foo.adb
new FAIL: gdb.ada/fun_addr.exp: compilation foo.adb
new FAIL: gdb.ada/fun_in_declare.exp: compilation foo.adb
new FAIL: gdb.ada/fun_overload_menu.exp: compilation foo.adb
new FAIL: gdb.ada/fun_renaming.exp: compilation fun_renaming.adb
new FAIL: gdb.ada/funcall_param.exp: compilation foo.adb
new FAIL: gdb.ada/funcall_ptr.exp: compilation foo.adb
new FAIL: gdb.ada/funcall_ref.exp: compilation foo.adb
new FAIL: gdb.ada/homonym.exp: compilation homonym_main.adb
new FAIL: gdb.ada/info_addr_mixed_case.exp: compilation foo.adb
new FAIL: gdb.ada/info_exc.exp: compilation foo.adb
new FAIL: gdb.ada/info_locals_renaming.exp: compilation foo.adb
new FAIL: gdb.ada/int_deref.exp: compilation foo.adb
new FAIL: gdb.ada/interface.exp: compilation foo.adb
new FAIL: gdb.ada/iwide.exp: compilation p.adb
new FAIL: gdb.ada/lang_switch.exp: compilation lang_switch.adb
new FAIL: gdb.ada/length_cond.exp: compilation length_cond.adb
new FAIL: gdb.ada/maint_with_ada.exp: compilation var_arr_typedef.adb
new FAIL: gdb.ada/mi_catch_assert.exp: compilation bla.adb
new FAIL: gdb.ada/mi_catch_ex_hand.exp: compilation foo.adb
new FAIL: gdb.ada/mi_ex_cond.exp: compilation foo.adb
new FAIL: gdb.ada/mi_exc_info.exp: compilation foo.adb
new FAIL: gdb.ada/mi_interface.exp: compilation foo.adb
new FAIL: gdb.ada/mi_ref_changeable.exp: compilation foo_rb20_056.adb
new FAIL: gdb.ada/mi_string_access.exp: compilation bar.adb
new FAIL: gdb.ada/mi_task_arg.exp: compilation task_switch.adb
new FAIL: gdb.ada/mi_task_info.exp: compilation task_switch.adb
new FAIL: gdb.ada/mi_var_array.exp: compilation bar.adb
new FAIL: gdb.ada/mi_var_union.exp: compilation bar.adb
new FAIL: gdb.ada/mod_from_name.exp: compilation foo.adb
new FAIL: gdb.ada/n_arr_bound.exp: compilation foo.adb
new FAIL: gdb.ada/notcplusplus.exp: compilation foo.adb
new FAIL: gdb.ada/null_array.exp: compilation foo.adb
new FAIL: gdb.ada/null_record.exp: compilation null_record.adb
new FAIL: gdb.ada/operator_bp.exp: compilation ops_test.adb
new FAIL: gdb.ada/optim_drec.exp: compilation foo.adb
new FAIL: gdb.ada/out_of_line_in_inlined.exp: compilation foo_o224_021.adb
new FAIL: gdb.ada/packed_array.exp: compilation pa.adb
new FAIL: gdb.ada/packed_array_assign.exp: compilation tester.adb
new FAIL: gdb.ada/packed_tagged.exp: compilation comp_bug.adb
new FAIL: gdb.ada/pckd_arr_ren.exp: compilation foo.adb
new FAIL: gdb.ada/pckd_neg.exp: compilation foo_o508_021.adb
new FAIL: gdb.ada/pkd_arr_elem.exp: compilation failure.adb
new FAIL: gdb.ada/pp-rec-component.exp: compilation foo.adb
new FAIL: gdb.ada/print_chars.exp: compilation foo.adb
new FAIL: gdb.ada/print_pc.exp: compilation dummy.adb
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: ptype 3 * 2.0
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: ptype 3 / 2.0
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: set lang ada
new FAIL: gdb.ada/ptype_array.exp: compilation foo.adb
new FAIL: gdb.ada/ptype_field.exp: compilation foo.adb
new FAIL: gdb.ada/ptype_tagged_param.exp: compilation foo.adb
new FAIL: gdb.ada/py_range.exp: compilation foo.adb
new FAIL: gdb.ada/py_taft.exp: compilation main.adb
new FAIL: gdb.ada/rdv_wait.exp: compilation foo.adb
new FAIL: gdb.ada/rec_comp.exp: compilation bar_o203_012.adb
new FAIL: gdb.ada/rec_return.exp: compilation foo.adb
new FAIL: gdb.ada/ref_param.exp: compilation foo.adb
new FAIL: gdb.ada/ref_tick_size.exp: compilation p.adb
new FAIL: gdb.ada/repeat_dyn.exp: compilation foo_oc22_002.adb
new FAIL: gdb.ada/same_component_name.exp: compilation foo.adb
new FAIL: gdb.ada/same_enum.exp: compilation a.adb
new FAIL: gdb.ada/scoped_watch.exp: compilation foo_p708_025.adb
new FAIL: gdb.ada/set_pckd_arr_elt.exp: compilation foo.adb
new FAIL: gdb.ada/set_wstr.exp: compilation a.adb
new FAIL: gdb.ada/small_reg_param.exp: compilation foo.adb
new FAIL: gdb.ada/str_binop_equal.exp: compilation foo_p211_061.adb
new FAIL: gdb.ada/str_uninit.exp: compilation parse.adb
new FAIL: gdb.ada/sym_print_name.exp: compilation foo.adb
new FAIL: gdb.ada/taft_type.exp: compilation p.adb
new FAIL: gdb.ada/tagged.exp: compilation foo.adb
new FAIL: gdb.ada/tagged_access.exp: compilation p.adb
new FAIL: gdb.ada/tagged_not_init.exp: compilation foo.adb
new FAIL: gdb.ada/task_bp.exp: compilation foo.adb
new FAIL: gdb.ada/task_switch_in_core.exp: compilation crash.adb
new FAIL: gdb.ada/tasks.exp: compilation foo.adb
new FAIL: gdb.ada/tick_last_segv.exp: compilation foo.adb
new FAIL: gdb.ada/tick_length_array_enum_idx.exp: compilation foo_n207_004.adb
new FAIL: gdb.ada/type_coercion.exp: compilation assign.adb
new FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: compilation foo.adb
new FAIL: gdb.ada/var_arr_attrs.exp: compilation foo_o115_002.adb
new FAIL: gdb.ada/variant_record_packed_array.exp: compilation foo.adb
new FAIL: gdb.ada/varsize_limit.exp: compilation vsizelim.adb
new FAIL: gdb.ada/vla.exp: compilation vla.adb
new FAIL: gdb.ada/watch_minus_l.exp: compilation foo_ra10_006.adb
new FAIL: gdb.ada/whatis_array_val.exp: compilation foo.adb
new FAIL: gdb.ada/widewide.exp: compilation foo.adb
new FAIL: gdb.ada/win_fu_syms.exp: compilation foo.adb
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: set tdesc filename $srcdir/gdb.arch/arc-tdesc-cpu.xml
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: set tdesc filename /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.arch/arc-tdesc-cpu/trivial.xml
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: setting HS architecture
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: .text is readable
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: complete set architecture i386
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: complete set gnutarget
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: load core file
new UNRESOLVED: gdb.base/alias.exp: -a print elements 47
new UNRESOLVED: gdb.base/alias.exp: abbrev -a not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set2 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set3 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set4 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set5 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set6 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: alias -a -- -a = set
new UNRESOLVED: gdb.base/alias.exp: alias -a -- set6 = set
new UNRESOLVED: gdb.base/alias.exp: alias -a set2=set
new UNRESOLVED: gdb.base/alias.exp: alias -a set3= set
new UNRESOLVED: gdb.base/alias.exp: alias -a set4 =set
new UNRESOLVED: gdb.base/alias.exp: alias -a set5 = set
new UNRESOLVED: gdb.base/alias.exp: alias assigne
new UNRESOLVED: gdb.base/alias.exp: alias assigne imprime
new UNRESOLVED: gdb.base/alias.exp: alias assigne imprime limite-elements
new UNRESOLVED: gdb.base/alias.exp: alias foo=bar
new UNRESOLVED: gdb.base/alias.exp: alias set pr elms = set p elem
new UNRESOLVED: gdb.base/alias.exp: alias set print max-elements using assigne imprime
new UNRESOLVED: gdb.base/alias.exp: alias set2=set
new UNRESOLVED: gdb.base/alias.exp: alias spe = set p elem
new UNRESOLVED: gdb.base/alias.exp: assigne imprime elements 53
new UNRESOLVED: gdb.base/alias.exp: assigne imprime limite-elements 54
new UNRESOLVED: gdb.base/alias.exp: assigne imprime prefix not defined
new UNRESOLVED: gdb.base/alias.exp: assigne print elements 52
new UNRESOLVED: gdb.base/alias.exp: help set print
new UNRESOLVED: gdb.base/alias.exp: mismatched length
new UNRESOLVED: gdb.base/alias.exp: mismatched prefix
new UNRESOLVED: gdb.base/alias.exp: set imprime elements 55
new UNRESOLVED: gdb.base/alias.exp: set imprime prefix not defined
new UNRESOLVED: gdb.base/alias.exp: set pr elms 51
new UNRESOLVED: gdb.base/alias.exp: set print limite-elements 56
new UNRESOLVED: gdb.base/alias.exp: set print max-elements 57
new UNRESOLVED: gdb.base/alias.exp: set2 print elements 42
new UNRESOLVED: gdb.base/alias.exp: set3 print elements 43
new UNRESOLVED: gdb.base/alias.exp: set4 print elements 44
new UNRESOLVED: gdb.base/alias.exp: set5 print elements 45
new UNRESOLVED: gdb.base/alias.exp: set6 print elements 46
new UNRESOLVED: gdb.base/alias.exp: spe 50
new UNRESOLVED: gdb.base/alias.exp: verify -a
new UNRESOLVED: gdb.base/alias.exp: verify 52
new UNRESOLVED: gdb.base/alias.exp: verify 53
new UNRESOLVED: gdb.base/alias.exp: verify 54
new UNRESOLVED: gdb.base/alias.exp: verify 55
new UNRESOLVED: gdb.base/alias.exp: verify 56
new UNRESOLVED: gdb.base/alias.exp: verify 57
new UNRESOLVED: gdb.base/alias.exp: verify set pr elms
new UNRESOLVED: gdb.base/alias.exp: verify set2
new UNRESOLVED: gdb.base/alias.exp: verify set3
new UNRESOLVED: gdb.base/alias.exp: verify set4
new UNRESOLVED: gdb.base/alias.exp: verify set5
new UNRESOLVED: gdb.base/alias.exp: verify set6
new UNRESOLVED: gdb.base/alias.exp: verify spe
new FAIL: gdb.base/all-architectures-0.exp: all passed
new FAIL: gdb.base/all-architectures-0.exp: at least one architecture
new FAIL: gdb.base/all-architectures-0.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-0.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-0.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-0.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-1.exp: all passed
new FAIL: gdb.base/all-architectures-1.exp: at least one architecture
new FAIL: gdb.base/all-architectures-1.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-1.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-1.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-1.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-2.exp: all passed
new FAIL: gdb.base/all-architectures-2.exp: at least one architecture
new FAIL: gdb.base/all-architectures-2.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-2.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-2.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-2.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-3.exp: all passed
new FAIL: gdb.base/all-architectures-3.exp: at least one architecture
new FAIL: gdb.base/all-architectures-3.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-3.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-3.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-3.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-4.exp: all passed
new FAIL: gdb.base/all-architectures-4.exp: at least one architecture
new FAIL: gdb.base/all-architectures-4.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-4.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-4.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-4.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-5.exp: all passed
new FAIL: gdb.base/all-architectures-5.exp: at least one architecture
new FAIL: gdb.base/all-architectures-5.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-5.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-5.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-5.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-6.exp: all passed
new FAIL: gdb.base/all-architectures-6.exp: at least one architecture
new FAIL: gdb.base/all-architectures-6.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-6.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-7.exp: all passed
new FAIL: gdb.base/all-architectures-7.exp: at least one architecture
new FAIL: gdb.base/all-architectures-7.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-7.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-7.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-7.exp: set max-completions unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: break main
new UNRESOLVED: gdb.base/argv0-symlink.exp: p argc
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print elements 200
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print elements unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print repeats 200
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print repeats unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: show print elements
new UNRESOLVED: gdb.base/argv0-symlink.exp: show print repeats
new UNRESOLVED: gdb.base/bad-file.exp: directory
new UNRESOLVED: gdb.base/bad-file.exp: neither file nor directory
new UNRESOLVED: gdb.base/bad-file.exp: non-existent file
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "info source": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "set not-a-thing 4" -x good-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "set not-a-thing 4": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -jslkflsdjlkfjlksdjf: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x bad-commands -ex "info source": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x bad-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands -ex "set not-a-thing 4": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands -x bad-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch: spawn
new UNRESOLVED: gdb.base/bitops.exp: print value of !0
new UNRESOLVED: gdb.base/bitops.exp: print value of !1
new UNRESOLVED: gdb.base/bitops.exp: print value of !10
new UNRESOLVED: gdb.base/bitops.exp: print value of !100
new UNRESOLVED: gdb.base/bitops.exp: print value of !1000
new UNRESOLVED: gdb.base/bitops.exp: print value of !2
new UNRESOLVED: gdb.base/bitops.exp: print value of
new UNRESOLVED: gdb.base/bitops.exp: print value of -!0
new UNRESOLVED: gdb.base/bitops.exp: print value of -1 < 0 > 1
new UNRESOLVED: gdb.base/bitops.exp: print value of -3>4
new UNRESOLVED: gdb.base/bitops.exp: print value of 0 == 8 > 128 >> 1 + 2 * 2
new UNRESOLVED: gdb.base/bitops.exp: print value of 0 || 1 && 0 | 0 ^ 0 == 8
new UNRESOLVED: gdb.base/bitops.exp: print value of 0 || 1 && 0 | 0 ^ 0 == 8 > 128 >>1 +2 *2
new UNRESOLVED: gdb.base/bitops.exp: print value of 0.0 || 0
new UNRESOLVED: gdb.base/bitops.exp: print value of 0.0 || 1.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 1.0 || 0
new UNRESOLVED: gdb.base/bitops.exp: print value of 10 & 5
new UNRESOLVED: gdb.base/bitops.exp: print value of 10 ^ 5
new UNRESOLVED: gdb.base/bitops.exp: print value of 10 | 5
new UNRESOLVED: gdb.base/bitops.exp: print value of 15 ^ 10 ^ 5 ^ 7
new UNRESOLVED: gdb.base/bitops.exp: print value of 2 > -3
new UNRESOLVED: gdb.base/bitops.exp: print value of 3 * 2 / 4.0 * 2.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3!=3.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3!=5.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3.5 < -4.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3.5 < 4.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3==3.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3==4.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3>=2.5
new UNRESOLVED: gdb.base/bitops.exp: print value of 3>=4.5
new UNRESOLVED: gdb.base/bitops.exp: print value of 8 << 2 >> 4
new UNRESOLVED: gdb.base/bitops.exp: print value of ~-!0
new UNRESOLVED: gdb.base/command-line-input.exp: print 1\\n + 2
new UNRESOLVED: gdb.base/command-line-input.exp: print 1\\n2
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: cmd complete ""
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: set max-completions 1
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: show editing
new UNRESOLVED: gdb.base/complete-empty.exp: show editing
new UNRESOLVED: gdb.base/default.exp:
new UNRESOLVED: gdb.base/default.exp: add-symbol-file
new UNRESOLVED: gdb.base/default.exp: append
new UNRESOLVED: gdb.base/default.exp: append binary
new UNRESOLVED: gdb.base/default.exp: append binary memory
new UNRESOLVED: gdb.base/default.exp: append binary value
new UNRESOLVED: gdb.base/default.exp: append memory
new UNRESOLVED: gdb.base/default.exp: append value
new UNRESOLVED: gdb.base/default.exp: call
new UNRESOLVED: gdb.base/default.exp: catch
new UNRESOLVED: gdb.base/default.exp: cd
new UNRESOLVED: gdb.base/default.exp: check if python 3
new UNRESOLVED: gdb.base/default.exp: clear
new UNRESOLVED: gdb.base/default.exp: commands
new UNRESOLVED: gdb.base/default.exp: condition
new UNRESOLVED: gdb.base/default.exp: continue
new UNRESOLVED: gdb.base/default.exp: continue "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: core-file
new UNRESOLVED: gdb.base/default.exp: define
new UNRESOLVED: gdb.base/default.exp: delete
new UNRESOLVED: gdb.base/default.exp: delete "d" abbreviation
new UNRESOLVED: gdb.base/default.exp: delete breakpoints
new UNRESOLVED: gdb.base/default.exp: delete display prompt
new UNRESOLVED: gdb.base/default.exp: detach
new UNRESOLVED: gdb.base/default.exp: directory prompt
new UNRESOLVED: gdb.base/default.exp: disable
new UNRESOLVED: gdb.base/default.exp: disable "dis" abbreviation
new UNRESOLVED: gdb.base/default.exp: disable "disa" abbreviation
new UNRESOLVED: gdb.base/default.exp: disable breakpoints
new UNRESOLVED: gdb.base/default.exp: disable display
new UNRESOLVED: gdb.base/default.exp: disassemble
new UNRESOLVED: gdb.base/default.exp: display
new UNRESOLVED: gdb.base/default.exp: do
new UNRESOLVED: gdb.base/default.exp: document
new UNRESOLVED: gdb.base/default.exp: down
new UNRESOLVED: gdb.base/default.exp: down-silently
new UNRESOLVED: gdb.base/default.exp: dump
new UNRESOLVED: gdb.base/default.exp: dump binary
new UNRESOLVED: gdb.base/default.exp: dump binary memory
new UNRESOLVED: gdb.base/default.exp: dump binary value
new UNRESOLVED: gdb.base/default.exp: dump ihex
new UNRESOLVED: gdb.base/default.exp: dump ihex memory
new UNRESOLVED: gdb.base/default.exp: dump ihex value
new UNRESOLVED: gdb.base/default.exp: dump memory
new UNRESOLVED: gdb.base/default.exp: dump srec
new UNRESOLVED: gdb.base/default.exp: dump srec memory
new UNRESOLVED: gdb.base/default.exp: dump srec value
new UNRESOLVED: gdb.base/default.exp: dump tekhex
new UNRESOLVED: gdb.base/default.exp: dump tekhex memory
new UNRESOLVED: gdb.base/default.exp: dump tekhex value
new UNRESOLVED: gdb.base/default.exp: dump value
new UNRESOLVED: gdb.base/default.exp: echo
new UNRESOLVED: gdb.base/default.exp: enable
new UNRESOLVED: gdb.base/default.exp: enable breakpoints
new UNRESOLVED: gdb.base/default.exp: enable breakpoints delete
new UNRESOLVED: gdb.base/default.exp: enable breakpoints once
new UNRESOLVED: gdb.base/default.exp: enable delete
new UNRESOLVED: gdb.base/default.exp: enable display
new UNRESOLVED: gdb.base/default.exp: enable once
new UNRESOLVED: gdb.base/default.exp: fg
new UNRESOLVED: gdb.base/default.exp: finish
new UNRESOLVED: gdb.base/default.exp: forward-search
new UNRESOLVED: gdb.base/default.exp: frame
new UNRESOLVED: gdb.base/default.exp: frame "f" abbreviation
new UNRESOLVED: gdb.base/default.exp: gcore
new UNRESOLVED: gdb.base/default.exp: generate-core-file
new UNRESOLVED: gdb.base/default.exp: handle
new UNRESOLVED: gdb.base/default.exp: help
new UNRESOLVED: gdb.base/default.exp: help "h" abbreviation
new UNRESOLVED: gdb.base/default.exp: ignore
new UNRESOLVED: gdb.base/default.exp: info
new UNRESOLVED: gdb.base/default.exp: info "i" abbreviation
new UNRESOLVED: gdb.base/default.exp: info address
new UNRESOLVED: gdb.base/default.exp: info all-registers
new UNRESOLVED: gdb.base/default.exp: info args
new UNRESOLVED: gdb.base/default.exp: info bogus-gdb-command
new UNRESOLVED: gdb.base/default.exp: info breakpoints
new UNRESOLVED: gdb.base/default.exp: info copying
new UNRESOLVED: gdb.base/default.exp: info display
new UNRESOLVED: gdb.base/default.exp: info files
new UNRESOLVED: gdb.base/default.exp: info float
new UNRESOLVED: gdb.base/default.exp: info frame
new UNRESOLVED: gdb.base/default.exp: info frame "f" abbreviation
new UNRESOLVED: gdb.base/default.exp: info functions
new UNRESOLVED: gdb.base/default.exp: info locals
new UNRESOLVED: gdb.base/default.exp: info program
new UNRESOLVED: gdb.base/default.exp: info registers
new UNRESOLVED: gdb.base/default.exp: info set
new UNRESOLVED: gdb.base/default.exp: info source
new UNRESOLVED: gdb.base/default.exp: info sources
new UNRESOLVED: gdb.base/default.exp: info stack
new UNRESOLVED: gdb.base/default.exp: info stack "s" abbreviation
new UNRESOLVED: gdb.base/default.exp: info symbol
new UNRESOLVED: gdb.base/default.exp: info target
new UNRESOLVED: gdb.base/default.exp: info terminal
new UNRESOLVED: gdb.base/default.exp: info threads
new UNRESOLVED: gdb.base/default.exp: info types
new UNRESOLVED: gdb.base/default.exp: info variables
new UNRESOLVED: gdb.base/default.exp: info vector
new UNRESOLVED: gdb.base/default.exp: info warranty
new UNRESOLVED: gdb.base/default.exp: info watchpoints
new UNRESOLVED: gdb.base/default.exp: inspect
new UNRESOLVED: gdb.base/default.exp: jump
new UNRESOLVED: gdb.base/default.exp: kill
new UNRESOLVED: gdb.base/default.exp: list
new UNRESOLVED: gdb.base/default.exp: list "l" abbreviation
new UNRESOLVED: gdb.base/default.exp: load
new UNRESOLVED: gdb.base/default.exp: next
new UNRESOLVED: gdb.base/default.exp: next "n" abbreviation
new UNRESOLVED: gdb.base/default.exp: nexti
new UNRESOLVED: gdb.base/default.exp: nexti "ni" abbreviation
new UNRESOLVED: gdb.base/default.exp: output
new UNRESOLVED: gdb.base/default.exp: overlay
new UNRESOLVED: gdb.base/default.exp: overlay auto
new UNRESOLVED: gdb.base/default.exp: overlay list
new UNRESOLVED: gdb.base/default.exp: overlay manual #1
new UNRESOLVED: gdb.base/default.exp: overlay manual #2
new UNRESOLVED: gdb.base/default.exp: overlay map #1
new UNRESOLVED: gdb.base/default.exp: overlay map #2
new UNRESOLVED: gdb.base/default.exp: overlay off
new UNRESOLVED: gdb.base/default.exp: overlay on
new UNRESOLVED: gdb.base/default.exp: overlay unmap #1
new UNRESOLVED: gdb.base/default.exp: overlay unmap #2
new UNRESOLVED: gdb.base/default.exp: print
new UNRESOLVED: gdb.base/default.exp: print "p" abbreviation
new UNRESOLVED: gdb.base/default.exp: printf
new UNRESOLVED: gdb.base/default.exp: ptype
new UNRESOLVED: gdb.base/default.exp: pwd
new UNRESOLVED: gdb.base/default.exp: rbreak
new UNRESOLVED: gdb.base/default.exp: restore
new UNRESOLVED: gdb.base/default.exp: return
new UNRESOLVED: gdb.base/default.exp: reverse-search
new UNRESOLVED: gdb.base/default.exp: search
new UNRESOLVED: gdb.base/default.exp: section
new UNRESOLVED: gdb.base/default.exp: set
new UNRESOLVED: gdb.base/default.exp: set annotate
new UNRESOLVED: gdb.base/default.exp: set args
new UNRESOLVED: gdb.base/default.exp: set check "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check "ch" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check "check" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check range
new UNRESOLVED: gdb.base/default.exp: set check type
new UNRESOLVED: gdb.base/default.exp: set complaints
new UNRESOLVED: gdb.base/default.exp: set confirm
new UNRESOLVED: gdb.base/default.exp: set environment
new UNRESOLVED: gdb.base/default.exp: set height
new UNRESOLVED: gdb.base/default.exp: set history
new UNRESOLVED: gdb.base/default.exp: set history expansion
new UNRESOLVED: gdb.base/default.exp: set history filename
new UNRESOLVED: gdb.base/default.exp: set history save
new UNRESOLVED: gdb.base/default.exp: set history save off
new UNRESOLVED: gdb.base/default.exp: set history size
new UNRESOLVED: gdb.base/default.exp: set language
new UNRESOLVED: gdb.base/default.exp: set listsize
new UNRESOLVED: gdb.base/default.exp: set print
new UNRESOLVED: gdb.base/default.exp: set print "p" abbreviation
new UNRESOLVED: gdb.base/default.exp: set print "pr" abbreviation
new UNRESOLVED: gdb.base/default.exp: set print address
new UNRESOLVED: gdb.base/default.exp: set print array
new UNRESOLVED: gdb.base/default.exp: set print asm-demangle
new UNRESOLVED: gdb.base/default.exp: set print demangle
new UNRESOLVED: gdb.base/default.exp: set print elements
new UNRESOLVED: gdb.base/default.exp: set print object
new UNRESOLVED: gdb.base/default.exp: set print pretty
new UNRESOLVED: gdb.base/default.exp: set print sevenbit-strings
new UNRESOLVED: gdb.base/default.exp: set print union
new UNRESOLVED: gdb.base/default.exp: set print vtbl
new UNRESOLVED: gdb.base/default.exp: set radix
new UNRESOLVED: gdb.base/default.exp: set the history filename
new UNRESOLVED: gdb.base/default.exp: set variable
new UNRESOLVED: gdb.base/default.exp: set verbose
new UNRESOLVED: gdb.base/default.exp: set width
new UNRESOLVED: gdb.base/default.exp: set write
new UNRESOLVED: gdb.base/default.exp: shell echo Hi dad!
new UNRESOLVED: gdb.base/default.exp: show
new UNRESOLVED: gdb.base/default.exp: show annotate
new UNRESOLVED: gdb.base/default.exp: show args
new UNRESOLVED: gdb.base/default.exp: show check "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check "ch" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check "check" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check range
new UNRESOLVED: gdb.base/default.exp: show check type
new UNRESOLVED: gdb.base/default.exp: show commands
new UNRESOLVED: gdb.base/default.exp: show complaints
new UNRESOLVED: gdb.base/default.exp: show confirm
new UNRESOLVED: gdb.base/default.exp: show convenience
new UNRESOLVED: gdb.base/default.exp: show directories
new UNRESOLVED: gdb.base/default.exp: show editing
new UNRESOLVED: gdb.base/default.exp: show height
new UNRESOLVED: gdb.base/default.exp: show history
new UNRESOLVED: gdb.base/default.exp: show history expansion
new UNRESOLVED: gdb.base/default.exp: show history filename
new UNRESOLVED: gdb.base/default.exp: show history save
new UNRESOLVED: gdb.base/default.exp: show history size
new UNRESOLVED: gdb.base/default.exp: show language
new UNRESOLVED: gdb.base/default.exp: show listsize
new UNRESOLVED: gdb.base/default.exp: show p
new UNRESOLVED: gdb.base/default.exp: show paths
new UNRESOLVED: gdb.base/default.exp: show pr
new UNRESOLVED: gdb.base/default.exp: show print
new UNRESOLVED: gdb.base/default.exp: show print address
new UNRESOLVED: gdb.base/default.exp: show print array
new UNRESOLVED: gdb.base/default.exp: show print asm-demangle
new UNRESOLVED: gdb.base/default.exp: show print demangle
new UNRESOLVED: gdb.base/default.exp: show print elements
new UNRESOLVED: gdb.base/default.exp: show print object
new UNRESOLVED: gdb.base/default.exp: show print pretty
new UNRESOLVED: gdb.base/default.exp: show print sevenbit-strings
new UNRESOLVED: gdb.base/default.exp: show print union
new UNRESOLVED: gdb.base/default.exp: show print vtbl
new UNRESOLVED: gdb.base/default.exp: show prompt
new UNRESOLVED: gdb.base/default.exp: show radix
new UNRESOLVED: gdb.base/default.exp: show user
new UNRESOLVED: gdb.base/default.exp: show values
new UNRESOLVED: gdb.base/default.exp: show verbose
new UNRESOLVED: gdb.base/default.exp: show version
new UNRESOLVED: gdb.base/default.exp: show width
new UNRESOLVED: gdb.base/default.exp: show write
new UNRESOLVED: gdb.base/default.exp: signal
new UNRESOLVED: gdb.base/default.exp: source
new UNRESOLVED: gdb.base/default.exp: step "s" abbreviation #1
new UNRESOLVED: gdb.base/default.exp: step "s" abbreviation #2
new UNRESOLVED: gdb.base/default.exp: step #1
new UNRESOLVED: gdb.base/default.exp: step #2
new UNRESOLVED: gdb.base/default.exp: stepi
new UNRESOLVED: gdb.base/default.exp: stepi "si" abbreviation
new UNRESOLVED: gdb.base/default.exp: symbol-file
new UNRESOLVED: gdb.base/default.exp: target
new UNRESOLVED: gdb.base/default.exp: target native
new UNRESOLVED: gdb.base/default.exp: tbreak
new UNRESOLVED: gdb.base/default.exp: thread
new UNRESOLVED: gdb.base/default.exp: thread apply
new UNRESOLVED: gdb.base/default.exp: thread find
new UNRESOLVED: gdb.base/default.exp: thread name
new UNRESOLVED: gdb.base/default.exp: undisplay prompt
new UNRESOLVED: gdb.base/default.exp: unset
new UNRESOLVED: gdb.base/default.exp: unset environment prompt
new UNRESOLVED: gdb.base/default.exp: until
new UNRESOLVED: gdb.base/default.exp: until "u" abbreviation
new UNRESOLVED: gdb.base/default.exp: up-silently
new UNRESOLVED: gdb.base/default.exp: verify python support
new UNRESOLVED: gdb.base/default.exp: watch
new UNRESOLVED: gdb.base/default.exp: whatis
new UNRESOLVED: gdb.base/default.exp: where
new UNRESOLVED: gdb.base/default.exp: x
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567890123456789012345678901234dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567890123456dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567890123456.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567890123456789012345678901234.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567890123456789012345678901234dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567890123456dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E384dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E6144dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E96df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2147483648ll
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2147483648ull
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2ll
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 4294967296ull
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd < 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd < 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df + 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df + 1.2f
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df < 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df < 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df > 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl < 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl < 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl > 2
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd * 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd + 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd - 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd / 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df * 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df + 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df - 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df / 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl * 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl + 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl - 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl / 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567890123456.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567890123456789012345678901234.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 + 1.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 > 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 > 3.1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.1dd + 2.7df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.1df + 2.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.3dd + 2.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.3dl + 2.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.6df + 2.7dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.6dl + 2.7df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 3 + 2.1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 1.2df + 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2 + 1.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dd + 2.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dd + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dl + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 3 + 2.1dl
new UNRESOLVED: gdb.base/echo.exp: echo test
new UNRESOLVED: gdb.base/empty_exe.exp: file ''
new UNRESOLVED: gdb.base/empty_exe.exp: print 1
new UNRESOLVED: gdb.base/endian.exp: auto target endianness
new UNRESOLVED: gdb.base/endian.exp: auto target endianness big
new UNRESOLVED: gdb.base/endian.exp: auto target endianness little
new UNRESOLVED: gdb.base/endian.exp: default target endianness
new UNRESOLVED: gdb.base/endian.exp: get target endianness
new FAIL: gdb.base/endian.exp: override auto target endianness big
new FAIL: gdb.base/endian.exp: override auto target endianness little
new UNRESOLVED: gdb.base/endian.exp: override target endianness big
new FAIL: gdb.base/endian.exp: override target endianness little
new UNRESOLVED: gdb.base/endian.exp: previously big default executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously big default no executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously little default executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously little default no executable endianness
new UNRESOLVED: gdb.base/endian.exp: set target endianness
new UNRESOLVED: gdb.base/endian.exp: set target endianness big
new UNRESOLVED: gdb.base/endian.exp: set target endianness little
new UNRESOLVED: gdb.base/environ.exp: all environment variables have been unset
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable previously undefined
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable using = syntax
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable with trailing equals
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable with trailing whitespace
new UNRESOLVED: gdb.base/environ.exp: confirm unset environment variable worked
new UNRESOLVED: gdb.base/environ.exp: set environment variable
new UNRESOLVED: gdb.base/environ.exp: set environment variable previously undefined
new UNRESOLVED: gdb.base/environ.exp: set environment variable to null value
new UNRESOLVED: gdb.base/environ.exp: set environment variable using = syntax
new UNRESOLVED: gdb.base/environ.exp: set environment variable with trailing equals
new UNRESOLVED: gdb.base/environ.exp: set environment variable with trailing whitespace
new UNRESOLVED: gdb.base/environ.exp: set environment without arguments
new UNRESOLVED: gdb.base/environ.exp: set environment without variable name
new UNRESOLVED: gdb.base/environ.exp: set path works properly
new UNRESOLVED: gdb.base/environ.exp: show environment works
new UNRESOLVED: gdb.base/environ.exp: show non-existent environment variable
new UNRESOLVED: gdb.base/environ.exp: show null environment variable
new UNRESOLVED: gdb.base/environ.exp: show paths works properly
new UNRESOLVED: gdb.base/environ.exp: unset all environment variables
new UNRESOLVED: gdb.base/environ.exp: unset environment variable
new UNRESOLVED: gdb.base/eval.exp: first eval.
new UNRESOLVED: gdb.base/eval.exp: initialize $a.
new UNRESOLVED: gdb.base/eval.exp: second eval.
new UNRESOLVED: gdb.base/gdb1056.exp: print 1/0
new UNRESOLVED: gdb.base/gdb1056.exp: test unsigned division by zero
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize= 20 : show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize= 20 : show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5ab: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5ab: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=0: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=0: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=10zab: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=10zab: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=20: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=20: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=50: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=50: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=99999999999999999999999999999999999: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=99999999999999999999999999999999999: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=not_an_integer: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=not_an_integer: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=1000: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=1000: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=foo: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=foo: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/zero: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/zero: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: appending: server show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: creating: server show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: print 1
new UNRESOLVED: gdb.base/help.exp: apropos \
new UNRESOLVED: gdb.base/help.exp: apropos apropos
new UNRESOLVED: gdb.base/help.exp: apropos handle signal
new UNRESOLVED: gdb.base/help.exp: disable pagination
new UNRESOLVED: gdb.base/help.exp: help aliases
new UNRESOLVED: gdb.base/help.exp: help backtrace
new UNRESOLVED: gdb.base/help.exp: help backtrace "bt" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "b" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "br" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "bre" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "brea" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "break" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoints
new UNRESOLVED: gdb.base/help.exp: help commands
new UNRESOLVED: gdb.base/help.exp: help data
new UNRESOLVED: gdb.base/help.exp: help delete
new UNRESOLVED: gdb.base/help.exp: help delete "d" abbreviation
new UNRESOLVED: gdb.base/help.exp: help files
new UNRESOLVED: gdb.base/help.exp: help gotcha
new UNRESOLVED: gdb.base/help.exp: help help
new UNRESOLVED: gdb.base/help.exp: help help "h" abbreviation
new UNRESOLVED: gdb.base/help.exp: help info bogus-gdb-command
new UNRESOLVED: gdb.base/help.exp: help internals
new UNRESOLVED: gdb.base/help.exp: help obscure
new UNRESOLVED: gdb.base/help.exp: help running
new UNRESOLVED: gdb.base/help.exp: help show commands
new UNRESOLVED: gdb.base/help.exp: help show confirm
new UNRESOLVED: gdb.base/help.exp: help show copying
new UNRESOLVED: gdb.base/help.exp: help show warranty
new UNRESOLVED: gdb.base/help.exp: help stack
new UNRESOLVED: gdb.base/help.exp: help status
new UNRESOLVED: gdb.base/help.exp: help support
new UNRESOLVED: gdb.base/help.exp: help tracepoints
new UNRESOLVED: gdb.base/help.exp: help user-defined
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: set history remove-duplicates 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: set history remove-duplicates 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: set history remove-duplicates 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 3
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 4
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 3
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 4
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: set history remove-duplicates unlimited
new UNRESOLVED: gdb.base/history-duplicates.exp: show editing
new UNRESOLVED: gdb.base/history-duplicates.exp: show history remove-duplicates
new UNRESOLVED: gdb.base/ifelse.exp: call original define
new UNRESOLVED: gdb.base/ifelse.exp: call replacement define
new UNRESOLVED: gdb.base/ifelse.exp: create define with empty else
new UNRESOLVED: gdb.base/ifelse.exp: if 0 .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 0 with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 1 .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 1 with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #1
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #2
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #3
new UNRESOLVED: gdb.base/ifelse.exp: replace define with if .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: set confirm off
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tc-td: 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-tc-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ts: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tf: 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-tf-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-ts: 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-ti-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tl-td: 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-tl-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-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-td: 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-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tld: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tll-tf: 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-td: 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-ts-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ts: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tc-td: 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-tc-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-ts: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tf: 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-tf-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-ts: 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-ti-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tl-td: 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-tl-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-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-td: 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-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tld: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tll-tf: 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-td: 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-ts-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ts: failed to compile
new FAIL: gdb.base/info-os.exp: cannot compile test program
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode on
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode on
new UNRESOLVED: gdb.base/interact.exp: show interactive-mode
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode on
new UNRESOLVED: gdb.base/multi-line-starts-subshell.exp: gdb input still works
new UNRESOLVED: gdb.base/multi-line-starts-subshell.exp: spawn subshell from multi-line
new UNRESOLVED: gdb.base/osabi.exp: set debug arch 1
new UNRESOLVED: gdb.base/osabi.exp: set osabi none
new UNRESOLVED: gdb.base/page.exp: paged count
new UNRESOLVED: gdb.base/page.exp: paged count for interrupt
new UNRESOLVED: gdb.base/page.exp: paged count remainder
new UNRESOLVED: gdb.base/page.exp: paged help
new UNRESOLVED: gdb.base/page.exp: pagination is off
new UNRESOLVED: gdb.base/page.exp: pagination is on
new UNRESOLVED: gdb.base/page.exp: q
new UNRESOLVED: gdb.base/page.exp: quit while paging
new UNRESOLVED: gdb.base/page.exp: set editing off
new UNRESOLVED: gdb.base/page.exp: set height -1
new UNRESOLVED: gdb.base/page.exp: set height 10
new UNRESOLVED: gdb.base/page.exp: set height 5
new UNRESOLVED: gdb.base/page.exp: set pagination off
new UNRESOLVED: gdb.base/page.exp: set pagination on
new UNRESOLVED: gdb.base/page.exp: set width -1
new UNRESOLVED: gdb.base/page.exp: set width 30
new UNRESOLVED: gdb.base/page.exp: size=0: set height 0
new UNRESOLVED: gdb.base/page.exp: size=0: set height 200
new UNRESOLVED: gdb.base/page.exp: size=0: set width 0
new UNRESOLVED: gdb.base/page.exp: size=0: set width 200
new UNRESOLVED: gdb.base/page.exp: size=0: show height
new UNRESOLVED: gdb.base/page.exp: size=0: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=0: show width
new UNRESOLVED: gdb.base/page.exp: size=0: show width unlimited
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set height 0x80000000
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set height 200
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set width 0x80000000
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set width 200
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show height
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show width
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show width unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set height 200
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set height unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set width 200
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set width unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show height
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show width
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show width unlimited
new UNRESOLVED: gdb.base/page.exp: unpaged help
new UNRESOLVED: gdb.base/quit.exp: quit with expression
new UNRESOLVED: gdb.base/quit.exp: quit with syntax error
new UNRESOLVED: gdb.base/radix.exp: Output radix unchanged after rejecting 0
new UNRESOLVED: gdb.base/radix.exp: Reject input-radix 0
new UNRESOLVED: gdb.base/radix.exp: Reject input-radix 1
new UNRESOLVED: gdb.base/radix.exp: Reject output-radix 0
new UNRESOLVED: gdb.base/radix.exp: Reject output-radix 1
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 10
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 16
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 2
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 3
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 8
new UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 10
new UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 16
new UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 8
new UNRESOLVED: gdb.base/radix.exp: input radix unchanged after rejecting 0
new UNRESOLVED: gdb.base/radix.exp: input radix unchanged after rejecting 1
new UNRESOLVED: gdb.base/radix.exp: output radix unchanged after rejecting 1
new UNRESOLVED: gdb.base/radix.exp: output radix unchanged after rejection through set radix command
new UNRESOLVED: gdb.base/radix.exp: print
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -100; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -256; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -4; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -64; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -9; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -101; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -10; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -257; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -5; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -65; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -10; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -16; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -2; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -3; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -8; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -11; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -17; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -3; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -4; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -9; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -12; expect -12; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -20; expect -16; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -2; expect Invalid number "2"\.; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -9; expect Invalid number "9".; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 010; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 17; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect f; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 100; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 100; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 144; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 256; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 4; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 64; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 64; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 9; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 10101; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 21; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 4161; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 65793; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 91; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 101; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 10; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 257; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 5; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 65; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 10; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 10; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 12; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 16; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 2; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 3; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 8; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10; expect a; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 11; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 17; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 3; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 4; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 9; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 14; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 24; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20; expect 16; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20; expect 6; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 2; expect 2; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 30; expect Invalid number "30"\.; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 3; expect Invalid number "3"\.; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 4; expect Invalid number "4"\.; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 8; expect Invalid number "8".; input radix 8
new UNRESOLVED: gdb.base/radix.exp: reset radices
new UNRESOLVED: gdb.base/radix.exp: set input-radix 10
new UNRESOLVED: gdb.base/radix.exp: set input-radix 16
new UNRESOLVED: gdb.base/radix.exp: set input-radix 2
new UNRESOLVED: gdb.base/radix.exp: set input-radix 3
new UNRESOLVED: gdb.base/radix.exp: set input-radix 8
new UNRESOLVED: gdb.base/radix.exp: set output-radix 10
new UNRESOLVED: gdb.base/radix.exp: set output-radix 16
new UNRESOLVED: gdb.base/radix.exp: set output-radix 8
new UNRESOLVED: gdb.base/radix.exp: set radix 7 rejected
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 10
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 16
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 2
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 3
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 8
new UNRESOLVED: gdb.base/radix.exp: show radix, output radix 10
new UNRESOLVED: gdb.base/radix.exp: show radix, output radix 16
new UNRESOLVED: gdb.base/radix.exp: show radix, output radix 8
new UNRESOLVED: gdb.base/readline.exp: Simple operate-and-get-next - send p 1
new UNRESOLVED: gdb.base/readline.exp: arrow keys with secondary prompt
new UNRESOLVED: gdb.base/readline.exp: operate-and-get-next with secondary prompt - send if 1 > 0
new UNRESOLVED: gdb.base/readline.exp: print 42
new UNRESOLVED: gdb.base/readline.exp: show editing
new UNRESOLVED: gdb.base/remotetimeout.exp: correct remotetimeout printed
new UNRESOLVED: gdb.base/shell.exp: ! echo foo
new UNRESOLVED: gdb.base/shell.exp: ! exit 0
new UNRESOLVED: gdb.base/shell.exp: ! exit 1
new UNRESOLVED: gdb.base/shell.exp: ! kill -2 $$
new UNRESOLVED: gdb.base/shell.exp: !echo foo
new UNRESOLVED: gdb.base/shell.exp: -d spaces value missing
new UNRESOLVED: gdb.base/shell.exp: -d value missing
new UNRESOLVED: gdb.base/shell.exp: DELIM delimiter missing
new UNRESOLVED: gdb.base/shell.exp: SHELL_COMMAND missing
new UNRESOLVED: gdb.base/shell.exp: SHELL_COMMAND missing with delimiter
new UNRESOLVED: gdb.base/shell.exp: all missing
new UNRESOLVED: gdb.base/shell.exp: alternate 1char delim
new UNRESOLVED: gdb.base/shell.exp: alternate 1char delim, no space
new UNRESOLVED: gdb.base/shell.exp: alternate 3char delim
new UNRESOLVED: gdb.base/shell.exp: alternate 3char delim, no space
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe print 1 | "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| print 1 | "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|print 1 | "
new UNRESOLVED: gdb.base/shell.exp: define foo
new UNRESOLVED: gdb.base/shell.exp: delimiter missing due to missing space
new UNRESOLVED: gdb.base/shell.exp: double pipe
new UNRESOLVED: gdb.base/shell.exp: double pipe, pipe char
new UNRESOLVED: gdb.base/shell.exp: echo coucou
new UNRESOLVED: gdb.base/shell.exp: enter commands
new UNRESOLVED: gdb.base/shell.exp: no space around pipe char
new UNRESOLVED: gdb.base/shell.exp: pipe fail exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe fail exitsignal
new UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitsignal
new UNRESOLVED: gdb.base/shell.exp: pipe success exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe success exitsignal
new UNRESOLVED: gdb.base/shell.exp: repeat previous command
new UNRESOLVED: gdb.base/shell.exp: set max-completions 0
new UNRESOLVED: gdb.base/shell.exp: set max-completions 2
new UNRESOLVED: gdb.base/shell.exp: shell echo foo
new UNRESOLVED: gdb.base/shell.exp: shell fail exitcode
new UNRESOLVED: gdb.base/shell.exp: shell fail exitsignal
new UNRESOLVED: gdb.base/shell.exp: shell interrupt exitcode
new UNRESOLVED: gdb.base/shell.exp: shell interrupt exitsignal
new UNRESOLVED: gdb.base/shell.exp: shell success exitcode
new UNRESOLVED: gdb.base/shell.exp: shell success exitsignal
new UNRESOLVED: gdb.base/shell.exp: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
new UNRESOLVED: gdb.base/shell.exp: simple pipe
new UNRESOLVED: gdb.base/shell.exp: simple pipe with arg
new UNRESOLVED: gdb.base/shell.exp: | delimiter missing
new UNRESOLVED: gdb.base/shell.exp: |p 123| exit 0
new UNRESOLVED: gdb.base/shell.exp: |p 123| exit 1
new UNRESOLVED: gdb.base/shell.exp: |p 123| kill -2 $$
new UNRESOLVED: gdb.base/source-dir.exp: directory /nOtExStInG/a /nOtExStInG/b /nOtExStInG/c
new UNRESOLVED: gdb.base/source-dir.exp: directory /nOtExStInG/b /nOtExStInG/d /nOtExStInG/c
new UNRESOLVED: gdb.base/source.exp: script contains error
new UNRESOLVED: gdb.base/source.exp: set search directories
new UNRESOLVED: gdb.base/source.exp: source -s
new UNRESOLVED: gdb.base/source.exp: source -s -v
new UNRESOLVED: gdb.base/source.exp: source -v
new UNRESOLVED: gdb.base/source.exp: source -v -s
new UNRESOLVED: gdb.base/source.exp: source after -v
new UNRESOLVED: gdb.base/source.exp: source for-sure-nonexistant-file
new UNRESOLVED: gdb.base/source.exp: source source-nofile.gdb
new UNRESOLVED: gdb.base/step-over-syscall.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/step-over-syscall.exp: run to main
new UNRESOLVED: gdb.base/subst.exp: add depuis -> vers substitution rule
new UNRESOLVED: gdb.base/subst.exp: add from -> to substitution rule
new UNRESOLVED: gdb.base/subst.exp: add from1 -> to1 substitution rule
new UNRESOLVED: gdb.base/subst.exp: add source -> destination substitution rule
new UNRESOLVED: gdb.base/subst.exp: add substitution rule to empty string
new UNRESOLVED: gdb.base/subst.exp: deactivate GDB's confirmation interface
new UNRESOLVED: gdb.base/subst.exp: remove all remaining substitution rules
new UNRESOLVED: gdb.base/subst.exp: remove default substitution rules
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, first argument is empty string
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, too few arguments
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, too many arguments
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after all remaining rules removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after depuis rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after empty rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after from rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path depuis, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, after unsetting it
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from/path, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from_a_bad_path, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path garbage, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: show substitute-path, too many arguments
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path depuis
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path empty
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from after the rule was removed
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path, too many arguments
new UNRESOLVED: gdb.base/trace-commands.exp: define user command
new UNRESOLVED: gdb.base/trace-commands.exp: depth resets on error part 1
new UNRESOLVED: gdb.base/trace-commands.exp: depth resets on error part 2
new UNRESOLVED: gdb.base/trace-commands.exp: nested trace-commands test
new UNRESOLVED: gdb.base/trace-commands.exp: nested trace-commands test with source
new UNRESOLVED: gdb.base/trace-commands.exp: set trace-commands
new UNRESOLVED: gdb.base/trace-commands.exp: show trace-commands says off
new UNRESOLVED: gdb.base/trace-commands.exp: show trace-commands says on
new UNRESOLVED: gdb.base/trace-commands.exp: simple trace-commands test
new UNRESOLVED: gdb.base/trace-commands.exp: source -v
new UNRESOLVED: gdb.base/warning.exp: echo 23\n
new UNRESOLVED: gdb.btrace/cpu.exp: default cpu
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu auto
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/1
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0x0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo/bar
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu none
new UNRESOLVED: gdb.btrace/cpu.exp: set record
new UNRESOLVED: gdb.btrace/cpu.exp: set record btrace
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu auto
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/1
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0x0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo/bar
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu none
new UNRESOLVED: gdb.cp/debug-expr.exp: print dynamic_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: print reinterpret_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: print static_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: set debug expression 1
new UNRESOLVED: gdb.cp/debug-expr.exp: set language c++
new UNRESOLVED: gdb.cp/demangle.exp: auto: check demangling style
new UNRESOLVED: gdb.cp/demangle.exp: auto: set demangle-style
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c -- _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c++ -- _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c++ _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l garbage xyzdje
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z13BitPatterntoaOK10BitPatternccc
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z31DrawDestinationTransformedImageP7_XImageiiS0_iimjiijmmP4_XGCOK13ivTransformeriiii
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z3argOK7Complex
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN11RelateManip6EffectEO7ivEvent
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN20DisplayList_IteratorC4EO11DisplayList
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN3fooC4EOS_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN3fooC4EiOS_iS0_iS0_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE3PixC4EOKS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE7elementC2EOKS0_PS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE7elementC4EOKS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityEC4EOKS1_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4PixXI11VHDLLibrary14VHDLLibraryRep4ListI10VHDLEntityEEC2EOKS5_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN7ivWorldC2EPKcOiPPcPK12ivOptionDescPK14ivPropertyData
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN8TextCode14CoreConstDeclsEO7ostream
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic: gnu-v3: check demangling style
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic: gnu-v3: set demangle-style
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK11VHDLLibrary5nextEEO4PixXIS_14VHDLLibraryRep4ListI10VHDLEntityEE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK4ListI10VHDLEntityE4nextEONS1_3PixE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK4ListI10VHDLEntityEclEOKNS1_3PixE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOK10BitPattern
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOK12BitSubStringi
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOKS_
new UNRESOLVED: gdb.cp/demangle.exp: set language c++
new UNRESOLVED: gdb.cp/demangle.exp: set language unknown
new UNRESOLVED: gdb.cp/demangle.exp: set width 0
new UNRESOLVED: gdb.cp/maint.exp: help maint cp
new UNRESOLVED: gdb.cp/maint.exp: help maint cp first_component
new UNRESOLVED: gdb.cp/maint.exp: help maint cp namespace
new UNRESOLVED: gdb.cp/maint.exp: help maintenance cplus
new UNRESOLVED: gdb.cp/maint.exp: maint cp
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component C<A>::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component C<std::basic_streambuf<wchar_t,std::char_traits<wchar_t> > >::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component T<Cooperator>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component bool operator<<char>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo::bar::baz
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<&
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<&operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int operator<< <char>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator  ->
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator ->
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator>>
new UNRESOLVED: gdb.cp/maint.exp: maint cp namespace
new UNRESOLVED: gdb.cp/maint.exp: set complaints 1000
new UNRESOLVED: gdb.cp/punctuator.exp: print
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 1
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 2
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 3
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 1
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 2
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 3
new UNRESOLVED: gdb.cp/punctuator.exp: set lang c++
new UNRESOLVED: gdb.cp/ref-params.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/ref-params.exp: print value of Child& in f2
new UNRESOLVED: gdb.cp/ref-params.exp: print value of Parent& in f1
new UNRESOLVED: gdb.cp/ref-params.exp: print value of a Child in main
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on Child in main
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on Child& in f2
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f2 on
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f2 on Child in main
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print f1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print mf1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print mf2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Child&& in f2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Child&& in f2: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Parent&& in f1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Parent&& in f1: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f1 on
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f1 on Child&& in f2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f2 on
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char16_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char16_t is unsigned
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char32_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char32_t is unsigned
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p L"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p U"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p u"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: set language c++
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: sizeof
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: wchar_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: wchar_t sign
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: char16_t is not built-in
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: char32_t is not built-in
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p L"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p U"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p u"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: set language c
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: wchar_t is not built-in
new UNRESOLVED: gdb.disasm/disassembler-options.exp: set disassembler-options
new UNRESOLVED: gdb.disasm/disassembler-options.exp: set disassembler-options invalid_option_value
new UNRESOLVED: gdb.disasm/disassembler-options.exp: show NULL disassembler-options
new UNRESOLVED: gdb.dlang/debug-expr.exp: print *
new UNRESOLVED: gdb.dlang/debug-expr.exp: set debug expression 1
new UNRESOLVED: gdb.dlang/debug-expr.exp: set language d
new UNRESOLVED: gdb.dlang/demangle.exp: set language d
new UNRESOLVED: gdb.dlang/expression.exp: set language d
new UNRESOLVED: gdb.dlang/primitive-types.exp: set language d
new UNRESOLVED: gdb.dlang/properties.exp: set language d
new UNRESOLVED: gdb.dlang/watch-loc.exp: disassemble _Dmain
new UNRESOLVED: gdb.dlang/watch-loc.exp: p _Dmain_label - _Dmain
new UNRESOLVED: gdb.dlang/watch-loc.exp: x/2i _Dmain+
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: disassemble first
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: disassemble second
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p first_label - first
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p second_label - second
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: x/2i first+
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: x/2i second+
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p g_label - g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i g+
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: console: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: console: set print object on
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: disassemble func01
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: p func01_label - func01
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: x/2i func01+
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dwz.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dwz.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dwz.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: disassemble mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: p mymain_label - mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: x/2i mymain+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/var-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/var-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/var-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/void-type.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/void-type.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i main+
new UNRESOLVED: gdb.objc/print.exp: set language objective-c
new UNRESOLVED: gdb.pascal/print.exp: set language pascal
new UNRESOLVED: gdb.pascal/types.exp: set language pascal
new UNRESOLVED: gdb.python/py-completion.exp: check if python 3
new UNRESOLVED: gdb.python/py-completion.exp: discard #1
new UNRESOLVED: gdb.python/py-completion.exp: discard #2
new UNRESOLVED: gdb.python/py-completion.exp: discard #3
new UNRESOLVED: gdb.python/py-completion.exp: discard #4
new UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completel'
new UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit1 c'
new UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit2 c'
new UNRESOLVED: gdb.python/py-completion.exp: load python file
new UNRESOLVED: gdb.python/py-completion.exp: load python file again
new UNRESOLVED: gdb.python/py-completion.exp: show editing
new UNRESOLVED: gdb.python/py-completion.exp: verify python support
new UNRESOLVED: gdb.python/py-error.exp: check if python 3
new UNRESOLVED: gdb.python/py-error.exp: main reached
new UNRESOLVED: gdb.python/py-error.exp: no delayed error
new UNRESOLVED: gdb.python/py-error.exp: set host-charset IBM1047
new UNRESOLVED: gdb.python/py-error.exp: verify python support
new KFAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new UNRESOLVED: gdb.python/py-function.exp: Test GDBError - python
new UNRESOLVED: gdb.python/py-function.exp: Test GdbError.  There should not be a stack trace
new UNRESOLVED: gdb.python/py-function.exp: Test Normal Error - python
new UNRESOLVED: gdb.python/py-function.exp: Test a Runtime error.  There should be a stack trace.
new UNRESOLVED: gdb.python/py-function.exp: call function
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = ada
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = asm
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = auto
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = c
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = c++
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = d
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = fortran
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = go
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = minimal
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = modula-2
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = objective-c
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = opencl
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = pascal
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = rust
new UNRESOLVED: gdb.python/py-function.exp: call yes with &&
new UNRESOLVED: gdb.python/py-function.exp: call yes with ||
new UNRESOLVED: gdb.python/py-function.exp: check if python 3
new UNRESOLVED: gdb.python/py-function.exp: input command-calling function - python
new UNRESOLVED: gdb.python/py-function.exp: input convenience function - python
new UNRESOLVED: gdb.python/py-function.exp: input int-returning function - python
new UNRESOLVED: gdb.python/py-function.exp: input value-returning convenience function - python
new UNRESOLVED: gdb.python/py-function.exp: set language ada
new UNRESOLVED: gdb.python/py-function.exp: set language asm
new UNRESOLVED: gdb.python/py-function.exp: set language auto
new UNRESOLVED: gdb.python/py-function.exp: set language c
new UNRESOLVED: gdb.python/py-function.exp: set language c++
new UNRESOLVED: gdb.python/py-function.exp: set language d
new UNRESOLVED: gdb.python/py-function.exp: set language fortran
new UNRESOLVED: gdb.python/py-function.exp: set language go
new UNRESOLVED: gdb.python/py-function.exp: set language minimal
new UNRESOLVED: gdb.python/py-function.exp: set language modula-2
new UNRESOLVED: gdb.python/py-function.exp: set language objective-c
new UNRESOLVED: gdb.python/py-function.exp: set language opencl
new UNRESOLVED: gdb.python/py-function.exp: set language pascal
new UNRESOLVED: gdb.python/py-function.exp: set language rust
new UNRESOLVED: gdb.python/py-function.exp: set python print-stack full
new UNRESOLVED: gdb.python/py-function.exp: setting a value from a function which executes a command, again.
new UNRESOLVED: gdb.python/py-function.exp: setting a value from a function which executes a command.
new UNRESOLVED: gdb.python/py-function.exp: verify python support
new UNRESOLVED: gdb.python/py-lookup-type.exp: check if python 3
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type CARDINAL using language modula-2
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language c
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language objective-c
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language pascal
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type character using language ada
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type character using language fortran
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type int32 using language go
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type ucent using language d
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type ushort using language opencl
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language ada
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language c
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language d
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language fortran
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language go
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language modula-2
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language objective-c
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language opencl
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language pascal
new UNRESOLVED: gdb.python/py-lookup-type.exp: verify python support
new UNRESOLVED: gdb.python/py-nested-maps.exp: check if python 3
new UNRESOLVED: gdb.python/py-nested-maps.exp: verify python support
new UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER - python
new UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER_UNLIMITED - python
new UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb booleanparameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: Throwing gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: check if python 3
new UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value can be set to -1
new UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value is -1 after setting
new UNRESOLVED: gdb.python/py-parameter.exp: enum gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: file gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: gdb.GdbError does not show Python stack
new UNRESOLVED: gdb.python/py-parameter.exp: python print
new UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -1
new UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -5
new UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER_UNLIMITED.value = -5
new UNRESOLVED: gdb.python/py-parameter.exp: set enum to two
new UNRESOLVED: gdb.python/py-parameter.exp: set invalid enum parameter
new UNRESOLVED: gdb.python/py-parameter.exp: set new file parameter
new UNRESOLVED: gdb.python/py-parameter.exp: set test-file-param
new UNRESOLVED: gdb.python/py-parameter.exp: show initial file value
new UNRESOLVED: gdb.python/py-parameter.exp: show new file value
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter is initial value
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter is new value
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter off
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter on
new UNRESOLVED: gdb.python/py-parameter.exp: test enum parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test file parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test general help
new UNRESOLVED: gdb.python/py-parameter.exp: test new file parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test set help
new UNRESOLVED: gdb.python/py-parameter.exp: test show help
new UNRESOLVED: gdb.python/py-parameter.exp: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: verify python support
new UNRESOLVED: gdb.python/py-prompt.exp: check if python 3
new UNRESOLVED: gdb.python/py-prompt.exp: verify python support
new UNRESOLVED: gdb.python/py-recurse-unwind.exp: can't run to main
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sigall-precsave.exp
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sigall-reverse.exp
new UNRESOLVED: gdb.rust/expr.exp: set language rust
new UNRESOLVED: gdb.rust/expr.exp: set var $something = 27
new FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
new FAIL: gdb.server/unittest.exp: unit tests
new UNRESOLVED: gdb.trace/actions.exp: failed to compile
new UNRESOLVED: gdb.trace/ax.exp: failed to compile
new UNRESOLVED: gdb.trace/deltrace.exp: failed to compile
new UNRESOLVED: gdb.trace/infotrace.exp: failed to compile
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with missing argument
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with too many arguments
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with wrong option
new UNRESOLVED: gdb.trace/packetlen.exp: failed to compile
new UNRESOLVED: gdb.trace/passc-dyn.exp: failed to compile
new UNRESOLVED: gdb.trace/passcount.exp: failed to compile
new UNRESOLVED: gdb.trace/report.exp: failed to compile
new UNRESOLVED: gdb.trace/save-trace.exp: failed to compile
new UNRESOLVED: gdb.trace/tfind.exp: failed to compile
new UNRESOLVED: gdb.trace/tracecmd.exp: failed to compile
new UNRESOLVED: gdb.trace/tsv.exp: failed to compile
new UNRESOLVED: gdb.trace/while-dyn.exp: failed to compile
new UNRESOLVED: gdb.trace/while-stepping.exp: failed to compile
new UNRESOLVED: gdb.tui/completion.exp: verify tui support
new UNRESOLVED: gdb.tui/empty.exp: set tui border-kind ascii
new UNRESOLVED: gdb.tui/empty.exp: src: 80x24: box 1
new UNRESOLVED: gdb.tui/empty.exp: verify tui support
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: correct line breaks
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: set height 2000
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: set pagination on
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: tui enable
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: verify tui support
new UNRESOLVED: gdb.xml/maint_print_struct.exp: printing tdesc with a structure and a bitfield
new UNRESOLVED: gdb.xml/maint_print_struct.exp: setting a new tdesc having only a structure
new UNRESOLVED: gdb.xml/tdesc-arch.exp: architecture XML tests
new UNRESOLVED: gdb.xml/tdesc-arch.exp: read default architecture
new UNRESOLVED: gdb.xml/tdesc-arch.exp: read valid architectures
new UNRESOLVED: gdb.xml/tdesc-errors.exp: set tdesc filename gdb.xml/tdesc-bogus.xml
new UNRESOLVED: gdb.xml/tdesc-errors.exp: set tdesc filename gdb.xml/tdesc-unknown.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: cd to directory holding xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: maintenance print reggroups
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $bitfields
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $extrareg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $flags
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $mixed_flags
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $structreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $structreg.v4
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $uintreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $unionreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $unionreg.v4
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $vecreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc file single-reg.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc filename test-extra-regs.xml - from extra-regs.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc filename test-regs.xml - from core-only.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/bad-include.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/includes.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/loop.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-gdbserver-m64/d1/d18f9f16299170e94a3d2e8a45aa349a25278aa3//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/d1/d18f9f16299170e94a3d2e8a45aa349a25278aa3//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-06 15:28 [binutils-gdb] libctf: support getting strings from the ELF strtab gdb-buildbot
@ 2019-10-06 17:48 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-06 17:48 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/857

Author:
        Nick Alcock <nick.alcock@oracle.com>

Commit tested:
        d851ecd373a3764581372b10be5b74c9ee98ae08

Subject of commit:
        libctf: support getting strings from the ELF strtab

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/d8/d851ecd373a3764581372b10be5b74c9ee98ae08/

*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/O2_float_param.exp: compilation foo.adb
new FAIL: gdb.ada/access_tagged_param.exp: compilation foo.adb
new FAIL: gdb.ada/access_to_unbounded_array.exp: compilation foo.adb
new FAIL: gdb.ada/addr_arith.exp: compilation foo_na07_019.adb
new FAIL: gdb.ada/aliased_array.exp: compilation foo.adb
new FAIL: gdb.ada/arr_acc_idx_w_gap.exp: compilation enum_with_gap_main.adb
new FAIL: gdb.ada/arr_arr.exp: compilation foo.adb
new FAIL: gdb.ada/arr_enum_idx_w_gap.exp: compilation foo_q418_043.adb
new FAIL: gdb.ada/array_bounds.exp: compilation bar.adb
new FAIL: gdb.ada/array_char_idx.exp: compilation foo.adb
new FAIL: gdb.ada/array_of_variable_length.exp: compilation foo.adb
new FAIL: gdb.ada/array_ptr_renaming.exp: compilation foo.adb
new FAIL: gdb.ada/array_return.exp: compilation p.adb
new FAIL: gdb.ada/array_subscript_addr.exp: compilation p.adb
new FAIL: gdb.ada/arraydim.exp: compilation foo.adb
new FAIL: gdb.ada/arrayidx.exp: compilation p.adb
new FAIL: gdb.ada/arrayparam.exp: compilation foo.adb
new FAIL: gdb.ada/arrayptr.exp: compilation foo.adb
new FAIL: gdb.ada/assign_arr.exp: compilation main_p324_051.adb
new FAIL: gdb.ada/atomic_enum.exp: compilation foo.adb
new FAIL: gdb.ada/attr_ref_and_charlit.exp: compilation foo.adb
new FAIL: gdb.ada/bad-task-bp-keyword.exp: compilation foo.adb
new FAIL: gdb.ada/big_packed_array.exp: compilation foo_ra24_010.adb
new FAIL: gdb.ada/bp_c_mixed_case.exp: compilation foo_h731_021.adb
new FAIL: gdb.ada/bp_enum_homonym.exp: compilation p.adb
new FAIL: gdb.ada/bp_fun_addr.exp: compilation bp_fun_addr.adb
new FAIL: gdb.ada/bp_inlined_func.exp: compilation foo.adb
new FAIL: gdb.ada/bp_on_var.exp: compilation foo.adb
new FAIL: gdb.ada/bp_range_type.exp: compilation foo.adb
new FAIL: gdb.ada/bp_reset.exp: compilation foo.adb
new FAIL: gdb.ada/byte_packed_arr.exp: compilation reprod_main.adb
new FAIL: gdb.ada/catch_assert_if.exp: compilation bla.adb
new FAIL: gdb.ada/catch_ex.exp: compilation foo.adb
new FAIL: gdb.ada/char_enum.exp: compilation foo.adb
new FAIL: gdb.ada/char_param.exp: compilation foo.adb
new FAIL: gdb.ada/complete.exp: compilation foo.adb
new FAIL: gdb.ada/cond_lang.exp: compilation a.adb
new FAIL: gdb.ada/dgopt.exp: compilation x.adb
new FAIL: gdb.ada/disc_arr_bound.exp: compilation foo_n612_026.adb
new FAIL: gdb.ada/display_nested.exp: compilation foo.adb
new FAIL: gdb.ada/dyn_arrayidx.exp: compilation foo.adb
new FAIL: gdb.ada/dyn_loc.exp: compilation p.adb
new FAIL: gdb.ada/dyn_stride.exp: compilation foo.adb
new FAIL: gdb.ada/enum_idx_packed.exp: compilation foo.adb
new FAIL: gdb.ada/excep_handle.exp: compilation foo.adb
new FAIL: gdb.ada/expr_delims.exp: compilation foo.adb
new FAIL: gdb.ada/expr_with_funcall.exp: compilation expr_r821_013.adb
new FAIL: gdb.ada/exprs.exp: compilation p.adb
new FAIL: gdb.ada/fin_fun_out.exp: compilation foo_o525_013.adb
new FAIL: gdb.ada/fixed_cmp.exp: compilation fixed.adb
new FAIL: gdb.ada/fixed_points.exp: compilation fixed_points.adb
new FAIL: gdb.ada/float_param.exp: compilation foo.adb
new FAIL: gdb.ada/formatted_ref.exp: compilation formatted_ref.adb
new FAIL: gdb.ada/frame_arg_lang.exp: compilation bla.adb
new FAIL: gdb.ada/frame_args.exp: compilation foo.adb
new FAIL: gdb.ada/fullname_bp.exp: compilation foo.adb
new FAIL: gdb.ada/fun_addr.exp: compilation foo.adb
new FAIL: gdb.ada/fun_in_declare.exp: compilation foo.adb
new FAIL: gdb.ada/fun_overload_menu.exp: compilation foo.adb
new FAIL: gdb.ada/fun_renaming.exp: compilation fun_renaming.adb
new FAIL: gdb.ada/funcall_param.exp: compilation foo.adb
new FAIL: gdb.ada/funcall_ptr.exp: compilation foo.adb
new FAIL: gdb.ada/funcall_ref.exp: compilation foo.adb
new FAIL: gdb.ada/homonym.exp: compilation homonym_main.adb
new FAIL: gdb.ada/info_addr_mixed_case.exp: compilation foo.adb
new FAIL: gdb.ada/info_exc.exp: compilation foo.adb
new FAIL: gdb.ada/info_locals_renaming.exp: compilation foo.adb
new FAIL: gdb.ada/int_deref.exp: compilation foo.adb
new FAIL: gdb.ada/interface.exp: compilation foo.adb
new FAIL: gdb.ada/iwide.exp: compilation p.adb
new FAIL: gdb.ada/lang_switch.exp: compilation lang_switch.adb
new FAIL: gdb.ada/length_cond.exp: compilation length_cond.adb
new FAIL: gdb.ada/maint_with_ada.exp: compilation var_arr_typedef.adb
new FAIL: gdb.ada/mi_catch_assert.exp: compilation bla.adb
new FAIL: gdb.ada/mi_catch_ex_hand.exp: compilation foo.adb
new FAIL: gdb.ada/mi_ex_cond.exp: compilation foo.adb
new FAIL: gdb.ada/mi_exc_info.exp: compilation foo.adb
new FAIL: gdb.ada/mi_interface.exp: compilation foo.adb
new FAIL: gdb.ada/mi_ref_changeable.exp: compilation foo_rb20_056.adb
new FAIL: gdb.ada/mi_string_access.exp: compilation bar.adb
new FAIL: gdb.ada/mi_task_arg.exp: compilation task_switch.adb
new FAIL: gdb.ada/mi_task_info.exp: compilation task_switch.adb
new FAIL: gdb.ada/mi_var_array.exp: compilation bar.adb
new FAIL: gdb.ada/mi_var_union.exp: compilation bar.adb
new FAIL: gdb.ada/mod_from_name.exp: compilation foo.adb
new FAIL: gdb.ada/n_arr_bound.exp: compilation foo.adb
new FAIL: gdb.ada/notcplusplus.exp: compilation foo.adb
new FAIL: gdb.ada/null_array.exp: compilation foo.adb
new FAIL: gdb.ada/null_record.exp: compilation null_record.adb
new FAIL: gdb.ada/operator_bp.exp: compilation ops_test.adb
new FAIL: gdb.ada/optim_drec.exp: compilation foo.adb
new FAIL: gdb.ada/out_of_line_in_inlined.exp: compilation foo_o224_021.adb
new FAIL: gdb.ada/packed_array.exp: compilation pa.adb
new FAIL: gdb.ada/packed_array_assign.exp: compilation tester.adb
new FAIL: gdb.ada/packed_tagged.exp: compilation comp_bug.adb
new FAIL: gdb.ada/pckd_arr_ren.exp: compilation foo.adb
new FAIL: gdb.ada/pckd_neg.exp: compilation foo_o508_021.adb
new FAIL: gdb.ada/pkd_arr_elem.exp: compilation failure.adb
new FAIL: gdb.ada/pp-rec-component.exp: compilation foo.adb
new FAIL: gdb.ada/print_chars.exp: compilation foo.adb
new FAIL: gdb.ada/print_pc.exp: compilation dummy.adb
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: ptype 3 * 2.0
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: ptype 3 / 2.0
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: set lang ada
new FAIL: gdb.ada/ptype_array.exp: compilation foo.adb
new FAIL: gdb.ada/ptype_field.exp: compilation foo.adb
new FAIL: gdb.ada/ptype_tagged_param.exp: compilation foo.adb
new FAIL: gdb.ada/py_range.exp: compilation foo.adb
new FAIL: gdb.ada/py_taft.exp: compilation main.adb
new FAIL: gdb.ada/rdv_wait.exp: compilation foo.adb
new FAIL: gdb.ada/rec_comp.exp: compilation bar_o203_012.adb
new FAIL: gdb.ada/rec_return.exp: compilation foo.adb
new FAIL: gdb.ada/ref_param.exp: compilation foo.adb
new FAIL: gdb.ada/ref_tick_size.exp: compilation p.adb
new FAIL: gdb.ada/repeat_dyn.exp: compilation foo_oc22_002.adb
new FAIL: gdb.ada/same_component_name.exp: compilation foo.adb
new FAIL: gdb.ada/same_enum.exp: compilation a.adb
new FAIL: gdb.ada/scoped_watch.exp: compilation foo_p708_025.adb
new FAIL: gdb.ada/set_pckd_arr_elt.exp: compilation foo.adb
new FAIL: gdb.ada/set_wstr.exp: compilation a.adb
new FAIL: gdb.ada/small_reg_param.exp: compilation foo.adb
new FAIL: gdb.ada/str_binop_equal.exp: compilation foo_p211_061.adb
new FAIL: gdb.ada/str_uninit.exp: compilation parse.adb
new FAIL: gdb.ada/sym_print_name.exp: compilation foo.adb
new FAIL: gdb.ada/taft_type.exp: compilation p.adb
new FAIL: gdb.ada/tagged.exp: compilation foo.adb
new FAIL: gdb.ada/tagged_access.exp: compilation p.adb
new FAIL: gdb.ada/tagged_not_init.exp: compilation foo.adb
new FAIL: gdb.ada/task_bp.exp: compilation foo.adb
new FAIL: gdb.ada/task_switch_in_core.exp: compilation crash.adb
new FAIL: gdb.ada/tasks.exp: compilation foo.adb
new FAIL: gdb.ada/tick_last_segv.exp: compilation foo.adb
new FAIL: gdb.ada/tick_length_array_enum_idx.exp: compilation foo_n207_004.adb
new FAIL: gdb.ada/type_coercion.exp: compilation assign.adb
new FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: compilation foo.adb
new FAIL: gdb.ada/var_arr_attrs.exp: compilation foo_o115_002.adb
new FAIL: gdb.ada/variant_record_packed_array.exp: compilation foo.adb
new FAIL: gdb.ada/varsize_limit.exp: compilation vsizelim.adb
new FAIL: gdb.ada/vla.exp: compilation vla.adb
new FAIL: gdb.ada/watch_minus_l.exp: compilation foo_ra10_006.adb
new FAIL: gdb.ada/whatis_array_val.exp: compilation foo.adb
new FAIL: gdb.ada/widewide.exp: compilation foo.adb
new FAIL: gdb.ada/win_fu_syms.exp: compilation foo.adb
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: set tdesc filename $srcdir/gdb.arch/arc-tdesc-cpu.xml
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: set tdesc filename /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.arch/arc-tdesc-cpu/trivial.xml
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: setting HS architecture
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: .text is readable
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: complete set architecture i386
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: complete set gnutarget
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: load core file
new UNRESOLVED: gdb.base/alias.exp: -a print elements 47
new UNRESOLVED: gdb.base/alias.exp: abbrev -a not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set2 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set3 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set4 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set5 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set6 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: alias -a -- -a = set
new UNRESOLVED: gdb.base/alias.exp: alias -a -- set6 = set
new UNRESOLVED: gdb.base/alias.exp: alias -a set2=set
new UNRESOLVED: gdb.base/alias.exp: alias -a set3= set
new UNRESOLVED: gdb.base/alias.exp: alias -a set4 =set
new UNRESOLVED: gdb.base/alias.exp: alias -a set5 = set
new UNRESOLVED: gdb.base/alias.exp: alias assigne
new UNRESOLVED: gdb.base/alias.exp: alias assigne imprime
new UNRESOLVED: gdb.base/alias.exp: alias assigne imprime limite-elements
new UNRESOLVED: gdb.base/alias.exp: alias foo=bar
new UNRESOLVED: gdb.base/alias.exp: alias set pr elms = set p elem
new UNRESOLVED: gdb.base/alias.exp: alias set print max-elements using assigne imprime
new UNRESOLVED: gdb.base/alias.exp: alias set2=set
new UNRESOLVED: gdb.base/alias.exp: alias spe = set p elem
new UNRESOLVED: gdb.base/alias.exp: assigne imprime elements 53
new UNRESOLVED: gdb.base/alias.exp: assigne imprime limite-elements 54
new UNRESOLVED: gdb.base/alias.exp: assigne imprime prefix not defined
new UNRESOLVED: gdb.base/alias.exp: assigne print elements 52
new UNRESOLVED: gdb.base/alias.exp: help set print
new UNRESOLVED: gdb.base/alias.exp: mismatched length
new UNRESOLVED: gdb.base/alias.exp: mismatched prefix
new UNRESOLVED: gdb.base/alias.exp: set imprime elements 55
new UNRESOLVED: gdb.base/alias.exp: set imprime prefix not defined
new UNRESOLVED: gdb.base/alias.exp: set pr elms 51
new UNRESOLVED: gdb.base/alias.exp: set print limite-elements 56
new UNRESOLVED: gdb.base/alias.exp: set print max-elements 57
new UNRESOLVED: gdb.base/alias.exp: set2 print elements 42
new UNRESOLVED: gdb.base/alias.exp: set3 print elements 43
new UNRESOLVED: gdb.base/alias.exp: set4 print elements 44
new UNRESOLVED: gdb.base/alias.exp: set5 print elements 45
new UNRESOLVED: gdb.base/alias.exp: set6 print elements 46
new UNRESOLVED: gdb.base/alias.exp: spe 50
new UNRESOLVED: gdb.base/alias.exp: verify -a
new UNRESOLVED: gdb.base/alias.exp: verify 52
new UNRESOLVED: gdb.base/alias.exp: verify 53
new UNRESOLVED: gdb.base/alias.exp: verify 54
new UNRESOLVED: gdb.base/alias.exp: verify 55
new UNRESOLVED: gdb.base/alias.exp: verify 56
new UNRESOLVED: gdb.base/alias.exp: verify 57
new UNRESOLVED: gdb.base/alias.exp: verify set pr elms
new UNRESOLVED: gdb.base/alias.exp: verify set2
new UNRESOLVED: gdb.base/alias.exp: verify set3
new UNRESOLVED: gdb.base/alias.exp: verify set4
new UNRESOLVED: gdb.base/alias.exp: verify set5
new UNRESOLVED: gdb.base/alias.exp: verify set6
new UNRESOLVED: gdb.base/alias.exp: verify spe
new FAIL: gdb.base/all-architectures-0.exp: all passed
new FAIL: gdb.base/all-architectures-0.exp: at least one architecture
new FAIL: gdb.base/all-architectures-0.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-0.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-0.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-0.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-1.exp: all passed
new FAIL: gdb.base/all-architectures-1.exp: at least one architecture
new FAIL: gdb.base/all-architectures-1.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-1.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-1.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-1.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-2.exp: all passed
new FAIL: gdb.base/all-architectures-2.exp: at least one architecture
new FAIL: gdb.base/all-architectures-2.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-2.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-2.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-2.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-3.exp: all passed
new FAIL: gdb.base/all-architectures-3.exp: at least one architecture
new FAIL: gdb.base/all-architectures-3.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-3.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-3.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-3.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-4.exp: all passed
new FAIL: gdb.base/all-architectures-4.exp: at least one architecture
new FAIL: gdb.base/all-architectures-4.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-4.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-4.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-4.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-5.exp: all passed
new FAIL: gdb.base/all-architectures-5.exp: at least one architecture
new FAIL: gdb.base/all-architectures-5.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-5.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-5.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-5.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-6.exp: all passed
new FAIL: gdb.base/all-architectures-6.exp: at least one architecture
new FAIL: gdb.base/all-architectures-6.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-6.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-7.exp: all passed
new FAIL: gdb.base/all-architectures-7.exp: at least one architecture
new FAIL: gdb.base/all-architectures-7.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-7.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-7.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-7.exp: set max-completions unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: break main
new UNRESOLVED: gdb.base/argv0-symlink.exp: p argc
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print elements 200
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print elements unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print repeats 200
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print repeats unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: show print elements
new UNRESOLVED: gdb.base/argv0-symlink.exp: show print repeats
new UNRESOLVED: gdb.base/bad-file.exp: directory
new UNRESOLVED: gdb.base/bad-file.exp: neither file nor directory
new UNRESOLVED: gdb.base/bad-file.exp: non-existent file
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "info source": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "set not-a-thing 4" -x good-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "set not-a-thing 4": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -jslkflsdjlkfjlksdjf: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x bad-commands -ex "info source": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x bad-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands -ex "set not-a-thing 4": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands -x bad-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch: spawn
new UNRESOLVED: gdb.base/bitops.exp: print value of !0
new UNRESOLVED: gdb.base/bitops.exp: print value of !1
new UNRESOLVED: gdb.base/bitops.exp: print value of !10
new UNRESOLVED: gdb.base/bitops.exp: print value of !100
new UNRESOLVED: gdb.base/bitops.exp: print value of !1000
new UNRESOLVED: gdb.base/bitops.exp: print value of !2
new UNRESOLVED: gdb.base/bitops.exp: print value of
new UNRESOLVED: gdb.base/bitops.exp: print value of -!0
new UNRESOLVED: gdb.base/bitops.exp: print value of -1 < 0 > 1
new UNRESOLVED: gdb.base/bitops.exp: print value of -3>4
new UNRESOLVED: gdb.base/bitops.exp: print value of 0 == 8 > 128 >> 1 + 2 * 2
new UNRESOLVED: gdb.base/bitops.exp: print value of 0 || 1 && 0 | 0 ^ 0 == 8
new UNRESOLVED: gdb.base/bitops.exp: print value of 0 || 1 && 0 | 0 ^ 0 == 8 > 128 >>1 +2 *2
new UNRESOLVED: gdb.base/bitops.exp: print value of 0.0 || 0
new UNRESOLVED: gdb.base/bitops.exp: print value of 0.0 || 1.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 1.0 || 0
new UNRESOLVED: gdb.base/bitops.exp: print value of 10 & 5
new UNRESOLVED: gdb.base/bitops.exp: print value of 10 ^ 5
new UNRESOLVED: gdb.base/bitops.exp: print value of 10 | 5
new UNRESOLVED: gdb.base/bitops.exp: print value of 15 ^ 10 ^ 5 ^ 7
new UNRESOLVED: gdb.base/bitops.exp: print value of 2 > -3
new UNRESOLVED: gdb.base/bitops.exp: print value of 3 * 2 / 4.0 * 2.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3!=3.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3!=5.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3.5 < -4.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3.5 < 4.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3==3.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3==4.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3>=2.5
new UNRESOLVED: gdb.base/bitops.exp: print value of 3>=4.5
new UNRESOLVED: gdb.base/bitops.exp: print value of 8 << 2 >> 4
new UNRESOLVED: gdb.base/bitops.exp: print value of ~-!0
new UNRESOLVED: gdb.base/command-line-input.exp: print 1\\n + 2
new UNRESOLVED: gdb.base/command-line-input.exp: print 1\\n2
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: cmd complete ""
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: set max-completions 1
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: show editing
new UNRESOLVED: gdb.base/complete-empty.exp: show editing
new UNRESOLVED: gdb.base/default.exp:
new UNRESOLVED: gdb.base/default.exp: add-symbol-file
new UNRESOLVED: gdb.base/default.exp: append
new UNRESOLVED: gdb.base/default.exp: append binary
new UNRESOLVED: gdb.base/default.exp: append binary memory
new UNRESOLVED: gdb.base/default.exp: append binary value
new UNRESOLVED: gdb.base/default.exp: append memory
new UNRESOLVED: gdb.base/default.exp: append value
new UNRESOLVED: gdb.base/default.exp: call
new UNRESOLVED: gdb.base/default.exp: catch
new UNRESOLVED: gdb.base/default.exp: cd
new UNRESOLVED: gdb.base/default.exp: check if python 3
new UNRESOLVED: gdb.base/default.exp: clear
new UNRESOLVED: gdb.base/default.exp: commands
new UNRESOLVED: gdb.base/default.exp: condition
new UNRESOLVED: gdb.base/default.exp: continue
new UNRESOLVED: gdb.base/default.exp: continue "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: core-file
new UNRESOLVED: gdb.base/default.exp: define
new UNRESOLVED: gdb.base/default.exp: delete
new UNRESOLVED: gdb.base/default.exp: delete "d" abbreviation
new UNRESOLVED: gdb.base/default.exp: delete breakpoints
new UNRESOLVED: gdb.base/default.exp: delete display prompt
new UNRESOLVED: gdb.base/default.exp: detach
new UNRESOLVED: gdb.base/default.exp: directory prompt
new UNRESOLVED: gdb.base/default.exp: disable
new UNRESOLVED: gdb.base/default.exp: disable "dis" abbreviation
new UNRESOLVED: gdb.base/default.exp: disable "disa" abbreviation
new UNRESOLVED: gdb.base/default.exp: disable breakpoints
new UNRESOLVED: gdb.base/default.exp: disable display
new UNRESOLVED: gdb.base/default.exp: disassemble
new UNRESOLVED: gdb.base/default.exp: display
new UNRESOLVED: gdb.base/default.exp: do
new UNRESOLVED: gdb.base/default.exp: document
new UNRESOLVED: gdb.base/default.exp: down
new UNRESOLVED: gdb.base/default.exp: down-silently
new UNRESOLVED: gdb.base/default.exp: dump
new UNRESOLVED: gdb.base/default.exp: dump binary
new UNRESOLVED: gdb.base/default.exp: dump binary memory
new UNRESOLVED: gdb.base/default.exp: dump binary value
new UNRESOLVED: gdb.base/default.exp: dump ihex
new UNRESOLVED: gdb.base/default.exp: dump ihex memory
new UNRESOLVED: gdb.base/default.exp: dump ihex value
new UNRESOLVED: gdb.base/default.exp: dump memory
new UNRESOLVED: gdb.base/default.exp: dump srec
new UNRESOLVED: gdb.base/default.exp: dump srec memory
new UNRESOLVED: gdb.base/default.exp: dump srec value
new UNRESOLVED: gdb.base/default.exp: dump tekhex
new UNRESOLVED: gdb.base/default.exp: dump tekhex memory
new UNRESOLVED: gdb.base/default.exp: dump tekhex value
new UNRESOLVED: gdb.base/default.exp: dump value
new UNRESOLVED: gdb.base/default.exp: echo
new UNRESOLVED: gdb.base/default.exp: enable
new UNRESOLVED: gdb.base/default.exp: enable breakpoints
new UNRESOLVED: gdb.base/default.exp: enable breakpoints delete
new UNRESOLVED: gdb.base/default.exp: enable breakpoints once
new UNRESOLVED: gdb.base/default.exp: enable delete
new UNRESOLVED: gdb.base/default.exp: enable display
new UNRESOLVED: gdb.base/default.exp: enable once
new UNRESOLVED: gdb.base/default.exp: fg
new UNRESOLVED: gdb.base/default.exp: finish
new UNRESOLVED: gdb.base/default.exp: forward-search
new UNRESOLVED: gdb.base/default.exp: frame
new UNRESOLVED: gdb.base/default.exp: frame "f" abbreviation
new UNRESOLVED: gdb.base/default.exp: gcore
new UNRESOLVED: gdb.base/default.exp: generate-core-file
new UNRESOLVED: gdb.base/default.exp: handle
new UNRESOLVED: gdb.base/default.exp: help
new UNRESOLVED: gdb.base/default.exp: help "h" abbreviation
new UNRESOLVED: gdb.base/default.exp: ignore
new UNRESOLVED: gdb.base/default.exp: info
new UNRESOLVED: gdb.base/default.exp: info "i" abbreviation
new UNRESOLVED: gdb.base/default.exp: info address
new UNRESOLVED: gdb.base/default.exp: info all-registers
new UNRESOLVED: gdb.base/default.exp: info args
new UNRESOLVED: gdb.base/default.exp: info bogus-gdb-command
new UNRESOLVED: gdb.base/default.exp: info breakpoints
new UNRESOLVED: gdb.base/default.exp: info copying
new UNRESOLVED: gdb.base/default.exp: info display
new UNRESOLVED: gdb.base/default.exp: info files
new UNRESOLVED: gdb.base/default.exp: info float
new UNRESOLVED: gdb.base/default.exp: info frame
new UNRESOLVED: gdb.base/default.exp: info frame "f" abbreviation
new UNRESOLVED: gdb.base/default.exp: info functions
new UNRESOLVED: gdb.base/default.exp: info locals
new UNRESOLVED: gdb.base/default.exp: info program
new UNRESOLVED: gdb.base/default.exp: info registers
new UNRESOLVED: gdb.base/default.exp: info set
new UNRESOLVED: gdb.base/default.exp: info source
new UNRESOLVED: gdb.base/default.exp: info sources
new UNRESOLVED: gdb.base/default.exp: info stack
new UNRESOLVED: gdb.base/default.exp: info stack "s" abbreviation
new UNRESOLVED: gdb.base/default.exp: info symbol
new UNRESOLVED: gdb.base/default.exp: info target
new UNRESOLVED: gdb.base/default.exp: info terminal
new UNRESOLVED: gdb.base/default.exp: info threads
new UNRESOLVED: gdb.base/default.exp: info types
new UNRESOLVED: gdb.base/default.exp: info variables
new UNRESOLVED: gdb.base/default.exp: info vector
new UNRESOLVED: gdb.base/default.exp: info warranty
new UNRESOLVED: gdb.base/default.exp: info watchpoints
new UNRESOLVED: gdb.base/default.exp: inspect
new UNRESOLVED: gdb.base/default.exp: jump
new UNRESOLVED: gdb.base/default.exp: kill
new UNRESOLVED: gdb.base/default.exp: list
new UNRESOLVED: gdb.base/default.exp: list "l" abbreviation
new UNRESOLVED: gdb.base/default.exp: load
new UNRESOLVED: gdb.base/default.exp: next
new UNRESOLVED: gdb.base/default.exp: next "n" abbreviation
new UNRESOLVED: gdb.base/default.exp: nexti
new UNRESOLVED: gdb.base/default.exp: nexti "ni" abbreviation
new UNRESOLVED: gdb.base/default.exp: output
new UNRESOLVED: gdb.base/default.exp: overlay
new UNRESOLVED: gdb.base/default.exp: overlay auto
new UNRESOLVED: gdb.base/default.exp: overlay list
new UNRESOLVED: gdb.base/default.exp: overlay manual #1
new UNRESOLVED: gdb.base/default.exp: overlay manual #2
new UNRESOLVED: gdb.base/default.exp: overlay map #1
new UNRESOLVED: gdb.base/default.exp: overlay map #2
new UNRESOLVED: gdb.base/default.exp: overlay off
new UNRESOLVED: gdb.base/default.exp: overlay on
new UNRESOLVED: gdb.base/default.exp: overlay unmap #1
new UNRESOLVED: gdb.base/default.exp: overlay unmap #2
new UNRESOLVED: gdb.base/default.exp: print
new UNRESOLVED: gdb.base/default.exp: print "p" abbreviation
new UNRESOLVED: gdb.base/default.exp: printf
new UNRESOLVED: gdb.base/default.exp: ptype
new UNRESOLVED: gdb.base/default.exp: pwd
new UNRESOLVED: gdb.base/default.exp: rbreak
new UNRESOLVED: gdb.base/default.exp: restore
new UNRESOLVED: gdb.base/default.exp: return
new UNRESOLVED: gdb.base/default.exp: reverse-search
new UNRESOLVED: gdb.base/default.exp: search
new UNRESOLVED: gdb.base/default.exp: section
new UNRESOLVED: gdb.base/default.exp: set
new UNRESOLVED: gdb.base/default.exp: set annotate
new UNRESOLVED: gdb.base/default.exp: set args
new UNRESOLVED: gdb.base/default.exp: set check "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check "ch" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check "check" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check range
new UNRESOLVED: gdb.base/default.exp: set check type
new UNRESOLVED: gdb.base/default.exp: set complaints
new UNRESOLVED: gdb.base/default.exp: set confirm
new UNRESOLVED: gdb.base/default.exp: set environment
new UNRESOLVED: gdb.base/default.exp: set height
new UNRESOLVED: gdb.base/default.exp: set history
new UNRESOLVED: gdb.base/default.exp: set history expansion
new UNRESOLVED: gdb.base/default.exp: set history filename
new UNRESOLVED: gdb.base/default.exp: set history save
new UNRESOLVED: gdb.base/default.exp: set history save off
new UNRESOLVED: gdb.base/default.exp: set history size
new UNRESOLVED: gdb.base/default.exp: set language
new UNRESOLVED: gdb.base/default.exp: set listsize
new UNRESOLVED: gdb.base/default.exp: set print
new UNRESOLVED: gdb.base/default.exp: set print "p" abbreviation
new UNRESOLVED: gdb.base/default.exp: set print "pr" abbreviation
new UNRESOLVED: gdb.base/default.exp: set print address
new UNRESOLVED: gdb.base/default.exp: set print array
new UNRESOLVED: gdb.base/default.exp: set print asm-demangle
new UNRESOLVED: gdb.base/default.exp: set print demangle
new UNRESOLVED: gdb.base/default.exp: set print elements
new UNRESOLVED: gdb.base/default.exp: set print object
new UNRESOLVED: gdb.base/default.exp: set print pretty
new UNRESOLVED: gdb.base/default.exp: set print sevenbit-strings
new UNRESOLVED: gdb.base/default.exp: set print union
new UNRESOLVED: gdb.base/default.exp: set print vtbl
new UNRESOLVED: gdb.base/default.exp: set radix
new UNRESOLVED: gdb.base/default.exp: set the history filename
new UNRESOLVED: gdb.base/default.exp: set variable
new UNRESOLVED: gdb.base/default.exp: set verbose
new UNRESOLVED: gdb.base/default.exp: set width
new UNRESOLVED: gdb.base/default.exp: set write
new UNRESOLVED: gdb.base/default.exp: shell echo Hi dad!
new UNRESOLVED: gdb.base/default.exp: show
new UNRESOLVED: gdb.base/default.exp: show annotate
new UNRESOLVED: gdb.base/default.exp: show args
new UNRESOLVED: gdb.base/default.exp: show check "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check "ch" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check "check" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check range
new UNRESOLVED: gdb.base/default.exp: show check type
new UNRESOLVED: gdb.base/default.exp: show commands
new UNRESOLVED: gdb.base/default.exp: show complaints
new UNRESOLVED: gdb.base/default.exp: show confirm
new UNRESOLVED: gdb.base/default.exp: show convenience
new UNRESOLVED: gdb.base/default.exp: show directories
new UNRESOLVED: gdb.base/default.exp: show editing
new UNRESOLVED: gdb.base/default.exp: show height
new UNRESOLVED: gdb.base/default.exp: show history
new UNRESOLVED: gdb.base/default.exp: show history expansion
new UNRESOLVED: gdb.base/default.exp: show history filename
new UNRESOLVED: gdb.base/default.exp: show history save
new UNRESOLVED: gdb.base/default.exp: show history size
new UNRESOLVED: gdb.base/default.exp: show language
new UNRESOLVED: gdb.base/default.exp: show listsize
new UNRESOLVED: gdb.base/default.exp: show p
new UNRESOLVED: gdb.base/default.exp: show paths
new UNRESOLVED: gdb.base/default.exp: show pr
new UNRESOLVED: gdb.base/default.exp: show print
new UNRESOLVED: gdb.base/default.exp: show print address
new UNRESOLVED: gdb.base/default.exp: show print array
new UNRESOLVED: gdb.base/default.exp: show print asm-demangle
new UNRESOLVED: gdb.base/default.exp: show print demangle
new UNRESOLVED: gdb.base/default.exp: show print elements
new UNRESOLVED: gdb.base/default.exp: show print object
new UNRESOLVED: gdb.base/default.exp: show print pretty
new UNRESOLVED: gdb.base/default.exp: show print sevenbit-strings
new UNRESOLVED: gdb.base/default.exp: show print union
new UNRESOLVED: gdb.base/default.exp: show print vtbl
new UNRESOLVED: gdb.base/default.exp: show prompt
new UNRESOLVED: gdb.base/default.exp: show radix
new UNRESOLVED: gdb.base/default.exp: show user
new UNRESOLVED: gdb.base/default.exp: show values
new UNRESOLVED: gdb.base/default.exp: show verbose
new UNRESOLVED: gdb.base/default.exp: show version
new UNRESOLVED: gdb.base/default.exp: show width
new UNRESOLVED: gdb.base/default.exp: show write
new UNRESOLVED: gdb.base/default.exp: signal
new UNRESOLVED: gdb.base/default.exp: source
new UNRESOLVED: gdb.base/default.exp: step "s" abbreviation #1
new UNRESOLVED: gdb.base/default.exp: step "s" abbreviation #2
new UNRESOLVED: gdb.base/default.exp: step #1
new UNRESOLVED: gdb.base/default.exp: step #2
new UNRESOLVED: gdb.base/default.exp: stepi
new UNRESOLVED: gdb.base/default.exp: stepi "si" abbreviation
new UNRESOLVED: gdb.base/default.exp: symbol-file
new UNRESOLVED: gdb.base/default.exp: target
new UNRESOLVED: gdb.base/default.exp: target native
new UNRESOLVED: gdb.base/default.exp: tbreak
new UNRESOLVED: gdb.base/default.exp: thread
new UNRESOLVED: gdb.base/default.exp: thread apply
new UNRESOLVED: gdb.base/default.exp: thread find
new UNRESOLVED: gdb.base/default.exp: thread name
new UNRESOLVED: gdb.base/default.exp: undisplay prompt
new UNRESOLVED: gdb.base/default.exp: unset
new UNRESOLVED: gdb.base/default.exp: unset environment prompt
new UNRESOLVED: gdb.base/default.exp: until
new UNRESOLVED: gdb.base/default.exp: until "u" abbreviation
new UNRESOLVED: gdb.base/default.exp: up-silently
new UNRESOLVED: gdb.base/default.exp: verify python support
new UNRESOLVED: gdb.base/default.exp: watch
new UNRESOLVED: gdb.base/default.exp: whatis
new UNRESOLVED: gdb.base/default.exp: where
new UNRESOLVED: gdb.base/default.exp: x
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567890123456789012345678901234dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567890123456dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567890123456.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567890123456789012345678901234.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567890123456789012345678901234dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567890123456dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E384dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E6144dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E96df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2147483648ll
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2147483648ull
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2ll
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 4294967296ull
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd < 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd < 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df + 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df + 1.2f
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df < 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df < 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df > 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl < 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl < 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl > 2
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd * 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd + 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd - 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd / 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df * 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df + 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df - 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df / 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl * 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl + 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl - 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl / 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567890123456.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567890123456789012345678901234.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 + 1.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 > 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 > 3.1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.1dd + 2.7df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.1df + 2.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.3dd + 2.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.3dl + 2.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.6df + 2.7dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.6dl + 2.7df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 3 + 2.1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 1.2df + 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2 + 1.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dd + 2.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dd + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dl + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 3 + 2.1dl
new UNRESOLVED: gdb.base/echo.exp: echo test
new UNRESOLVED: gdb.base/empty_exe.exp: file ''
new UNRESOLVED: gdb.base/empty_exe.exp: print 1
new UNRESOLVED: gdb.base/endian.exp: auto target endianness
new UNRESOLVED: gdb.base/endian.exp: auto target endianness big
new UNRESOLVED: gdb.base/endian.exp: auto target endianness little
new UNRESOLVED: gdb.base/endian.exp: default target endianness
new UNRESOLVED: gdb.base/endian.exp: get target endianness
new FAIL: gdb.base/endian.exp: override auto target endianness big
new FAIL: gdb.base/endian.exp: override auto target endianness little
new UNRESOLVED: gdb.base/endian.exp: override target endianness big
new FAIL: gdb.base/endian.exp: override target endianness little
new UNRESOLVED: gdb.base/endian.exp: previously big default executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously big default no executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously little default executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously little default no executable endianness
new UNRESOLVED: gdb.base/endian.exp: set target endianness
new UNRESOLVED: gdb.base/endian.exp: set target endianness big
new UNRESOLVED: gdb.base/endian.exp: set target endianness little
new UNRESOLVED: gdb.base/environ.exp: all environment variables have been unset
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable previously undefined
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable using = syntax
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable with trailing equals
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable with trailing whitespace
new UNRESOLVED: gdb.base/environ.exp: confirm unset environment variable worked
new UNRESOLVED: gdb.base/environ.exp: set environment variable
new UNRESOLVED: gdb.base/environ.exp: set environment variable previously undefined
new UNRESOLVED: gdb.base/environ.exp: set environment variable to null value
new UNRESOLVED: gdb.base/environ.exp: set environment variable using = syntax
new UNRESOLVED: gdb.base/environ.exp: set environment variable with trailing equals
new UNRESOLVED: gdb.base/environ.exp: set environment variable with trailing whitespace
new UNRESOLVED: gdb.base/environ.exp: set environment without arguments
new UNRESOLVED: gdb.base/environ.exp: set environment without variable name
new UNRESOLVED: gdb.base/environ.exp: set path works properly
new UNRESOLVED: gdb.base/environ.exp: show environment works
new UNRESOLVED: gdb.base/environ.exp: show non-existent environment variable
new UNRESOLVED: gdb.base/environ.exp: show null environment variable
new UNRESOLVED: gdb.base/environ.exp: show paths works properly
new UNRESOLVED: gdb.base/environ.exp: unset all environment variables
new UNRESOLVED: gdb.base/environ.exp: unset environment variable
new UNRESOLVED: gdb.base/eval.exp: first eval.
new UNRESOLVED: gdb.base/eval.exp: initialize $a.
new UNRESOLVED: gdb.base/eval.exp: second eval.
new UNRESOLVED: gdb.base/gdb1056.exp: print 1/0
new UNRESOLVED: gdb.base/gdb1056.exp: test unsigned division by zero
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize= 20 : show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize= 20 : show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5ab: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5ab: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=0: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=0: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=10zab: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=10zab: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=20: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=20: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=50: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=50: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=99999999999999999999999999999999999: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=99999999999999999999999999999999999: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=not_an_integer: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=not_an_integer: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=1000: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=1000: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=foo: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=foo: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/zero: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/zero: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: appending: server show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: creating: server show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: print 1
new UNRESOLVED: gdb.base/help.exp: apropos \
new UNRESOLVED: gdb.base/help.exp: apropos apropos
new UNRESOLVED: gdb.base/help.exp: apropos handle signal
new UNRESOLVED: gdb.base/help.exp: disable pagination
new UNRESOLVED: gdb.base/help.exp: help aliases
new UNRESOLVED: gdb.base/help.exp: help backtrace
new UNRESOLVED: gdb.base/help.exp: help backtrace "bt" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "b" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "br" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "bre" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "brea" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "break" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoints
new UNRESOLVED: gdb.base/help.exp: help commands
new UNRESOLVED: gdb.base/help.exp: help data
new UNRESOLVED: gdb.base/help.exp: help delete
new UNRESOLVED: gdb.base/help.exp: help delete "d" abbreviation
new UNRESOLVED: gdb.base/help.exp: help files
new UNRESOLVED: gdb.base/help.exp: help gotcha
new UNRESOLVED: gdb.base/help.exp: help help
new UNRESOLVED: gdb.base/help.exp: help help "h" abbreviation
new UNRESOLVED: gdb.base/help.exp: help info bogus-gdb-command
new UNRESOLVED: gdb.base/help.exp: help internals
new UNRESOLVED: gdb.base/help.exp: help obscure
new UNRESOLVED: gdb.base/help.exp: help running
new UNRESOLVED: gdb.base/help.exp: help show commands
new UNRESOLVED: gdb.base/help.exp: help show confirm
new UNRESOLVED: gdb.base/help.exp: help show copying
new UNRESOLVED: gdb.base/help.exp: help show warranty
new UNRESOLVED: gdb.base/help.exp: help stack
new UNRESOLVED: gdb.base/help.exp: help status
new UNRESOLVED: gdb.base/help.exp: help support
new UNRESOLVED: gdb.base/help.exp: help tracepoints
new UNRESOLVED: gdb.base/help.exp: help user-defined
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: set history remove-duplicates 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: set history remove-duplicates 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: set history remove-duplicates 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 3
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 4
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 3
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 4
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: set history remove-duplicates unlimited
new UNRESOLVED: gdb.base/history-duplicates.exp: show editing
new UNRESOLVED: gdb.base/history-duplicates.exp: show history remove-duplicates
new UNRESOLVED: gdb.base/ifelse.exp: call original define
new UNRESOLVED: gdb.base/ifelse.exp: call replacement define
new UNRESOLVED: gdb.base/ifelse.exp: create define with empty else
new UNRESOLVED: gdb.base/ifelse.exp: if 0 .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 0 with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 1 .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 1 with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #1
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #2
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #3
new UNRESOLVED: gdb.base/ifelse.exp: replace define with if .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: set confirm off
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tc-td: 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-tc-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ts: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tf: 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-tf-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-ts: 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-ti-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tl-td: 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-tl-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-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-td: 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-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tld: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tll-tf: 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-td: 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-ts-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ts: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tc-td: 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-tc-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-ts: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tf: 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-tf-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-ts: 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-ti-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tl-td: 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-tl-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-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-td: 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-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tld: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tll-tf: 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-td: 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-ts-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ts: failed to compile
new FAIL: gdb.base/info-os.exp: cannot compile test program
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode on
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode on
new UNRESOLVED: gdb.base/interact.exp: show interactive-mode
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode on
new UNRESOLVED: gdb.base/multi-line-starts-subshell.exp: gdb input still works
new UNRESOLVED: gdb.base/multi-line-starts-subshell.exp: spawn subshell from multi-line
new UNRESOLVED: gdb.base/osabi.exp: set debug arch 1
new UNRESOLVED: gdb.base/osabi.exp: set osabi none
new UNRESOLVED: gdb.base/page.exp: paged count
new UNRESOLVED: gdb.base/page.exp: paged count for interrupt
new UNRESOLVED: gdb.base/page.exp: paged count remainder
new UNRESOLVED: gdb.base/page.exp: paged help
new UNRESOLVED: gdb.base/page.exp: pagination is off
new UNRESOLVED: gdb.base/page.exp: pagination is on
new UNRESOLVED: gdb.base/page.exp: q
new UNRESOLVED: gdb.base/page.exp: quit while paging
new UNRESOLVED: gdb.base/page.exp: set editing off
new UNRESOLVED: gdb.base/page.exp: set height -1
new UNRESOLVED: gdb.base/page.exp: set height 10
new UNRESOLVED: gdb.base/page.exp: set height 5
new UNRESOLVED: gdb.base/page.exp: set pagination off
new UNRESOLVED: gdb.base/page.exp: set pagination on
new UNRESOLVED: gdb.base/page.exp: set width -1
new UNRESOLVED: gdb.base/page.exp: set width 30
new UNRESOLVED: gdb.base/page.exp: size=0: set height 0
new UNRESOLVED: gdb.base/page.exp: size=0: set height 200
new UNRESOLVED: gdb.base/page.exp: size=0: set width 0
new UNRESOLVED: gdb.base/page.exp: size=0: set width 200
new UNRESOLVED: gdb.base/page.exp: size=0: show height
new UNRESOLVED: gdb.base/page.exp: size=0: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=0: show width
new UNRESOLVED: gdb.base/page.exp: size=0: show width unlimited
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set height 0x80000000
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set height 200
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set width 0x80000000
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set width 200
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show height
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show width
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show width unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set height 200
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set height unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set width 200
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set width unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show height
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show width
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show width unlimited
new UNRESOLVED: gdb.base/page.exp: unpaged help
new UNRESOLVED: gdb.base/quit.exp: quit with expression
new UNRESOLVED: gdb.base/quit.exp: quit with syntax error
new UNRESOLVED: gdb.base/radix.exp: Output radix unchanged after rejecting 0
new UNRESOLVED: gdb.base/radix.exp: Reject input-radix 0
new UNRESOLVED: gdb.base/radix.exp: Reject input-radix 1
new UNRESOLVED: gdb.base/radix.exp: Reject output-radix 0
new UNRESOLVED: gdb.base/radix.exp: Reject output-radix 1
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 10
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 16
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 2
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 3
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 8
new UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 10
new UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 16
new UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 8
new UNRESOLVED: gdb.base/radix.exp: input radix unchanged after rejecting 0
new UNRESOLVED: gdb.base/radix.exp: input radix unchanged after rejecting 1
new UNRESOLVED: gdb.base/radix.exp: output radix unchanged after rejecting 1
new UNRESOLVED: gdb.base/radix.exp: output radix unchanged after rejection through set radix command
new UNRESOLVED: gdb.base/radix.exp: print
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -100; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -256; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -4; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -64; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -9; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -101; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -10; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -257; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -5; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -65; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -10; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -16; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -2; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -3; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -8; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -11; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -17; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -3; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -4; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -9; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -12; expect -12; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -20; expect -16; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -2; expect Invalid number "2"\.; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -9; expect Invalid number "9".; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 010; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 17; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect f; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 100; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 100; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 144; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 256; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 4; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 64; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 64; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 9; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 10101; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 21; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 4161; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 65793; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 91; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 101; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 10; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 257; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 5; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 65; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 10; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 10; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 12; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 16; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 2; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 3; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 8; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10; expect a; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 11; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 17; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 3; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 4; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 9; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 14; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 24; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20; expect 16; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20; expect 6; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 2; expect 2; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 30; expect Invalid number "30"\.; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 3; expect Invalid number "3"\.; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 4; expect Invalid number "4"\.; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 8; expect Invalid number "8".; input radix 8
new UNRESOLVED: gdb.base/radix.exp: reset radices
new UNRESOLVED: gdb.base/radix.exp: set input-radix 10
new UNRESOLVED: gdb.base/radix.exp: set input-radix 16
new UNRESOLVED: gdb.base/radix.exp: set input-radix 2
new UNRESOLVED: gdb.base/radix.exp: set input-radix 3
new UNRESOLVED: gdb.base/radix.exp: set input-radix 8
new UNRESOLVED: gdb.base/radix.exp: set output-radix 10
new UNRESOLVED: gdb.base/radix.exp: set output-radix 16
new UNRESOLVED: gdb.base/radix.exp: set output-radix 8
new UNRESOLVED: gdb.base/radix.exp: set radix 7 rejected
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 10
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 16
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 2
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 3
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 8
new UNRESOLVED: gdb.base/radix.exp: show radix, output radix 10
new UNRESOLVED: gdb.base/radix.exp: show radix, output radix 16
new UNRESOLVED: gdb.base/radix.exp: show radix, output radix 8
new UNRESOLVED: gdb.base/readline.exp: Simple operate-and-get-next - send p 1
new UNRESOLVED: gdb.base/readline.exp: arrow keys with secondary prompt
new UNRESOLVED: gdb.base/readline.exp: operate-and-get-next with secondary prompt - send if 1 > 0
new UNRESOLVED: gdb.base/readline.exp: print 42
new UNRESOLVED: gdb.base/readline.exp: show editing
new UNRESOLVED: gdb.base/remotetimeout.exp: correct remotetimeout printed
new UNRESOLVED: gdb.base/shell.exp: ! echo foo
new UNRESOLVED: gdb.base/shell.exp: ! exit 0
new UNRESOLVED: gdb.base/shell.exp: ! exit 1
new UNRESOLVED: gdb.base/shell.exp: ! kill -2 $$
new UNRESOLVED: gdb.base/shell.exp: !echo foo
new UNRESOLVED: gdb.base/shell.exp: -d spaces value missing
new UNRESOLVED: gdb.base/shell.exp: -d value missing
new UNRESOLVED: gdb.base/shell.exp: DELIM delimiter missing
new UNRESOLVED: gdb.base/shell.exp: SHELL_COMMAND missing
new UNRESOLVED: gdb.base/shell.exp: SHELL_COMMAND missing with delimiter
new UNRESOLVED: gdb.base/shell.exp: all missing
new UNRESOLVED: gdb.base/shell.exp: alternate 1char delim
new UNRESOLVED: gdb.base/shell.exp: alternate 1char delim, no space
new UNRESOLVED: gdb.base/shell.exp: alternate 3char delim
new UNRESOLVED: gdb.base/shell.exp: alternate 3char delim, no space
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe print 1 | "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| print 1 | "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|print 1 | "
new UNRESOLVED: gdb.base/shell.exp: define foo
new UNRESOLVED: gdb.base/shell.exp: delimiter missing due to missing space
new UNRESOLVED: gdb.base/shell.exp: double pipe
new UNRESOLVED: gdb.base/shell.exp: double pipe, pipe char
new UNRESOLVED: gdb.base/shell.exp: echo coucou
new UNRESOLVED: gdb.base/shell.exp: enter commands
new UNRESOLVED: gdb.base/shell.exp: no space around pipe char
new UNRESOLVED: gdb.base/shell.exp: pipe fail exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe fail exitsignal
new UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitsignal
new UNRESOLVED: gdb.base/shell.exp: pipe success exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe success exitsignal
new UNRESOLVED: gdb.base/shell.exp: repeat previous command
new UNRESOLVED: gdb.base/shell.exp: set max-completions 0
new UNRESOLVED: gdb.base/shell.exp: set max-completions 2
new UNRESOLVED: gdb.base/shell.exp: shell echo foo
new UNRESOLVED: gdb.base/shell.exp: shell fail exitcode
new UNRESOLVED: gdb.base/shell.exp: shell fail exitsignal
new UNRESOLVED: gdb.base/shell.exp: shell interrupt exitcode
new UNRESOLVED: gdb.base/shell.exp: shell interrupt exitsignal
new UNRESOLVED: gdb.base/shell.exp: shell success exitcode
new UNRESOLVED: gdb.base/shell.exp: shell success exitsignal
new UNRESOLVED: gdb.base/shell.exp: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
new UNRESOLVED: gdb.base/shell.exp: simple pipe
new UNRESOLVED: gdb.base/shell.exp: simple pipe with arg
new UNRESOLVED: gdb.base/shell.exp: | delimiter missing
new UNRESOLVED: gdb.base/shell.exp: |p 123| exit 0
new UNRESOLVED: gdb.base/shell.exp: |p 123| exit 1
new UNRESOLVED: gdb.base/shell.exp: |p 123| kill -2 $$
new UNRESOLVED: gdb.base/source-dir.exp: directory /nOtExStInG/a /nOtExStInG/b /nOtExStInG/c
new UNRESOLVED: gdb.base/source-dir.exp: directory /nOtExStInG/b /nOtExStInG/d /nOtExStInG/c
new UNRESOLVED: gdb.base/source.exp: script contains error
new UNRESOLVED: gdb.base/source.exp: set search directories
new UNRESOLVED: gdb.base/source.exp: source -s
new UNRESOLVED: gdb.base/source.exp: source -s -v
new UNRESOLVED: gdb.base/source.exp: source -v
new UNRESOLVED: gdb.base/source.exp: source -v -s
new UNRESOLVED: gdb.base/source.exp: source after -v
new UNRESOLVED: gdb.base/source.exp: source for-sure-nonexistant-file
new UNRESOLVED: gdb.base/source.exp: source source-nofile.gdb
new UNRESOLVED: gdb.base/step-over-syscall.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/step-over-syscall.exp: run to main
new UNRESOLVED: gdb.base/subst.exp: add depuis -> vers substitution rule
new UNRESOLVED: gdb.base/subst.exp: add from -> to substitution rule
new UNRESOLVED: gdb.base/subst.exp: add from1 -> to1 substitution rule
new UNRESOLVED: gdb.base/subst.exp: add source -> destination substitution rule
new UNRESOLVED: gdb.base/subst.exp: add substitution rule to empty string
new UNRESOLVED: gdb.base/subst.exp: deactivate GDB's confirmation interface
new UNRESOLVED: gdb.base/subst.exp: remove all remaining substitution rules
new UNRESOLVED: gdb.base/subst.exp: remove default substitution rules
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, first argument is empty string
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, too few arguments
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, too many arguments
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after all remaining rules removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after depuis rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after empty rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after from rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path depuis, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, after unsetting it
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from/path, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from_a_bad_path, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path garbage, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: show substitute-path, too many arguments
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path depuis
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path empty
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from after the rule was removed
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path, too many arguments
new UNRESOLVED: gdb.base/trace-commands.exp: define user command
new UNRESOLVED: gdb.base/trace-commands.exp: depth resets on error part 1
new UNRESOLVED: gdb.base/trace-commands.exp: depth resets on error part 2
new UNRESOLVED: gdb.base/trace-commands.exp: nested trace-commands test
new UNRESOLVED: gdb.base/trace-commands.exp: nested trace-commands test with source
new UNRESOLVED: gdb.base/trace-commands.exp: set trace-commands
new UNRESOLVED: gdb.base/trace-commands.exp: show trace-commands says off
new UNRESOLVED: gdb.base/trace-commands.exp: show trace-commands says on
new UNRESOLVED: gdb.base/trace-commands.exp: simple trace-commands test
new UNRESOLVED: gdb.base/trace-commands.exp: source -v
new UNRESOLVED: gdb.base/warning.exp: echo 23\n
new UNRESOLVED: gdb.btrace/cpu.exp: default cpu
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu auto
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/1
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0x0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo/bar
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu none
new UNRESOLVED: gdb.btrace/cpu.exp: set record
new UNRESOLVED: gdb.btrace/cpu.exp: set record btrace
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu auto
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/1
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0x0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo/bar
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu none
new UNRESOLVED: gdb.cp/debug-expr.exp: print dynamic_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: print reinterpret_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: print static_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: set debug expression 1
new UNRESOLVED: gdb.cp/debug-expr.exp: set language c++
new UNRESOLVED: gdb.cp/demangle.exp: auto: check demangling style
new UNRESOLVED: gdb.cp/demangle.exp: auto: set demangle-style
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c -- _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c++ -- _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c++ _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l garbage xyzdje
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z13BitPatterntoaOK10BitPatternccc
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z31DrawDestinationTransformedImageP7_XImageiiS0_iimjiijmmP4_XGCOK13ivTransformeriiii
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z3argOK7Complex
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN11RelateManip6EffectEO7ivEvent
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN20DisplayList_IteratorC4EO11DisplayList
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN3fooC4EOS_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN3fooC4EiOS_iS0_iS0_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE3PixC4EOKS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE7elementC2EOKS0_PS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE7elementC4EOKS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityEC4EOKS1_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4PixXI11VHDLLibrary14VHDLLibraryRep4ListI10VHDLEntityEEC2EOKS5_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN7ivWorldC2EPKcOiPPcPK12ivOptionDescPK14ivPropertyData
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN8TextCode14CoreConstDeclsEO7ostream
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic: gnu-v3: check demangling style
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic: gnu-v3: set demangle-style
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK11VHDLLibrary5nextEEO4PixXIS_14VHDLLibraryRep4ListI10VHDLEntityEE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK4ListI10VHDLEntityE4nextEONS1_3PixE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK4ListI10VHDLEntityEclEOKNS1_3PixE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOK10BitPattern
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOK12BitSubStringi
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOKS_
new UNRESOLVED: gdb.cp/demangle.exp: set language c++
new UNRESOLVED: gdb.cp/demangle.exp: set language unknown
new UNRESOLVED: gdb.cp/demangle.exp: set width 0
new UNRESOLVED: gdb.cp/maint.exp: help maint cp
new UNRESOLVED: gdb.cp/maint.exp: help maint cp first_component
new UNRESOLVED: gdb.cp/maint.exp: help maint cp namespace
new UNRESOLVED: gdb.cp/maint.exp: help maintenance cplus
new UNRESOLVED: gdb.cp/maint.exp: maint cp
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component C<A>::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component C<std::basic_streambuf<wchar_t,std::char_traits<wchar_t> > >::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component T<Cooperator>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component bool operator<<char>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo::bar::baz
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<&
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<&operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int operator<< <char>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator  ->
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator ->
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator>>
new UNRESOLVED: gdb.cp/maint.exp: maint cp namespace
new UNRESOLVED: gdb.cp/maint.exp: set complaints 1000
new UNRESOLVED: gdb.cp/punctuator.exp: print
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 1
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 2
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 3
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 1
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 2
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 3
new UNRESOLVED: gdb.cp/punctuator.exp: set lang c++
new UNRESOLVED: gdb.cp/ref-params.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/ref-params.exp: print value of Child& in f2
new UNRESOLVED: gdb.cp/ref-params.exp: print value of Parent& in f1
new UNRESOLVED: gdb.cp/ref-params.exp: print value of a Child in main
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on Child in main
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on Child& in f2
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f2 on
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f2 on Child in main
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print f1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print mf1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print mf2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Child&& in f2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Child&& in f2: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Parent&& in f1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Parent&& in f1: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f1 on
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f1 on Child&& in f2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f2 on
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char16_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char16_t is unsigned
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char32_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char32_t is unsigned
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p L"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p U"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p u"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: set language c++
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: sizeof
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: wchar_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: wchar_t sign
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: char16_t is not built-in
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: char32_t is not built-in
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p L"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p U"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p u"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: set language c
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: wchar_t is not built-in
new UNRESOLVED: gdb.disasm/disassembler-options.exp: set disassembler-options
new UNRESOLVED: gdb.disasm/disassembler-options.exp: set disassembler-options invalid_option_value
new UNRESOLVED: gdb.disasm/disassembler-options.exp: show NULL disassembler-options
new UNRESOLVED: gdb.dlang/debug-expr.exp: print *
new UNRESOLVED: gdb.dlang/debug-expr.exp: set debug expression 1
new UNRESOLVED: gdb.dlang/debug-expr.exp: set language d
new UNRESOLVED: gdb.dlang/demangle.exp: set language d
new UNRESOLVED: gdb.dlang/expression.exp: set language d
new UNRESOLVED: gdb.dlang/primitive-types.exp: set language d
new UNRESOLVED: gdb.dlang/properties.exp: set language d
new UNRESOLVED: gdb.dlang/watch-loc.exp: disassemble _Dmain
new UNRESOLVED: gdb.dlang/watch-loc.exp: p _Dmain_label - _Dmain
new UNRESOLVED: gdb.dlang/watch-loc.exp: x/2i _Dmain+
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: disassemble first
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: disassemble second
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p first_label - first
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p second_label - second
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: x/2i first+
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: x/2i second+
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p g_label - g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i g+
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: console: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: console: set print object on
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: disassemble func01
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: p func01_label - func01
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: x/2i func01+
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dwz.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dwz.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dwz.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: disassemble mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: p mymain_label - mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: x/2i mymain+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/var-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/var-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/var-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/void-type.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/void-type.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i main+
new UNRESOLVED: gdb.guile/guile.exp: collect help from uiout
new UNRESOLVED: gdb.guile/guile.exp: guile
new UNRESOLVED: gdb.guile/guile.exp: show guile command - define zzq
new UNRESOLVED: gdb.guile/guile.exp: source -s source2.scm
new UNRESOLVED: gdb.guile/guile.exp: source source2.scm
new UNRESOLVED: gdb.guile/guile.exp: verify guile support
new UNRESOLVED: gdb.guile/guile.exp: verify help to uiout
new UNRESOLVED: gdb.guile/scm-error.exp: backtrace printed
new UNRESOLVED: gdb.guile/scm-error.exp: error loading scm file caught
new UNRESOLVED: gdb.guile/scm-error.exp: error message printed
new UNRESOLVED: gdb.guile/scm-error.exp: guile
new UNRESOLVED: gdb.guile/scm-error.exp: no delayed error
new UNRESOLVED: gdb.guile/scm-error.exp: no error printed
new UNRESOLVED: gdb.guile/scm-error.exp: reset print-stack to default, post set/show tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to full, for backtrace test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error printing tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to none, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: source /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.guile/scm-error/scm-error-2.scm
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack full setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack none setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting of default
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to full
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to none
new UNRESOLVED: gdb.guile/scm-error.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-gsmob.exp: gu
new UNRESOLVED: gdb.guile/scm-gsmob.exp: guile
new UNRESOLVED: gdb.guile/scm-gsmob.exp: object-properties
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-parameter.exp: Simple gdb boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: enum gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: error registering existing parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: file gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously ambiguously named boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set print s on
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: restricted gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: enum parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set invalid enum parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set print test-enum-param two
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: initial parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: new parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param bar.txt
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set print test-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 10
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 42
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: show test-restricted-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set print test-undoc-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: undocumented gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: verify guile support
new UNRESOLVED: gdb.objc/print.exp: set language objective-c
new UNRESOLVED: gdb.pascal/print.exp: set language pascal
new UNRESOLVED: gdb.pascal/types.exp: set language pascal
new UNRESOLVED: gdb.python/py-completion.exp: check if python 3
new UNRESOLVED: gdb.python/py-completion.exp: discard #1
new UNRESOLVED: gdb.python/py-completion.exp: discard #2
new UNRESOLVED: gdb.python/py-completion.exp: discard #3
new UNRESOLVED: gdb.python/py-completion.exp: discard #4
new UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completel'
new UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit1 c'
new UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit2 c'
new UNRESOLVED: gdb.python/py-completion.exp: load python file
new UNRESOLVED: gdb.python/py-completion.exp: load python file again
new UNRESOLVED: gdb.python/py-completion.exp: show editing
new UNRESOLVED: gdb.python/py-completion.exp: verify python support
new UNRESOLVED: gdb.python/py-error.exp: check if python 3
new UNRESOLVED: gdb.python/py-error.exp: main reached
new UNRESOLVED: gdb.python/py-error.exp: no delayed error
new UNRESOLVED: gdb.python/py-error.exp: set host-charset IBM1047
new UNRESOLVED: gdb.python/py-error.exp: verify python support
new KFAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new UNRESOLVED: gdb.python/py-function.exp: Test GDBError - python
new UNRESOLVED: gdb.python/py-function.exp: Test GdbError.  There should not be a stack trace
new UNRESOLVED: gdb.python/py-function.exp: Test Normal Error - python
new UNRESOLVED: gdb.python/py-function.exp: Test a Runtime error.  There should be a stack trace.
new UNRESOLVED: gdb.python/py-function.exp: call function
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = ada
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = asm
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = auto
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = c
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = c++
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = d
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = fortran
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = go
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = minimal
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = modula-2
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = objective-c
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = opencl
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = pascal
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = rust
new UNRESOLVED: gdb.python/py-function.exp: call yes with &&
new UNRESOLVED: gdb.python/py-function.exp: call yes with ||
new UNRESOLVED: gdb.python/py-function.exp: check if python 3
new UNRESOLVED: gdb.python/py-function.exp: input command-calling function - python
new UNRESOLVED: gdb.python/py-function.exp: input convenience function - python
new UNRESOLVED: gdb.python/py-function.exp: input int-returning function - python
new UNRESOLVED: gdb.python/py-function.exp: input value-returning convenience function - python
new UNRESOLVED: gdb.python/py-function.exp: set language ada
new UNRESOLVED: gdb.python/py-function.exp: set language asm
new UNRESOLVED: gdb.python/py-function.exp: set language auto
new UNRESOLVED: gdb.python/py-function.exp: set language c
new UNRESOLVED: gdb.python/py-function.exp: set language c++
new UNRESOLVED: gdb.python/py-function.exp: set language d
new UNRESOLVED: gdb.python/py-function.exp: set language fortran
new UNRESOLVED: gdb.python/py-function.exp: set language go
new UNRESOLVED: gdb.python/py-function.exp: set language minimal
new UNRESOLVED: gdb.python/py-function.exp: set language modula-2
new UNRESOLVED: gdb.python/py-function.exp: set language objective-c
new UNRESOLVED: gdb.python/py-function.exp: set language opencl
new UNRESOLVED: gdb.python/py-function.exp: set language pascal
new UNRESOLVED: gdb.python/py-function.exp: set language rust
new UNRESOLVED: gdb.python/py-function.exp: set python print-stack full
new UNRESOLVED: gdb.python/py-function.exp: setting a value from a function which executes a command, again.
new UNRESOLVED: gdb.python/py-function.exp: setting a value from a function which executes a command.
new UNRESOLVED: gdb.python/py-function.exp: verify python support
new UNRESOLVED: gdb.python/py-lookup-type.exp: check if python 3
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type CARDINAL using language modula-2
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language c
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language objective-c
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language pascal
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type character using language ada
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type character using language fortran
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type int32 using language go
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type ucent using language d
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type ushort using language opencl
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language ada
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language c
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language d
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language fortran
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language go
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language modula-2
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language objective-c
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language opencl
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language pascal
new UNRESOLVED: gdb.python/py-lookup-type.exp: verify python support
new UNRESOLVED: gdb.python/py-nested-maps.exp: check if python 3
new UNRESOLVED: gdb.python/py-nested-maps.exp: verify python support
new UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER - python
new UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER_UNLIMITED - python
new UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb booleanparameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: Throwing gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: check if python 3
new UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value can be set to -1
new UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value is -1 after setting
new UNRESOLVED: gdb.python/py-parameter.exp: enum gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: file gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: gdb.GdbError does not show Python stack
new UNRESOLVED: gdb.python/py-parameter.exp: python print
new UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -1
new UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -5
new UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER_UNLIMITED.value = -5
new UNRESOLVED: gdb.python/py-parameter.exp: set enum to two
new UNRESOLVED: gdb.python/py-parameter.exp: set invalid enum parameter
new UNRESOLVED: gdb.python/py-parameter.exp: set new file parameter
new UNRESOLVED: gdb.python/py-parameter.exp: set test-file-param
new UNRESOLVED: gdb.python/py-parameter.exp: show initial file value
new UNRESOLVED: gdb.python/py-parameter.exp: show new file value
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter is initial value
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter is new value
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter off
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter on
new UNRESOLVED: gdb.python/py-parameter.exp: test enum parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test file parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test general help
new UNRESOLVED: gdb.python/py-parameter.exp: test new file parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test set help
new UNRESOLVED: gdb.python/py-parameter.exp: test show help
new UNRESOLVED: gdb.python/py-parameter.exp: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: verify python support
new UNRESOLVED: gdb.python/py-prettyprint.exp: check if python 3
new UNRESOLVED: gdb.python/py-prettyprint.exp: verify python support
new UNRESOLVED: gdb.python/py-prompt.exp: check if python 3
new UNRESOLVED: gdb.python/py-prompt.exp: verify python support
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sigall-precsave.exp
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sigall-reverse.exp
new UNRESOLVED: gdb.rust/expr.exp: set language rust
new UNRESOLVED: gdb.rust/expr.exp: set var $something = 27
new FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
new FAIL: gdb.server/unittest.exp: unit tests
new UNRESOLVED: gdb.trace/actions.exp: failed to compile
new UNRESOLVED: gdb.trace/ax.exp: failed to compile
new UNRESOLVED: gdb.trace/deltrace.exp: failed to compile
new UNRESOLVED: gdb.trace/infotrace.exp: failed to compile
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with missing argument
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with too many arguments
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with wrong option
new UNRESOLVED: gdb.trace/packetlen.exp: failed to compile
new UNRESOLVED: gdb.trace/passc-dyn.exp: failed to compile
new UNRESOLVED: gdb.trace/passcount.exp: failed to compile
new UNRESOLVED: gdb.trace/report.exp: failed to compile
new UNRESOLVED: gdb.trace/save-trace.exp: failed to compile
new UNRESOLVED: gdb.trace/tfind.exp: failed to compile
new UNRESOLVED: gdb.trace/tracecmd.exp: failed to compile
new UNRESOLVED: gdb.trace/tsv.exp: failed to compile
new UNRESOLVED: gdb.trace/while-dyn.exp: failed to compile
new UNRESOLVED: gdb.trace/while-stepping.exp: failed to compile
new UNRESOLVED: gdb.tui/completion.exp: verify tui support
new UNRESOLVED: gdb.tui/empty.exp: set tui border-kind ascii
new UNRESOLVED: gdb.tui/empty.exp: src: 80x24: box 1
new UNRESOLVED: gdb.tui/empty.exp: verify tui support
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: correct line breaks
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: set height 2000
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: set pagination on
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: tui enable
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: verify tui support
new UNRESOLVED: gdb.xml/maint_print_struct.exp: printing tdesc with a structure and a bitfield
new UNRESOLVED: gdb.xml/maint_print_struct.exp: setting a new tdesc having only a structure
new UNRESOLVED: gdb.xml/tdesc-arch.exp: architecture XML tests
new UNRESOLVED: gdb.xml/tdesc-arch.exp: read default architecture
new UNRESOLVED: gdb.xml/tdesc-arch.exp: read valid architectures
new UNRESOLVED: gdb.xml/tdesc-errors.exp: set tdesc filename gdb.xml/tdesc-bogus.xml
new UNRESOLVED: gdb.xml/tdesc-errors.exp: set tdesc filename gdb.xml/tdesc-unknown.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: cd to directory holding xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: maintenance print reggroups
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $bitfields
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $extrareg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $flags
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $mixed_flags
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $structreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $structreg.v4
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $uintreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $unionreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $unionreg.v4
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $vecreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc file single-reg.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc filename test-extra-regs.xml - from extra-regs.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc filename test-regs.xml - from core-only.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/bad-include.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/includes.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/loop.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-gdbserver-m64/d8/d851ecd373a3764581372b10be5b74c9ee98ae08//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/d8/d851ecd373a3764581372b10be5b74c9ee98ae08//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-06  3:48 [binutils-gdb] libctf, binutils: dump the CTF header gdb-buildbot
@ 2019-10-06  6:05 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-06  6:05 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/853

Author:
        Nick Alcock <nick.alcock@oracle.com>

Commit tested:
        9b32cba44ddeb32251092a05f1238d2462eb2345

Subject of commit:
        libctf, binutils: dump the CTF header

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/9b/9b32cba44ddeb32251092a05f1238d2462eb2345/

*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/O2_float_param.exp: compilation foo.adb
new FAIL: gdb.ada/access_tagged_param.exp: compilation foo.adb
new FAIL: gdb.ada/access_to_unbounded_array.exp: compilation foo.adb
new FAIL: gdb.ada/addr_arith.exp: compilation foo_na07_019.adb
new FAIL: gdb.ada/aliased_array.exp: compilation foo.adb
new FAIL: gdb.ada/arr_acc_idx_w_gap.exp: compilation enum_with_gap_main.adb
new FAIL: gdb.ada/arr_arr.exp: compilation foo.adb
new FAIL: gdb.ada/arr_enum_idx_w_gap.exp: compilation foo_q418_043.adb
new FAIL: gdb.ada/array_bounds.exp: compilation bar.adb
new FAIL: gdb.ada/array_char_idx.exp: compilation foo.adb
new FAIL: gdb.ada/array_of_variable_length.exp: compilation foo.adb
new FAIL: gdb.ada/array_ptr_renaming.exp: compilation foo.adb
new FAIL: gdb.ada/array_return.exp: compilation p.adb
new FAIL: gdb.ada/array_subscript_addr.exp: compilation p.adb
new FAIL: gdb.ada/arraydim.exp: compilation foo.adb
new FAIL: gdb.ada/arrayidx.exp: compilation p.adb
new FAIL: gdb.ada/arrayparam.exp: compilation foo.adb
new FAIL: gdb.ada/arrayptr.exp: compilation foo.adb
new FAIL: gdb.ada/assign_arr.exp: compilation main_p324_051.adb
new FAIL: gdb.ada/atomic_enum.exp: compilation foo.adb
new FAIL: gdb.ada/attr_ref_and_charlit.exp: compilation foo.adb
new FAIL: gdb.ada/bad-task-bp-keyword.exp: compilation foo.adb
new FAIL: gdb.ada/big_packed_array.exp: compilation foo_ra24_010.adb
new FAIL: gdb.ada/bp_c_mixed_case.exp: compilation foo_h731_021.adb
new FAIL: gdb.ada/bp_enum_homonym.exp: compilation p.adb
new FAIL: gdb.ada/bp_fun_addr.exp: compilation bp_fun_addr.adb
new FAIL: gdb.ada/bp_inlined_func.exp: compilation foo.adb
new FAIL: gdb.ada/bp_on_var.exp: compilation foo.adb
new FAIL: gdb.ada/bp_range_type.exp: compilation foo.adb
new FAIL: gdb.ada/bp_reset.exp: compilation foo.adb
new FAIL: gdb.ada/byte_packed_arr.exp: compilation reprod_main.adb
new FAIL: gdb.ada/catch_assert_if.exp: compilation bla.adb
new FAIL: gdb.ada/catch_ex.exp: compilation foo.adb
new FAIL: gdb.ada/char_enum.exp: compilation foo.adb
new FAIL: gdb.ada/char_param.exp: compilation foo.adb
new FAIL: gdb.ada/complete.exp: compilation foo.adb
new FAIL: gdb.ada/cond_lang.exp: compilation a.adb
new FAIL: gdb.ada/dgopt.exp: compilation x.adb
new FAIL: gdb.ada/disc_arr_bound.exp: compilation foo_n612_026.adb
new FAIL: gdb.ada/display_nested.exp: compilation foo.adb
new FAIL: gdb.ada/dyn_arrayidx.exp: compilation foo.adb
new FAIL: gdb.ada/dyn_loc.exp: compilation p.adb
new FAIL: gdb.ada/dyn_stride.exp: compilation foo.adb
new FAIL: gdb.ada/enum_idx_packed.exp: compilation foo.adb
new FAIL: gdb.ada/excep_handle.exp: compilation foo.adb
new FAIL: gdb.ada/expr_delims.exp: compilation foo.adb
new FAIL: gdb.ada/expr_with_funcall.exp: compilation expr_r821_013.adb
new FAIL: gdb.ada/exprs.exp: compilation p.adb
new FAIL: gdb.ada/fin_fun_out.exp: compilation foo_o525_013.adb
new FAIL: gdb.ada/fixed_cmp.exp: compilation fixed.adb
new FAIL: gdb.ada/fixed_points.exp: compilation fixed_points.adb
new FAIL: gdb.ada/float_param.exp: compilation foo.adb
new FAIL: gdb.ada/formatted_ref.exp: compilation formatted_ref.adb
new FAIL: gdb.ada/frame_arg_lang.exp: compilation bla.adb
new FAIL: gdb.ada/frame_args.exp: compilation foo.adb
new FAIL: gdb.ada/fullname_bp.exp: compilation foo.adb
new FAIL: gdb.ada/fun_addr.exp: compilation foo.adb
new FAIL: gdb.ada/fun_in_declare.exp: compilation foo.adb
new FAIL: gdb.ada/fun_overload_menu.exp: compilation foo.adb
new FAIL: gdb.ada/fun_renaming.exp: compilation fun_renaming.adb
new FAIL: gdb.ada/funcall_param.exp: compilation foo.adb
new FAIL: gdb.ada/funcall_ptr.exp: compilation foo.adb
new FAIL: gdb.ada/funcall_ref.exp: compilation foo.adb
new FAIL: gdb.ada/homonym.exp: compilation homonym_main.adb
new FAIL: gdb.ada/info_addr_mixed_case.exp: compilation foo.adb
new FAIL: gdb.ada/info_exc.exp: compilation foo.adb
new FAIL: gdb.ada/info_locals_renaming.exp: compilation foo.adb
new FAIL: gdb.ada/int_deref.exp: compilation foo.adb
new FAIL: gdb.ada/interface.exp: compilation foo.adb
new FAIL: gdb.ada/iwide.exp: compilation p.adb
new FAIL: gdb.ada/lang_switch.exp: compilation lang_switch.adb
new FAIL: gdb.ada/length_cond.exp: compilation length_cond.adb
new FAIL: gdb.ada/maint_with_ada.exp: compilation var_arr_typedef.adb
new FAIL: gdb.ada/mi_catch_assert.exp: compilation bla.adb
new FAIL: gdb.ada/mi_catch_ex_hand.exp: compilation foo.adb
new FAIL: gdb.ada/mi_ex_cond.exp: compilation foo.adb
new FAIL: gdb.ada/mi_exc_info.exp: compilation foo.adb
new FAIL: gdb.ada/mi_interface.exp: compilation foo.adb
new FAIL: gdb.ada/mi_ref_changeable.exp: compilation foo_rb20_056.adb
new FAIL: gdb.ada/mi_string_access.exp: compilation bar.adb
new FAIL: gdb.ada/mi_task_arg.exp: compilation task_switch.adb
new FAIL: gdb.ada/mi_task_info.exp: compilation task_switch.adb
new FAIL: gdb.ada/mi_var_array.exp: compilation bar.adb
new FAIL: gdb.ada/mi_var_union.exp: compilation bar.adb
new FAIL: gdb.ada/mod_from_name.exp: compilation foo.adb
new FAIL: gdb.ada/n_arr_bound.exp: compilation foo.adb
new FAIL: gdb.ada/notcplusplus.exp: compilation foo.adb
new FAIL: gdb.ada/null_array.exp: compilation foo.adb
new FAIL: gdb.ada/null_record.exp: compilation null_record.adb
new FAIL: gdb.ada/operator_bp.exp: compilation ops_test.adb
new FAIL: gdb.ada/optim_drec.exp: compilation foo.adb
new FAIL: gdb.ada/out_of_line_in_inlined.exp: compilation foo_o224_021.adb
new FAIL: gdb.ada/packed_array.exp: compilation pa.adb
new FAIL: gdb.ada/packed_array_assign.exp: compilation tester.adb
new FAIL: gdb.ada/packed_tagged.exp: compilation comp_bug.adb
new FAIL: gdb.ada/pckd_arr_ren.exp: compilation foo.adb
new FAIL: gdb.ada/pckd_neg.exp: compilation foo_o508_021.adb
new FAIL: gdb.ada/pkd_arr_elem.exp: compilation failure.adb
new FAIL: gdb.ada/pp-rec-component.exp: compilation foo.adb
new FAIL: gdb.ada/print_chars.exp: compilation foo.adb
new FAIL: gdb.ada/print_pc.exp: compilation dummy.adb
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: ptype 3 * 2.0
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: ptype 3 / 2.0
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: set lang ada
new FAIL: gdb.ada/ptype_array.exp: compilation foo.adb
new FAIL: gdb.ada/ptype_field.exp: compilation foo.adb
new FAIL: gdb.ada/ptype_tagged_param.exp: compilation foo.adb
new FAIL: gdb.ada/py_range.exp: compilation foo.adb
new FAIL: gdb.ada/py_taft.exp: compilation main.adb
new FAIL: gdb.ada/rdv_wait.exp: compilation foo.adb
new FAIL: gdb.ada/rec_comp.exp: compilation bar_o203_012.adb
new FAIL: gdb.ada/rec_return.exp: compilation foo.adb
new FAIL: gdb.ada/ref_param.exp: compilation foo.adb
new FAIL: gdb.ada/ref_tick_size.exp: compilation p.adb
new FAIL: gdb.ada/repeat_dyn.exp: compilation foo_oc22_002.adb
new FAIL: gdb.ada/same_component_name.exp: compilation foo.adb
new FAIL: gdb.ada/same_enum.exp: compilation a.adb
new FAIL: gdb.ada/scoped_watch.exp: compilation foo_p708_025.adb
new FAIL: gdb.ada/set_pckd_arr_elt.exp: compilation foo.adb
new FAIL: gdb.ada/set_wstr.exp: compilation a.adb
new FAIL: gdb.ada/small_reg_param.exp: compilation foo.adb
new FAIL: gdb.ada/str_binop_equal.exp: compilation foo_p211_061.adb
new FAIL: gdb.ada/str_uninit.exp: compilation parse.adb
new FAIL: gdb.ada/sym_print_name.exp: compilation foo.adb
new FAIL: gdb.ada/taft_type.exp: compilation p.adb
new FAIL: gdb.ada/tagged.exp: compilation foo.adb
new FAIL: gdb.ada/tagged_access.exp: compilation p.adb
new FAIL: gdb.ada/tagged_not_init.exp: compilation foo.adb
new FAIL: gdb.ada/task_bp.exp: compilation foo.adb
new FAIL: gdb.ada/task_switch_in_core.exp: compilation crash.adb
new FAIL: gdb.ada/tasks.exp: compilation foo.adb
new FAIL: gdb.ada/tick_last_segv.exp: compilation foo.adb
new FAIL: gdb.ada/tick_length_array_enum_idx.exp: compilation foo_n207_004.adb
new FAIL: gdb.ada/type_coercion.exp: compilation assign.adb
new FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: compilation foo.adb
new FAIL: gdb.ada/var_arr_attrs.exp: compilation foo_o115_002.adb
new FAIL: gdb.ada/variant_record_packed_array.exp: compilation foo.adb
new FAIL: gdb.ada/varsize_limit.exp: compilation vsizelim.adb
new FAIL: gdb.ada/vla.exp: compilation vla.adb
new FAIL: gdb.ada/watch_minus_l.exp: compilation foo_ra10_006.adb
new FAIL: gdb.ada/whatis_array_val.exp: compilation foo.adb
new FAIL: gdb.ada/widewide.exp: compilation foo.adb
new FAIL: gdb.ada/win_fu_syms.exp: compilation foo.adb
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: set tdesc filename $srcdir/gdb.arch/arc-tdesc-cpu.xml
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: set tdesc filename /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.arch/arc-tdesc-cpu/trivial.xml
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: setting HS architecture
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: .text is readable
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: complete set architecture i386
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: complete set gnutarget
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: load core file
new UNRESOLVED: gdb.base/alias.exp: -a print elements 47
new UNRESOLVED: gdb.base/alias.exp: abbrev -a not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set2 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set3 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set4 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set5 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set6 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: alias -a -- -a = set
new UNRESOLVED: gdb.base/alias.exp: alias -a -- set6 = set
new UNRESOLVED: gdb.base/alias.exp: alias -a set2=set
new UNRESOLVED: gdb.base/alias.exp: alias -a set3= set
new UNRESOLVED: gdb.base/alias.exp: alias -a set4 =set
new UNRESOLVED: gdb.base/alias.exp: alias -a set5 = set
new UNRESOLVED: gdb.base/alias.exp: alias assigne
new UNRESOLVED: gdb.base/alias.exp: alias assigne imprime
new UNRESOLVED: gdb.base/alias.exp: alias assigne imprime limite-elements
new UNRESOLVED: gdb.base/alias.exp: alias foo=bar
new UNRESOLVED: gdb.base/alias.exp: alias set pr elms = set p elem
new UNRESOLVED: gdb.base/alias.exp: alias set print max-elements using assigne imprime
new UNRESOLVED: gdb.base/alias.exp: alias set2=set
new UNRESOLVED: gdb.base/alias.exp: alias spe = set p elem
new UNRESOLVED: gdb.base/alias.exp: assigne imprime elements 53
new UNRESOLVED: gdb.base/alias.exp: assigne imprime limite-elements 54
new UNRESOLVED: gdb.base/alias.exp: assigne imprime prefix not defined
new UNRESOLVED: gdb.base/alias.exp: assigne print elements 52
new UNRESOLVED: gdb.base/alias.exp: help set print
new UNRESOLVED: gdb.base/alias.exp: mismatched length
new UNRESOLVED: gdb.base/alias.exp: mismatched prefix
new UNRESOLVED: gdb.base/alias.exp: set imprime elements 55
new UNRESOLVED: gdb.base/alias.exp: set imprime prefix not defined
new UNRESOLVED: gdb.base/alias.exp: set pr elms 51
new UNRESOLVED: gdb.base/alias.exp: set print limite-elements 56
new UNRESOLVED: gdb.base/alias.exp: set print max-elements 57
new UNRESOLVED: gdb.base/alias.exp: set2 print elements 42
new UNRESOLVED: gdb.base/alias.exp: set3 print elements 43
new UNRESOLVED: gdb.base/alias.exp: set4 print elements 44
new UNRESOLVED: gdb.base/alias.exp: set5 print elements 45
new UNRESOLVED: gdb.base/alias.exp: set6 print elements 46
new UNRESOLVED: gdb.base/alias.exp: spe 50
new UNRESOLVED: gdb.base/alias.exp: verify -a
new UNRESOLVED: gdb.base/alias.exp: verify 52
new UNRESOLVED: gdb.base/alias.exp: verify 53
new UNRESOLVED: gdb.base/alias.exp: verify 54
new UNRESOLVED: gdb.base/alias.exp: verify 55
new UNRESOLVED: gdb.base/alias.exp: verify 56
new UNRESOLVED: gdb.base/alias.exp: verify 57
new UNRESOLVED: gdb.base/alias.exp: verify set pr elms
new UNRESOLVED: gdb.base/alias.exp: verify set2
new UNRESOLVED: gdb.base/alias.exp: verify set3
new UNRESOLVED: gdb.base/alias.exp: verify set4
new UNRESOLVED: gdb.base/alias.exp: verify set5
new UNRESOLVED: gdb.base/alias.exp: verify set6
new UNRESOLVED: gdb.base/alias.exp: verify spe
new FAIL: gdb.base/all-architectures-0.exp: all passed
new FAIL: gdb.base/all-architectures-0.exp: at least one architecture
new FAIL: gdb.base/all-architectures-0.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-0.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-0.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-0.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-1.exp: all passed
new FAIL: gdb.base/all-architectures-1.exp: at least one architecture
new FAIL: gdb.base/all-architectures-1.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-1.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-1.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-1.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-2.exp: all passed
new FAIL: gdb.base/all-architectures-2.exp: at least one architecture
new FAIL: gdb.base/all-architectures-2.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-2.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-2.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-2.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-3.exp: all passed
new FAIL: gdb.base/all-architectures-3.exp: at least one architecture
new FAIL: gdb.base/all-architectures-3.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-3.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-3.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-3.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-4.exp: all passed
new FAIL: gdb.base/all-architectures-4.exp: at least one architecture
new FAIL: gdb.base/all-architectures-4.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-4.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-4.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-4.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-5.exp: all passed
new FAIL: gdb.base/all-architectures-5.exp: at least one architecture
new FAIL: gdb.base/all-architectures-5.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-5.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-5.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-5.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-6.exp: all passed
new FAIL: gdb.base/all-architectures-6.exp: at least one architecture
new FAIL: gdb.base/all-architectures-6.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-6.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-7.exp: all passed
new FAIL: gdb.base/all-architectures-7.exp: at least one architecture
new FAIL: gdb.base/all-architectures-7.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-7.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-7.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-7.exp: set max-completions unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: break main
new UNRESOLVED: gdb.base/argv0-symlink.exp: p argc
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print elements 200
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print elements unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print repeats 200
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print repeats unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: show print elements
new UNRESOLVED: gdb.base/argv0-symlink.exp: show print repeats
new UNRESOLVED: gdb.base/bad-file.exp: directory
new UNRESOLVED: gdb.base/bad-file.exp: neither file nor directory
new UNRESOLVED: gdb.base/bad-file.exp: non-existent file
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "info source": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "set not-a-thing 4" -x good-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "set not-a-thing 4": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -jslkflsdjlkfjlksdjf: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x bad-commands -ex "info source": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x bad-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands -ex "set not-a-thing 4": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands -x bad-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch: spawn
new UNRESOLVED: gdb.base/bitops.exp: print value of !0
new UNRESOLVED: gdb.base/bitops.exp: print value of !1
new UNRESOLVED: gdb.base/bitops.exp: print value of !10
new UNRESOLVED: gdb.base/bitops.exp: print value of !100
new UNRESOLVED: gdb.base/bitops.exp: print value of !1000
new UNRESOLVED: gdb.base/bitops.exp: print value of !2
new UNRESOLVED: gdb.base/bitops.exp: print value of
new UNRESOLVED: gdb.base/bitops.exp: print value of -!0
new UNRESOLVED: gdb.base/bitops.exp: print value of -1 < 0 > 1
new UNRESOLVED: gdb.base/bitops.exp: print value of -3>4
new UNRESOLVED: gdb.base/bitops.exp: print value of 0 == 8 > 128 >> 1 + 2 * 2
new UNRESOLVED: gdb.base/bitops.exp: print value of 0 || 1 && 0 | 0 ^ 0 == 8
new UNRESOLVED: gdb.base/bitops.exp: print value of 0 || 1 && 0 | 0 ^ 0 == 8 > 128 >>1 +2 *2
new UNRESOLVED: gdb.base/bitops.exp: print value of 0.0 || 0
new UNRESOLVED: gdb.base/bitops.exp: print value of 0.0 || 1.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 1.0 || 0
new UNRESOLVED: gdb.base/bitops.exp: print value of 10 & 5
new UNRESOLVED: gdb.base/bitops.exp: print value of 10 ^ 5
new UNRESOLVED: gdb.base/bitops.exp: print value of 10 | 5
new UNRESOLVED: gdb.base/bitops.exp: print value of 15 ^ 10 ^ 5 ^ 7
new UNRESOLVED: gdb.base/bitops.exp: print value of 2 > -3
new UNRESOLVED: gdb.base/bitops.exp: print value of 3 * 2 / 4.0 * 2.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3!=3.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3!=5.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3.5 < -4.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3.5 < 4.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3==3.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3==4.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3>=2.5
new UNRESOLVED: gdb.base/bitops.exp: print value of 3>=4.5
new UNRESOLVED: gdb.base/bitops.exp: print value of 8 << 2 >> 4
new UNRESOLVED: gdb.base/bitops.exp: print value of ~-!0
new UNRESOLVED: gdb.base/command-line-input.exp: print 1\\n + 2
new UNRESOLVED: gdb.base/command-line-input.exp: print 1\\n2
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: cmd complete ""
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: set max-completions 1
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: show editing
new UNRESOLVED: gdb.base/complete-empty.exp: show editing
new UNRESOLVED: gdb.base/default.exp:
new UNRESOLVED: gdb.base/default.exp: add-symbol-file
new UNRESOLVED: gdb.base/default.exp: append
new UNRESOLVED: gdb.base/default.exp: append binary
new UNRESOLVED: gdb.base/default.exp: append binary memory
new UNRESOLVED: gdb.base/default.exp: append binary value
new UNRESOLVED: gdb.base/default.exp: append memory
new UNRESOLVED: gdb.base/default.exp: append value
new UNRESOLVED: gdb.base/default.exp: call
new UNRESOLVED: gdb.base/default.exp: catch
new UNRESOLVED: gdb.base/default.exp: cd
new UNRESOLVED: gdb.base/default.exp: check if python 3
new UNRESOLVED: gdb.base/default.exp: clear
new UNRESOLVED: gdb.base/default.exp: commands
new UNRESOLVED: gdb.base/default.exp: condition
new UNRESOLVED: gdb.base/default.exp: continue
new UNRESOLVED: gdb.base/default.exp: continue "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: core-file
new UNRESOLVED: gdb.base/default.exp: define
new UNRESOLVED: gdb.base/default.exp: delete
new UNRESOLVED: gdb.base/default.exp: delete "d" abbreviation
new UNRESOLVED: gdb.base/default.exp: delete breakpoints
new UNRESOLVED: gdb.base/default.exp: delete display prompt
new UNRESOLVED: gdb.base/default.exp: detach
new UNRESOLVED: gdb.base/default.exp: directory prompt
new UNRESOLVED: gdb.base/default.exp: disable
new UNRESOLVED: gdb.base/default.exp: disable "dis" abbreviation
new UNRESOLVED: gdb.base/default.exp: disable "disa" abbreviation
new UNRESOLVED: gdb.base/default.exp: disable breakpoints
new UNRESOLVED: gdb.base/default.exp: disable display
new UNRESOLVED: gdb.base/default.exp: disassemble
new UNRESOLVED: gdb.base/default.exp: display
new UNRESOLVED: gdb.base/default.exp: do
new UNRESOLVED: gdb.base/default.exp: document
new UNRESOLVED: gdb.base/default.exp: down
new UNRESOLVED: gdb.base/default.exp: down-silently
new UNRESOLVED: gdb.base/default.exp: dump
new UNRESOLVED: gdb.base/default.exp: dump binary
new UNRESOLVED: gdb.base/default.exp: dump binary memory
new UNRESOLVED: gdb.base/default.exp: dump binary value
new UNRESOLVED: gdb.base/default.exp: dump ihex
new UNRESOLVED: gdb.base/default.exp: dump ihex memory
new UNRESOLVED: gdb.base/default.exp: dump ihex value
new UNRESOLVED: gdb.base/default.exp: dump memory
new UNRESOLVED: gdb.base/default.exp: dump srec
new UNRESOLVED: gdb.base/default.exp: dump srec memory
new UNRESOLVED: gdb.base/default.exp: dump srec value
new UNRESOLVED: gdb.base/default.exp: dump tekhex
new UNRESOLVED: gdb.base/default.exp: dump tekhex memory
new UNRESOLVED: gdb.base/default.exp: dump tekhex value
new UNRESOLVED: gdb.base/default.exp: dump value
new UNRESOLVED: gdb.base/default.exp: echo
new UNRESOLVED: gdb.base/default.exp: enable
new UNRESOLVED: gdb.base/default.exp: enable breakpoints
new UNRESOLVED: gdb.base/default.exp: enable breakpoints delete
new UNRESOLVED: gdb.base/default.exp: enable breakpoints once
new UNRESOLVED: gdb.base/default.exp: enable delete
new UNRESOLVED: gdb.base/default.exp: enable display
new UNRESOLVED: gdb.base/default.exp: enable once
new UNRESOLVED: gdb.base/default.exp: fg
new UNRESOLVED: gdb.base/default.exp: finish
new UNRESOLVED: gdb.base/default.exp: forward-search
new UNRESOLVED: gdb.base/default.exp: frame
new UNRESOLVED: gdb.base/default.exp: frame "f" abbreviation
new UNRESOLVED: gdb.base/default.exp: gcore
new UNRESOLVED: gdb.base/default.exp: generate-core-file
new UNRESOLVED: gdb.base/default.exp: handle
new UNRESOLVED: gdb.base/default.exp: help
new UNRESOLVED: gdb.base/default.exp: help "h" abbreviation
new UNRESOLVED: gdb.base/default.exp: ignore
new UNRESOLVED: gdb.base/default.exp: info
new UNRESOLVED: gdb.base/default.exp: info "i" abbreviation
new UNRESOLVED: gdb.base/default.exp: info address
new UNRESOLVED: gdb.base/default.exp: info all-registers
new UNRESOLVED: gdb.base/default.exp: info args
new UNRESOLVED: gdb.base/default.exp: info bogus-gdb-command
new UNRESOLVED: gdb.base/default.exp: info breakpoints
new UNRESOLVED: gdb.base/default.exp: info copying
new UNRESOLVED: gdb.base/default.exp: info display
new UNRESOLVED: gdb.base/default.exp: info files
new UNRESOLVED: gdb.base/default.exp: info float
new UNRESOLVED: gdb.base/default.exp: info frame
new UNRESOLVED: gdb.base/default.exp: info frame "f" abbreviation
new UNRESOLVED: gdb.base/default.exp: info functions
new UNRESOLVED: gdb.base/default.exp: info locals
new UNRESOLVED: gdb.base/default.exp: info program
new UNRESOLVED: gdb.base/default.exp: info registers
new UNRESOLVED: gdb.base/default.exp: info set
new UNRESOLVED: gdb.base/default.exp: info source
new UNRESOLVED: gdb.base/default.exp: info sources
new UNRESOLVED: gdb.base/default.exp: info stack
new UNRESOLVED: gdb.base/default.exp: info stack "s" abbreviation
new UNRESOLVED: gdb.base/default.exp: info symbol
new UNRESOLVED: gdb.base/default.exp: info target
new UNRESOLVED: gdb.base/default.exp: info terminal
new UNRESOLVED: gdb.base/default.exp: info threads
new UNRESOLVED: gdb.base/default.exp: info types
new UNRESOLVED: gdb.base/default.exp: info variables
new UNRESOLVED: gdb.base/default.exp: info vector
new UNRESOLVED: gdb.base/default.exp: info warranty
new UNRESOLVED: gdb.base/default.exp: info watchpoints
new UNRESOLVED: gdb.base/default.exp: inspect
new UNRESOLVED: gdb.base/default.exp: jump
new UNRESOLVED: gdb.base/default.exp: kill
new UNRESOLVED: gdb.base/default.exp: list
new UNRESOLVED: gdb.base/default.exp: list "l" abbreviation
new UNRESOLVED: gdb.base/default.exp: load
new UNRESOLVED: gdb.base/default.exp: next
new UNRESOLVED: gdb.base/default.exp: next "n" abbreviation
new UNRESOLVED: gdb.base/default.exp: nexti
new UNRESOLVED: gdb.base/default.exp: nexti "ni" abbreviation
new UNRESOLVED: gdb.base/default.exp: output
new UNRESOLVED: gdb.base/default.exp: overlay
new UNRESOLVED: gdb.base/default.exp: overlay auto
new UNRESOLVED: gdb.base/default.exp: overlay list
new UNRESOLVED: gdb.base/default.exp: overlay manual #1
new UNRESOLVED: gdb.base/default.exp: overlay manual #2
new UNRESOLVED: gdb.base/default.exp: overlay map #1
new UNRESOLVED: gdb.base/default.exp: overlay map #2
new UNRESOLVED: gdb.base/default.exp: overlay off
new UNRESOLVED: gdb.base/default.exp: overlay on
new UNRESOLVED: gdb.base/default.exp: overlay unmap #1
new UNRESOLVED: gdb.base/default.exp: overlay unmap #2
new UNRESOLVED: gdb.base/default.exp: print
new UNRESOLVED: gdb.base/default.exp: print "p" abbreviation
new UNRESOLVED: gdb.base/default.exp: printf
new UNRESOLVED: gdb.base/default.exp: ptype
new UNRESOLVED: gdb.base/default.exp: pwd
new UNRESOLVED: gdb.base/default.exp: rbreak
new UNRESOLVED: gdb.base/default.exp: restore
new UNRESOLVED: gdb.base/default.exp: return
new UNRESOLVED: gdb.base/default.exp: reverse-search
new UNRESOLVED: gdb.base/default.exp: search
new UNRESOLVED: gdb.base/default.exp: section
new UNRESOLVED: gdb.base/default.exp: set
new UNRESOLVED: gdb.base/default.exp: set annotate
new UNRESOLVED: gdb.base/default.exp: set args
new UNRESOLVED: gdb.base/default.exp: set check "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check "ch" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check "check" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check range
new UNRESOLVED: gdb.base/default.exp: set check type
new UNRESOLVED: gdb.base/default.exp: set complaints
new UNRESOLVED: gdb.base/default.exp: set confirm
new UNRESOLVED: gdb.base/default.exp: set environment
new UNRESOLVED: gdb.base/default.exp: set height
new UNRESOLVED: gdb.base/default.exp: set history
new UNRESOLVED: gdb.base/default.exp: set history expansion
new UNRESOLVED: gdb.base/default.exp: set history filename
new UNRESOLVED: gdb.base/default.exp: set history save
new UNRESOLVED: gdb.base/default.exp: set history save off
new UNRESOLVED: gdb.base/default.exp: set history size
new UNRESOLVED: gdb.base/default.exp: set language
new UNRESOLVED: gdb.base/default.exp: set listsize
new UNRESOLVED: gdb.base/default.exp: set print
new UNRESOLVED: gdb.base/default.exp: set print "p" abbreviation
new UNRESOLVED: gdb.base/default.exp: set print "pr" abbreviation
new UNRESOLVED: gdb.base/default.exp: set print address
new UNRESOLVED: gdb.base/default.exp: set print array
new UNRESOLVED: gdb.base/default.exp: set print asm-demangle
new UNRESOLVED: gdb.base/default.exp: set print demangle
new UNRESOLVED: gdb.base/default.exp: set print elements
new UNRESOLVED: gdb.base/default.exp: set print object
new UNRESOLVED: gdb.base/default.exp: set print pretty
new UNRESOLVED: gdb.base/default.exp: set print sevenbit-strings
new UNRESOLVED: gdb.base/default.exp: set print union
new UNRESOLVED: gdb.base/default.exp: set print vtbl
new UNRESOLVED: gdb.base/default.exp: set radix
new UNRESOLVED: gdb.base/default.exp: set the history filename
new UNRESOLVED: gdb.base/default.exp: set variable
new UNRESOLVED: gdb.base/default.exp: set verbose
new UNRESOLVED: gdb.base/default.exp: set width
new UNRESOLVED: gdb.base/default.exp: set write
new UNRESOLVED: gdb.base/default.exp: shell echo Hi dad!
new UNRESOLVED: gdb.base/default.exp: show
new UNRESOLVED: gdb.base/default.exp: show annotate
new UNRESOLVED: gdb.base/default.exp: show args
new UNRESOLVED: gdb.base/default.exp: show check "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check "ch" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check "check" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check range
new UNRESOLVED: gdb.base/default.exp: show check type
new UNRESOLVED: gdb.base/default.exp: show commands
new UNRESOLVED: gdb.base/default.exp: show complaints
new UNRESOLVED: gdb.base/default.exp: show confirm
new UNRESOLVED: gdb.base/default.exp: show convenience
new UNRESOLVED: gdb.base/default.exp: show directories
new UNRESOLVED: gdb.base/default.exp: show editing
new UNRESOLVED: gdb.base/default.exp: show height
new UNRESOLVED: gdb.base/default.exp: show history
new UNRESOLVED: gdb.base/default.exp: show history expansion
new UNRESOLVED: gdb.base/default.exp: show history filename
new UNRESOLVED: gdb.base/default.exp: show history save
new UNRESOLVED: gdb.base/default.exp: show history size
new UNRESOLVED: gdb.base/default.exp: show language
new UNRESOLVED: gdb.base/default.exp: show listsize
new UNRESOLVED: gdb.base/default.exp: show p
new UNRESOLVED: gdb.base/default.exp: show paths
new UNRESOLVED: gdb.base/default.exp: show pr
new UNRESOLVED: gdb.base/default.exp: show print
new UNRESOLVED: gdb.base/default.exp: show print address
new UNRESOLVED: gdb.base/default.exp: show print array
new UNRESOLVED: gdb.base/default.exp: show print asm-demangle
new UNRESOLVED: gdb.base/default.exp: show print demangle
new UNRESOLVED: gdb.base/default.exp: show print elements
new UNRESOLVED: gdb.base/default.exp: show print object
new UNRESOLVED: gdb.base/default.exp: show print pretty
new UNRESOLVED: gdb.base/default.exp: show print sevenbit-strings
new UNRESOLVED: gdb.base/default.exp: show print union
new UNRESOLVED: gdb.base/default.exp: show print vtbl
new UNRESOLVED: gdb.base/default.exp: show prompt
new UNRESOLVED: gdb.base/default.exp: show radix
new UNRESOLVED: gdb.base/default.exp: show user
new UNRESOLVED: gdb.base/default.exp: show values
new UNRESOLVED: gdb.base/default.exp: show verbose
new UNRESOLVED: gdb.base/default.exp: show version
new UNRESOLVED: gdb.base/default.exp: show width
new UNRESOLVED: gdb.base/default.exp: show write
new UNRESOLVED: gdb.base/default.exp: signal
new UNRESOLVED: gdb.base/default.exp: source
new UNRESOLVED: gdb.base/default.exp: step "s" abbreviation #1
new UNRESOLVED: gdb.base/default.exp: step "s" abbreviation #2
new UNRESOLVED: gdb.base/default.exp: step #1
new UNRESOLVED: gdb.base/default.exp: step #2
new UNRESOLVED: gdb.base/default.exp: stepi
new UNRESOLVED: gdb.base/default.exp: stepi "si" abbreviation
new UNRESOLVED: gdb.base/default.exp: symbol-file
new UNRESOLVED: gdb.base/default.exp: target
new UNRESOLVED: gdb.base/default.exp: target native
new UNRESOLVED: gdb.base/default.exp: tbreak
new UNRESOLVED: gdb.base/default.exp: thread
new UNRESOLVED: gdb.base/default.exp: thread apply
new UNRESOLVED: gdb.base/default.exp: thread find
new UNRESOLVED: gdb.base/default.exp: thread name
new UNRESOLVED: gdb.base/default.exp: undisplay prompt
new UNRESOLVED: gdb.base/default.exp: unset
new UNRESOLVED: gdb.base/default.exp: unset environment prompt
new UNRESOLVED: gdb.base/default.exp: until
new UNRESOLVED: gdb.base/default.exp: until "u" abbreviation
new UNRESOLVED: gdb.base/default.exp: up-silently
new UNRESOLVED: gdb.base/default.exp: verify python support
new UNRESOLVED: gdb.base/default.exp: watch
new UNRESOLVED: gdb.base/default.exp: whatis
new UNRESOLVED: gdb.base/default.exp: where
new UNRESOLVED: gdb.base/default.exp: x
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567890123456789012345678901234dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567890123456dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567890123456.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567890123456789012345678901234.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567890123456789012345678901234dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567890123456dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E384dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E6144dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E96df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2147483648ll
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2147483648ull
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2ll
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 4294967296ull
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd < 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd < 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df + 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df + 1.2f
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df < 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df < 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df > 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl < 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl < 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl > 2
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd * 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd + 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd - 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd / 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df * 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df + 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df - 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df / 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl * 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl + 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl - 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl / 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567890123456.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567890123456789012345678901234.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 + 1.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 > 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 > 3.1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.1dd + 2.7df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.1df + 2.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.3dd + 2.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.3dl + 2.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.6df + 2.7dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.6dl + 2.7df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 3 + 2.1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 1.2df + 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2 + 1.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dd + 2.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dd + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dl + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 3 + 2.1dl
new UNRESOLVED: gdb.base/echo.exp: echo test
new UNRESOLVED: gdb.base/empty_exe.exp: file ''
new UNRESOLVED: gdb.base/empty_exe.exp: print 1
new UNRESOLVED: gdb.base/endian.exp: auto target endianness
new UNRESOLVED: gdb.base/endian.exp: auto target endianness big
new UNRESOLVED: gdb.base/endian.exp: auto target endianness little
new UNRESOLVED: gdb.base/endian.exp: default target endianness
new UNRESOLVED: gdb.base/endian.exp: get target endianness
new FAIL: gdb.base/endian.exp: override auto target endianness big
new FAIL: gdb.base/endian.exp: override auto target endianness little
new UNRESOLVED: gdb.base/endian.exp: override target endianness big
new FAIL: gdb.base/endian.exp: override target endianness little
new UNRESOLVED: gdb.base/endian.exp: previously big default executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously big default no executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously little default executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously little default no executable endianness
new UNRESOLVED: gdb.base/endian.exp: set target endianness
new UNRESOLVED: gdb.base/endian.exp: set target endianness big
new UNRESOLVED: gdb.base/endian.exp: set target endianness little
new UNRESOLVED: gdb.base/environ.exp: all environment variables have been unset
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable previously undefined
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable using = syntax
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable with trailing equals
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable with trailing whitespace
new UNRESOLVED: gdb.base/environ.exp: confirm unset environment variable worked
new UNRESOLVED: gdb.base/environ.exp: set environment variable
new UNRESOLVED: gdb.base/environ.exp: set environment variable previously undefined
new UNRESOLVED: gdb.base/environ.exp: set environment variable to null value
new UNRESOLVED: gdb.base/environ.exp: set environment variable using = syntax
new UNRESOLVED: gdb.base/environ.exp: set environment variable with trailing equals
new UNRESOLVED: gdb.base/environ.exp: set environment variable with trailing whitespace
new UNRESOLVED: gdb.base/environ.exp: set environment without arguments
new UNRESOLVED: gdb.base/environ.exp: set environment without variable name
new UNRESOLVED: gdb.base/environ.exp: set path works properly
new UNRESOLVED: gdb.base/environ.exp: show environment works
new UNRESOLVED: gdb.base/environ.exp: show non-existent environment variable
new UNRESOLVED: gdb.base/environ.exp: show null environment variable
new UNRESOLVED: gdb.base/environ.exp: show paths works properly
new UNRESOLVED: gdb.base/environ.exp: unset all environment variables
new UNRESOLVED: gdb.base/environ.exp: unset environment variable
new UNRESOLVED: gdb.base/eval.exp: first eval.
new UNRESOLVED: gdb.base/eval.exp: initialize $a.
new UNRESOLVED: gdb.base/eval.exp: second eval.
new UNRESOLVED: gdb.base/gdb1056.exp: print 1/0
new UNRESOLVED: gdb.base/gdb1056.exp: test unsigned division by zero
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize= 20 : show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize= 20 : show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5ab: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5ab: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=0: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=0: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=10zab: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=10zab: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=20: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=20: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=50: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=50: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=99999999999999999999999999999999999: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=99999999999999999999999999999999999: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=not_an_integer: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=not_an_integer: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=1000: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=1000: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=foo: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=foo: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/zero: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/zero: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: appending: server show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: creating: server show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: print 1
new UNRESOLVED: gdb.base/help.exp: apropos \
new UNRESOLVED: gdb.base/help.exp: apropos apropos
new UNRESOLVED: gdb.base/help.exp: apropos handle signal
new UNRESOLVED: gdb.base/help.exp: disable pagination
new UNRESOLVED: gdb.base/help.exp: help aliases
new UNRESOLVED: gdb.base/help.exp: help backtrace
new UNRESOLVED: gdb.base/help.exp: help backtrace "bt" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "b" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "br" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "bre" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "brea" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "break" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoints
new UNRESOLVED: gdb.base/help.exp: help commands
new UNRESOLVED: gdb.base/help.exp: help data
new UNRESOLVED: gdb.base/help.exp: help delete
new UNRESOLVED: gdb.base/help.exp: help delete "d" abbreviation
new UNRESOLVED: gdb.base/help.exp: help files
new UNRESOLVED: gdb.base/help.exp: help gotcha
new UNRESOLVED: gdb.base/help.exp: help help
new UNRESOLVED: gdb.base/help.exp: help help "h" abbreviation
new UNRESOLVED: gdb.base/help.exp: help info bogus-gdb-command
new UNRESOLVED: gdb.base/help.exp: help internals
new UNRESOLVED: gdb.base/help.exp: help obscure
new UNRESOLVED: gdb.base/help.exp: help running
new UNRESOLVED: gdb.base/help.exp: help show commands
new UNRESOLVED: gdb.base/help.exp: help show confirm
new UNRESOLVED: gdb.base/help.exp: help show copying
new UNRESOLVED: gdb.base/help.exp: help show warranty
new UNRESOLVED: gdb.base/help.exp: help stack
new UNRESOLVED: gdb.base/help.exp: help status
new UNRESOLVED: gdb.base/help.exp: help support
new UNRESOLVED: gdb.base/help.exp: help tracepoints
new UNRESOLVED: gdb.base/help.exp: help user-defined
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: set history remove-duplicates 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: set history remove-duplicates 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: set history remove-duplicates 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 3
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 4
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 3
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 4
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: set history remove-duplicates unlimited
new UNRESOLVED: gdb.base/history-duplicates.exp: show editing
new UNRESOLVED: gdb.base/history-duplicates.exp: show history remove-duplicates
new UNRESOLVED: gdb.base/ifelse.exp: call original define
new UNRESOLVED: gdb.base/ifelse.exp: call replacement define
new UNRESOLVED: gdb.base/ifelse.exp: create define with empty else
new UNRESOLVED: gdb.base/ifelse.exp: if 0 .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 0 with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 1 .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 1 with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #1
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #2
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #3
new UNRESOLVED: gdb.base/ifelse.exp: replace define with if .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: set confirm off
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tc-td: 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-tc-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ts: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tf: 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-tf-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-ts: 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-ti-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tl-td: 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-tl-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-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-td: 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-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tld: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tll-tf: 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-td: 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-ts-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ts: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tc-td: 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-tc-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-ts: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tf: 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-tf-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-ts: 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-ti-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tl-td: 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-tl-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-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-td: 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-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tld: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tll-tf: 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-td: 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-ts-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ts: failed to compile
new FAIL: gdb.base/info-os.exp: cannot compile test program
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode on
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode on
new UNRESOLVED: gdb.base/interact.exp: show interactive-mode
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode on
new UNRESOLVED: gdb.base/multi-line-starts-subshell.exp: gdb input still works
new UNRESOLVED: gdb.base/multi-line-starts-subshell.exp: spawn subshell from multi-line
new UNRESOLVED: gdb.base/osabi.exp: set debug arch 1
new UNRESOLVED: gdb.base/osabi.exp: set osabi none
new UNRESOLVED: gdb.base/page.exp: paged count
new UNRESOLVED: gdb.base/page.exp: paged count for interrupt
new UNRESOLVED: gdb.base/page.exp: paged count remainder
new UNRESOLVED: gdb.base/page.exp: paged help
new UNRESOLVED: gdb.base/page.exp: pagination is off
new UNRESOLVED: gdb.base/page.exp: pagination is on
new UNRESOLVED: gdb.base/page.exp: q
new UNRESOLVED: gdb.base/page.exp: quit while paging
new UNRESOLVED: gdb.base/page.exp: set editing off
new UNRESOLVED: gdb.base/page.exp: set height -1
new UNRESOLVED: gdb.base/page.exp: set height 10
new UNRESOLVED: gdb.base/page.exp: set height 5
new UNRESOLVED: gdb.base/page.exp: set pagination off
new UNRESOLVED: gdb.base/page.exp: set pagination on
new UNRESOLVED: gdb.base/page.exp: set width -1
new UNRESOLVED: gdb.base/page.exp: set width 30
new UNRESOLVED: gdb.base/page.exp: size=0: set height 0
new UNRESOLVED: gdb.base/page.exp: size=0: set height 200
new UNRESOLVED: gdb.base/page.exp: size=0: set width 0
new UNRESOLVED: gdb.base/page.exp: size=0: set width 200
new UNRESOLVED: gdb.base/page.exp: size=0: show height
new UNRESOLVED: gdb.base/page.exp: size=0: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=0: show width
new UNRESOLVED: gdb.base/page.exp: size=0: show width unlimited
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set height 0x80000000
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set height 200
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set width 0x80000000
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set width 200
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show height
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show width
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show width unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set height 200
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set height unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set width 200
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set width unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show height
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show width
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show width unlimited
new UNRESOLVED: gdb.base/page.exp: unpaged help
new UNRESOLVED: gdb.base/quit.exp: quit with expression
new UNRESOLVED: gdb.base/quit.exp: quit with syntax error
new UNRESOLVED: gdb.base/radix.exp: Output radix unchanged after rejecting 0
new UNRESOLVED: gdb.base/radix.exp: Reject input-radix 0
new UNRESOLVED: gdb.base/radix.exp: Reject input-radix 1
new UNRESOLVED: gdb.base/radix.exp: Reject output-radix 0
new UNRESOLVED: gdb.base/radix.exp: Reject output-radix 1
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 10
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 16
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 2
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 3
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 8
new UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 10
new UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 16
new UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 8
new UNRESOLVED: gdb.base/radix.exp: input radix unchanged after rejecting 0
new UNRESOLVED: gdb.base/radix.exp: input radix unchanged after rejecting 1
new UNRESOLVED: gdb.base/radix.exp: output radix unchanged after rejecting 1
new UNRESOLVED: gdb.base/radix.exp: output radix unchanged after rejection through set radix command
new UNRESOLVED: gdb.base/radix.exp: print
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -100; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -256; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -4; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -64; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -9; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -101; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -10; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -257; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -5; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -65; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -10; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -16; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -2; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -3; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -8; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -11; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -17; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -3; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -4; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -9; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -12; expect -12; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -20; expect -16; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -2; expect Invalid number "2"\.; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -9; expect Invalid number "9".; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 010; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 17; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect f; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 100; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 100; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 144; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 256; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 4; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 64; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 64; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 9; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 10101; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 21; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 4161; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 65793; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 91; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 101; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 10; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 257; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 5; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 65; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 10; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 10; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 12; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 16; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 2; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 3; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 8; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10; expect a; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 11; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 17; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 3; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 4; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 9; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 14; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 24; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20; expect 16; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20; expect 6; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 2; expect 2; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 30; expect Invalid number "30"\.; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 3; expect Invalid number "3"\.; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 4; expect Invalid number "4"\.; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 8; expect Invalid number "8".; input radix 8
new UNRESOLVED: gdb.base/radix.exp: reset radices
new UNRESOLVED: gdb.base/radix.exp: set input-radix 10
new UNRESOLVED: gdb.base/radix.exp: set input-radix 16
new UNRESOLVED: gdb.base/radix.exp: set input-radix 2
new UNRESOLVED: gdb.base/radix.exp: set input-radix 3
new UNRESOLVED: gdb.base/radix.exp: set input-radix 8
new UNRESOLVED: gdb.base/radix.exp: set output-radix 10
new UNRESOLVED: gdb.base/radix.exp: set output-radix 16
new UNRESOLVED: gdb.base/radix.exp: set output-radix 8
new UNRESOLVED: gdb.base/radix.exp: set radix 7 rejected
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 10
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 16
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 2
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 3
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 8
new UNRESOLVED: gdb.base/radix.exp: show radix, output radix 10
new UNRESOLVED: gdb.base/radix.exp: show radix, output radix 16
new UNRESOLVED: gdb.base/radix.exp: show radix, output radix 8
new UNRESOLVED: gdb.base/readline.exp: Simple operate-and-get-next - send p 1
new UNRESOLVED: gdb.base/readline.exp: arrow keys with secondary prompt
new UNRESOLVED: gdb.base/readline.exp: operate-and-get-next with secondary prompt - send if 1 > 0
new UNRESOLVED: gdb.base/readline.exp: print 42
new UNRESOLVED: gdb.base/readline.exp: show editing
new UNRESOLVED: gdb.base/remotetimeout.exp: correct remotetimeout printed
new UNRESOLVED: gdb.base/shell.exp: ! echo foo
new UNRESOLVED: gdb.base/shell.exp: ! exit 0
new UNRESOLVED: gdb.base/shell.exp: ! exit 1
new UNRESOLVED: gdb.base/shell.exp: ! kill -2 $$
new UNRESOLVED: gdb.base/shell.exp: !echo foo
new UNRESOLVED: gdb.base/shell.exp: -d spaces value missing
new UNRESOLVED: gdb.base/shell.exp: -d value missing
new UNRESOLVED: gdb.base/shell.exp: DELIM delimiter missing
new UNRESOLVED: gdb.base/shell.exp: SHELL_COMMAND missing
new UNRESOLVED: gdb.base/shell.exp: SHELL_COMMAND missing with delimiter
new UNRESOLVED: gdb.base/shell.exp: all missing
new UNRESOLVED: gdb.base/shell.exp: alternate 1char delim
new UNRESOLVED: gdb.base/shell.exp: alternate 1char delim, no space
new UNRESOLVED: gdb.base/shell.exp: alternate 3char delim
new UNRESOLVED: gdb.base/shell.exp: alternate 3char delim, no space
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe print 1 | "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| print 1 | "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|print 1 | "
new UNRESOLVED: gdb.base/shell.exp: define foo
new UNRESOLVED: gdb.base/shell.exp: delimiter missing due to missing space
new UNRESOLVED: gdb.base/shell.exp: double pipe
new UNRESOLVED: gdb.base/shell.exp: double pipe, pipe char
new UNRESOLVED: gdb.base/shell.exp: echo coucou
new UNRESOLVED: gdb.base/shell.exp: enter commands
new UNRESOLVED: gdb.base/shell.exp: no space around pipe char
new UNRESOLVED: gdb.base/shell.exp: pipe fail exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe fail exitsignal
new UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitsignal
new UNRESOLVED: gdb.base/shell.exp: pipe success exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe success exitsignal
new UNRESOLVED: gdb.base/shell.exp: repeat previous command
new UNRESOLVED: gdb.base/shell.exp: set max-completions 0
new UNRESOLVED: gdb.base/shell.exp: set max-completions 2
new UNRESOLVED: gdb.base/shell.exp: shell echo foo
new UNRESOLVED: gdb.base/shell.exp: shell fail exitcode
new UNRESOLVED: gdb.base/shell.exp: shell fail exitsignal
new UNRESOLVED: gdb.base/shell.exp: shell interrupt exitcode
new UNRESOLVED: gdb.base/shell.exp: shell interrupt exitsignal
new UNRESOLVED: gdb.base/shell.exp: shell success exitcode
new UNRESOLVED: gdb.base/shell.exp: shell success exitsignal
new UNRESOLVED: gdb.base/shell.exp: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
new UNRESOLVED: gdb.base/shell.exp: simple pipe
new UNRESOLVED: gdb.base/shell.exp: simple pipe with arg
new UNRESOLVED: gdb.base/shell.exp: | delimiter missing
new UNRESOLVED: gdb.base/shell.exp: |p 123| exit 0
new UNRESOLVED: gdb.base/shell.exp: |p 123| exit 1
new UNRESOLVED: gdb.base/shell.exp: |p 123| kill -2 $$
new UNRESOLVED: gdb.base/source-dir.exp: directory /nOtExStInG/a /nOtExStInG/b /nOtExStInG/c
new UNRESOLVED: gdb.base/source-dir.exp: directory /nOtExStInG/b /nOtExStInG/d /nOtExStInG/c
new UNRESOLVED: gdb.base/source.exp: script contains error
new UNRESOLVED: gdb.base/source.exp: set search directories
new UNRESOLVED: gdb.base/source.exp: source -s
new UNRESOLVED: gdb.base/source.exp: source -s -v
new UNRESOLVED: gdb.base/source.exp: source -v
new UNRESOLVED: gdb.base/source.exp: source -v -s
new UNRESOLVED: gdb.base/source.exp: source after -v
new UNRESOLVED: gdb.base/source.exp: source for-sure-nonexistant-file
new UNRESOLVED: gdb.base/source.exp: source source-nofile.gdb
new UNRESOLVED: gdb.base/step-over-syscall.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/step-over-syscall.exp: run to main
new UNRESOLVED: gdb.base/subst.exp: add depuis -> vers substitution rule
new UNRESOLVED: gdb.base/subst.exp: add from -> to substitution rule
new UNRESOLVED: gdb.base/subst.exp: add from1 -> to1 substitution rule
new UNRESOLVED: gdb.base/subst.exp: add source -> destination substitution rule
new UNRESOLVED: gdb.base/subst.exp: add substitution rule to empty string
new UNRESOLVED: gdb.base/subst.exp: deactivate GDB's confirmation interface
new UNRESOLVED: gdb.base/subst.exp: remove all remaining substitution rules
new UNRESOLVED: gdb.base/subst.exp: remove default substitution rules
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, first argument is empty string
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, too few arguments
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, too many arguments
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after all remaining rules removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after depuis rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after empty rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after from rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path depuis, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, after unsetting it
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from/path, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from_a_bad_path, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path garbage, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: show substitute-path, too many arguments
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path depuis
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path empty
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from after the rule was removed
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path, too many arguments
new UNRESOLVED: gdb.base/trace-commands.exp: define user command
new UNRESOLVED: gdb.base/trace-commands.exp: depth resets on error part 1
new UNRESOLVED: gdb.base/trace-commands.exp: depth resets on error part 2
new UNRESOLVED: gdb.base/trace-commands.exp: nested trace-commands test
new UNRESOLVED: gdb.base/trace-commands.exp: nested trace-commands test with source
new UNRESOLVED: gdb.base/trace-commands.exp: set trace-commands
new UNRESOLVED: gdb.base/trace-commands.exp: show trace-commands says off
new UNRESOLVED: gdb.base/trace-commands.exp: show trace-commands says on
new UNRESOLVED: gdb.base/trace-commands.exp: simple trace-commands test
new UNRESOLVED: gdb.base/trace-commands.exp: source -v
new UNRESOLVED: gdb.base/warning.exp: echo 23\n
new UNRESOLVED: gdb.btrace/cpu.exp: default cpu
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu auto
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/1
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0x0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo/bar
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu none
new UNRESOLVED: gdb.btrace/cpu.exp: set record
new UNRESOLVED: gdb.btrace/cpu.exp: set record btrace
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu auto
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/1
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0x0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo/bar
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu none
new UNRESOLVED: gdb.cp/debug-expr.exp: print dynamic_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: print reinterpret_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: print static_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: set debug expression 1
new UNRESOLVED: gdb.cp/debug-expr.exp: set language c++
new UNRESOLVED: gdb.cp/demangle.exp: auto: check demangling style
new UNRESOLVED: gdb.cp/demangle.exp: auto: set demangle-style
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c -- _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c++ -- _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c++ _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l garbage xyzdje
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z13BitPatterntoaOK10BitPatternccc
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z31DrawDestinationTransformedImageP7_XImageiiS0_iimjiijmmP4_XGCOK13ivTransformeriiii
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z3argOK7Complex
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN11RelateManip6EffectEO7ivEvent
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN20DisplayList_IteratorC4EO11DisplayList
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN3fooC4EOS_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN3fooC4EiOS_iS0_iS0_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE3PixC4EOKS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE7elementC2EOKS0_PS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE7elementC4EOKS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityEC4EOKS1_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4PixXI11VHDLLibrary14VHDLLibraryRep4ListI10VHDLEntityEEC2EOKS5_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN7ivWorldC2EPKcOiPPcPK12ivOptionDescPK14ivPropertyData
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN8TextCode14CoreConstDeclsEO7ostream
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic: gnu-v3: check demangling style
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic: gnu-v3: set demangle-style
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK11VHDLLibrary5nextEEO4PixXIS_14VHDLLibraryRep4ListI10VHDLEntityEE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK4ListI10VHDLEntityE4nextEONS1_3PixE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK4ListI10VHDLEntityEclEOKNS1_3PixE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOK10BitPattern
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOK12BitSubStringi
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOKS_
new UNRESOLVED: gdb.cp/demangle.exp: set language c++
new UNRESOLVED: gdb.cp/demangle.exp: set language unknown
new UNRESOLVED: gdb.cp/demangle.exp: set width 0
new UNRESOLVED: gdb.cp/maint.exp: help maint cp
new UNRESOLVED: gdb.cp/maint.exp: help maint cp first_component
new UNRESOLVED: gdb.cp/maint.exp: help maint cp namespace
new UNRESOLVED: gdb.cp/maint.exp: help maintenance cplus
new UNRESOLVED: gdb.cp/maint.exp: maint cp
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component C<A>::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component C<std::basic_streambuf<wchar_t,std::char_traits<wchar_t> > >::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component T<Cooperator>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component bool operator<<char>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo::bar::baz
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<&
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<&operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int operator<< <char>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator  ->
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator ->
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator>>
new UNRESOLVED: gdb.cp/maint.exp: maint cp namespace
new UNRESOLVED: gdb.cp/maint.exp: set complaints 1000
new UNRESOLVED: gdb.cp/punctuator.exp: print
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 1
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 2
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 3
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 1
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 2
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 3
new UNRESOLVED: gdb.cp/punctuator.exp: set lang c++
new UNRESOLVED: gdb.cp/ref-params.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/ref-params.exp: print value of Child& in f2
new UNRESOLVED: gdb.cp/ref-params.exp: print value of Parent& in f1
new UNRESOLVED: gdb.cp/ref-params.exp: print value of a Child in main
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on Child in main
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on Child& in f2
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f2 on
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f2 on Child in main
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print f1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print mf1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print mf2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Child&& in f2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Child&& in f2: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Parent&& in f1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Parent&& in f1: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f1 on
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f1 on Child&& in f2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f2 on
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char16_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char16_t is unsigned
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char32_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char32_t is unsigned
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p L"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p U"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p u"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: set language c++
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: sizeof
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: wchar_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: wchar_t sign
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: char16_t is not built-in
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: char32_t is not built-in
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p L"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p U"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p u"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: set language c
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: wchar_t is not built-in
new UNRESOLVED: gdb.disasm/disassembler-options.exp: set disassembler-options
new UNRESOLVED: gdb.disasm/disassembler-options.exp: set disassembler-options invalid_option_value
new UNRESOLVED: gdb.disasm/disassembler-options.exp: show NULL disassembler-options
new UNRESOLVED: gdb.dlang/debug-expr.exp: print *
new UNRESOLVED: gdb.dlang/debug-expr.exp: set debug expression 1
new UNRESOLVED: gdb.dlang/debug-expr.exp: set language d
new UNRESOLVED: gdb.dlang/demangle.exp: set language d
new UNRESOLVED: gdb.dlang/expression.exp: set language d
new UNRESOLVED: gdb.dlang/primitive-types.exp: set language d
new UNRESOLVED: gdb.dlang/properties.exp: set language d
new UNRESOLVED: gdb.dlang/watch-loc.exp: disassemble _Dmain
new UNRESOLVED: gdb.dlang/watch-loc.exp: p _Dmain_label - _Dmain
new UNRESOLVED: gdb.dlang/watch-loc.exp: x/2i _Dmain+
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: disassemble first
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: disassemble second
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p first_label - first
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p second_label - second
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: x/2i first+
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: x/2i second+
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p g_label - g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i g+
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: console: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: console: set print object on
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: disassemble func01
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: p func01_label - func01
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: x/2i func01+
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dwz.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dwz.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dwz.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: disassemble mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: p mymain_label - mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: x/2i mymain+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/var-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/var-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/var-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/void-type.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/void-type.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i main+
new UNRESOLVED: gdb.guile/guile.exp: collect help from uiout
new UNRESOLVED: gdb.guile/guile.exp: guile
new UNRESOLVED: gdb.guile/guile.exp: show guile command - define zzq
new UNRESOLVED: gdb.guile/guile.exp: source -s source2.scm
new UNRESOLVED: gdb.guile/guile.exp: source source2.scm
new UNRESOLVED: gdb.guile/guile.exp: verify guile support
new UNRESOLVED: gdb.guile/guile.exp: verify help to uiout
new UNRESOLVED: gdb.guile/scm-error.exp: backtrace printed
new UNRESOLVED: gdb.guile/scm-error.exp: error loading scm file caught
new UNRESOLVED: gdb.guile/scm-error.exp: error message printed
new UNRESOLVED: gdb.guile/scm-error.exp: guile
new UNRESOLVED: gdb.guile/scm-error.exp: no delayed error
new UNRESOLVED: gdb.guile/scm-error.exp: no error printed
new UNRESOLVED: gdb.guile/scm-error.exp: reset print-stack to default, post set/show tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to full, for backtrace test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error printing tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to none, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: source /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.guile/scm-error/scm-error-2.scm
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack full setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack none setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting of default
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to full
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to none
new UNRESOLVED: gdb.guile/scm-error.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-gsmob.exp: gu
new UNRESOLVED: gdb.guile/scm-gsmob.exp: guile
new UNRESOLVED: gdb.guile/scm-gsmob.exp: object-properties
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-parameter.exp: Simple gdb boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: enum gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: error registering existing parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: file gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously ambiguously named boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set print s on
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: restricted gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: enum parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set invalid enum parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set print test-enum-param two
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: initial parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: new parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param bar.txt
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set print test-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 10
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 42
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: show test-restricted-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set print test-undoc-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: undocumented gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: verify guile support
new UNRESOLVED: gdb.objc/print.exp: set language objective-c
new UNRESOLVED: gdb.pascal/print.exp: set language pascal
new UNRESOLVED: gdb.pascal/types.exp: set language pascal
new UNRESOLVED: gdb.python/py-completion.exp: check if python 3
new UNRESOLVED: gdb.python/py-completion.exp: discard #1
new UNRESOLVED: gdb.python/py-completion.exp: discard #2
new UNRESOLVED: gdb.python/py-completion.exp: discard #3
new UNRESOLVED: gdb.python/py-completion.exp: discard #4
new UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completel'
new UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit1 c'
new UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit2 c'
new UNRESOLVED: gdb.python/py-completion.exp: load python file
new UNRESOLVED: gdb.python/py-completion.exp: load python file again
new UNRESOLVED: gdb.python/py-completion.exp: show editing
new UNRESOLVED: gdb.python/py-completion.exp: verify python support
new UNRESOLVED: gdb.python/py-error.exp: check if python 3
new UNRESOLVED: gdb.python/py-error.exp: main reached
new UNRESOLVED: gdb.python/py-error.exp: no delayed error
new UNRESOLVED: gdb.python/py-error.exp: set host-charset IBM1047
new UNRESOLVED: gdb.python/py-error.exp: verify python support
new KFAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new UNRESOLVED: gdb.python/py-function.exp: Test GDBError - python
new UNRESOLVED: gdb.python/py-function.exp: Test GdbError.  There should not be a stack trace
new UNRESOLVED: gdb.python/py-function.exp: Test Normal Error - python
new UNRESOLVED: gdb.python/py-function.exp: Test a Runtime error.  There should be a stack trace.
new UNRESOLVED: gdb.python/py-function.exp: call function
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = ada
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = asm
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = auto
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = c
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = c++
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = d
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = fortran
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = go
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = minimal
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = modula-2
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = objective-c
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = opencl
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = pascal
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = rust
new UNRESOLVED: gdb.python/py-function.exp: call yes with &&
new UNRESOLVED: gdb.python/py-function.exp: call yes with ||
new UNRESOLVED: gdb.python/py-function.exp: check if python 3
new UNRESOLVED: gdb.python/py-function.exp: input command-calling function - python
new UNRESOLVED: gdb.python/py-function.exp: input convenience function - python
new UNRESOLVED: gdb.python/py-function.exp: input int-returning function - python
new UNRESOLVED: gdb.python/py-function.exp: input value-returning convenience function - python
new UNRESOLVED: gdb.python/py-function.exp: set language ada
new UNRESOLVED: gdb.python/py-function.exp: set language asm
new UNRESOLVED: gdb.python/py-function.exp: set language auto
new UNRESOLVED: gdb.python/py-function.exp: set language c
new UNRESOLVED: gdb.python/py-function.exp: set language c++
new UNRESOLVED: gdb.python/py-function.exp: set language d
new UNRESOLVED: gdb.python/py-function.exp: set language fortran
new UNRESOLVED: gdb.python/py-function.exp: set language go
new UNRESOLVED: gdb.python/py-function.exp: set language minimal
new UNRESOLVED: gdb.python/py-function.exp: set language modula-2
new UNRESOLVED: gdb.python/py-function.exp: set language objective-c
new UNRESOLVED: gdb.python/py-function.exp: set language opencl
new UNRESOLVED: gdb.python/py-function.exp: set language pascal
new UNRESOLVED: gdb.python/py-function.exp: set language rust
new UNRESOLVED: gdb.python/py-function.exp: set python print-stack full
new UNRESOLVED: gdb.python/py-function.exp: setting a value from a function which executes a command, again.
new UNRESOLVED: gdb.python/py-function.exp: setting a value from a function which executes a command.
new UNRESOLVED: gdb.python/py-function.exp: verify python support
new UNRESOLVED: gdb.python/py-lookup-type.exp: check if python 3
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type CARDINAL using language modula-2
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language c
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language objective-c
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language pascal
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type character using language ada
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type character using language fortran
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type int32 using language go
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type ucent using language d
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type ushort using language opencl
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language ada
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language c
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language d
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language fortran
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language go
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language modula-2
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language objective-c
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language opencl
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language pascal
new UNRESOLVED: gdb.python/py-lookup-type.exp: verify python support
new UNRESOLVED: gdb.python/py-nested-maps.exp: check if python 3
new UNRESOLVED: gdb.python/py-nested-maps.exp: verify python support
new UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER - python
new UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER_UNLIMITED - python
new UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb booleanparameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: Throwing gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: check if python 3
new UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value can be set to -1
new UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value is -1 after setting
new UNRESOLVED: gdb.python/py-parameter.exp: enum gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: file gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: gdb.GdbError does not show Python stack
new UNRESOLVED: gdb.python/py-parameter.exp: python print
new UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -1
new UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -5
new UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER_UNLIMITED.value = -5
new UNRESOLVED: gdb.python/py-parameter.exp: set enum to two
new UNRESOLVED: gdb.python/py-parameter.exp: set invalid enum parameter
new UNRESOLVED: gdb.python/py-parameter.exp: set new file parameter
new UNRESOLVED: gdb.python/py-parameter.exp: set test-file-param
new UNRESOLVED: gdb.python/py-parameter.exp: show initial file value
new UNRESOLVED: gdb.python/py-parameter.exp: show new file value
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter is initial value
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter is new value
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter off
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter on
new UNRESOLVED: gdb.python/py-parameter.exp: test enum parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test file parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test general help
new UNRESOLVED: gdb.python/py-parameter.exp: test new file parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test set help
new UNRESOLVED: gdb.python/py-parameter.exp: test show help
new UNRESOLVED: gdb.python/py-parameter.exp: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: verify python support
new UNRESOLVED: gdb.python/py-prettyprint.exp: check if python 3
new UNRESOLVED: gdb.python/py-prettyprint.exp: verify python support
new UNRESOLVED: gdb.python/py-prompt.exp: check if python 3
new UNRESOLVED: gdb.python/py-prompt.exp: verify python support
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sigall-precsave.exp
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sigall-reverse.exp
new UNRESOLVED: gdb.rust/expr.exp: set language rust
new UNRESOLVED: gdb.rust/expr.exp: set var $something = 27
new FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
new FAIL: gdb.server/unittest.exp: unit tests
new UNRESOLVED: gdb.trace/actions.exp: failed to compile
new UNRESOLVED: gdb.trace/ax.exp: failed to compile
new UNRESOLVED: gdb.trace/deltrace.exp: failed to compile
new UNRESOLVED: gdb.trace/infotrace.exp: failed to compile
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with missing argument
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with too many arguments
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with wrong option
new UNRESOLVED: gdb.trace/packetlen.exp: failed to compile
new UNRESOLVED: gdb.trace/passc-dyn.exp: failed to compile
new UNRESOLVED: gdb.trace/passcount.exp: failed to compile
new UNRESOLVED: gdb.trace/report.exp: failed to compile
new UNRESOLVED: gdb.trace/save-trace.exp: failed to compile
new UNRESOLVED: gdb.trace/tfind.exp: failed to compile
new UNRESOLVED: gdb.trace/tracecmd.exp: failed to compile
new UNRESOLVED: gdb.trace/tsv.exp: failed to compile
new UNRESOLVED: gdb.trace/while-dyn.exp: failed to compile
new UNRESOLVED: gdb.trace/while-stepping.exp: failed to compile
new UNRESOLVED: gdb.tui/completion.exp: verify tui support
new UNRESOLVED: gdb.tui/empty.exp: set tui border-kind ascii
new UNRESOLVED: gdb.tui/empty.exp: src: 80x24: box 1
new UNRESOLVED: gdb.tui/empty.exp: verify tui support
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: correct line breaks
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: set height 2000
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: set pagination on
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: tui enable
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: verify tui support
new UNRESOLVED: gdb.xml/maint_print_struct.exp: printing tdesc with a structure and a bitfield
new UNRESOLVED: gdb.xml/maint_print_struct.exp: setting a new tdesc having only a structure
new UNRESOLVED: gdb.xml/tdesc-arch.exp: architecture XML tests
new UNRESOLVED: gdb.xml/tdesc-arch.exp: read default architecture
new UNRESOLVED: gdb.xml/tdesc-arch.exp: read valid architectures
new UNRESOLVED: gdb.xml/tdesc-errors.exp: set tdesc filename gdb.xml/tdesc-bogus.xml
new UNRESOLVED: gdb.xml/tdesc-errors.exp: set tdesc filename gdb.xml/tdesc-unknown.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: cd to directory holding xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: maintenance print reggroups
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $bitfields
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $extrareg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $flags
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $mixed_flags
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $structreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $structreg.v4
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $uintreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $unionreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $unionreg.v4
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $vecreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc file single-reg.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc filename test-extra-regs.xml - from extra-regs.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc filename test-regs.xml - from core-only.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/bad-include.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/includes.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/loop.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-gdbserver-m64/9b/9b32cba44ddeb32251092a05f1238d2462eb2345//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/9b/9b32cba44ddeb32251092a05f1238d2462eb2345//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-05  9:13 [binutils-gdb] gdb: Remove whitespace in 'std::vector <...>' gdb-buildbot
@ 2019-10-05 11:34 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-05 11:34 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/847

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        a8b3b8e93e36d2c9efe346f04f3bbd767e3cc0f0

Subject of commit:
        gdb: Remove whitespace in 'std::vector <...>'

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/a8/a8b3b8e93e36d2c9efe346f04f3bbd767e3cc0f0/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/arraydim.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/assign_arr.exp: compilation main_p324_051.adb
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p g_label - g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i g+
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/var-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/var-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/var-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/void-type.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/void-type.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i main+
new UNRESOLVED: gdb.guile/guile.exp: collect help from uiout
new UNRESOLVED: gdb.guile/guile.exp: guile
new UNRESOLVED: gdb.guile/guile.exp: show guile command - define zzq
new UNRESOLVED: gdb.guile/guile.exp: source -s source2.scm
new UNRESOLVED: gdb.guile/guile.exp: source source2.scm
new UNRESOLVED: gdb.guile/guile.exp: verify guile support
new UNRESOLVED: gdb.guile/guile.exp: verify help to uiout
new UNRESOLVED: gdb.guile/scm-error.exp: backtrace printed
new UNRESOLVED: gdb.guile/scm-error.exp: error loading scm file caught
new UNRESOLVED: gdb.guile/scm-error.exp: error message printed
new UNRESOLVED: gdb.guile/scm-error.exp: guile
new UNRESOLVED: gdb.guile/scm-error.exp: no delayed error
new UNRESOLVED: gdb.guile/scm-error.exp: no error printed
new UNRESOLVED: gdb.guile/scm-error.exp: reset print-stack to default, post set/show tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to full, for backtrace test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error printing tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to none, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: source /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.guile/scm-error/scm-error-2.scm
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack full setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack none setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting of default
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to full
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to none
new UNRESOLVED: gdb.guile/scm-error.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-gsmob.exp: gu
new UNRESOLVED: gdb.guile/scm-gsmob.exp: guile
new UNRESOLVED: gdb.guile/scm-gsmob.exp: object-properties
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-parameter.exp: Simple gdb boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: enum gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: error registering existing parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: file gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously ambiguously named boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set print s on
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: restricted gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: enum parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set invalid enum parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set print test-enum-param two
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: initial parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: new parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param bar.txt
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set print test-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 10
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 42
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: show test-restricted-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set print test-undoc-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: undocumented gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: verify guile support
==============================================

*** 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/a8/a8b3b8e93e36d2c9efe346f04f3bbd767e3cc0f0//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/a8/a8b3b8e93e36d2c9efe346f04f3bbd767e3cc0f0//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-05  5:59 [binutils-gdb] [gdb] Fix set/show style metadata help text gdb-buildbot
@ 2019-10-05  8:30 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-05  8:30 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/846

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        4d825eab2dc70954ce1d229f48741da4936947fb

Subject of commit:
        [gdb] Fix set/show style metadata help text

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/4d/4d825eab2dc70954ce1d229f48741da4936947fb/

*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/arraydim.exp: print m'first
new FAIL: gdb.ada/arraydim.exp: print m'last
new FAIL: gdb.ada/arraydim.exp: print m'length
new UNRESOLVED: gdb.ada/arraydim.exp: ptype m
new UNRESOLVED: gdb.ada/assign_arr.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/assign_arr.exp: print assign_arr_input.u2 :=
PASS -> FAIL: gdb.ada/char_enum.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/notcplusplus.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/var_arr_typedef.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/var_arr_typedef.exp: print a
new UNRESOLVED: gdb.ada/var_arr_typedef.exp: print va
new UNRESOLVED: gdb.ada/var_arr_typedef.exp: print vb
new UNRESOLVED: gdb.ada/var_rec_arr.exp: delete all breakpoints in delete_breakpoints
FAIL -> UNRESOLVED: gdb.ada/var_rec_arr.exp: print a1
PASS -> UNRESOLVED: gdb.ada/var_rec_arr.exp: print a2
PASS -> UNRESOLVED: gdb.ada/var_rec_arr.exp: ptype a1
new UNRESOLVED: gdb.base/dump.exp: couldn't run to checkpoint
new UNRESOLVED: gdb.base/info-types.exp: l=c: can't run to main
new UNRESOLVED: gdb.base/interp.exp: run to main
new FAIL: gdb.dwarf2/implref-const.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/implref-const.exp: p main_label - main
new FAIL: gdb.dwarf2/implref-const.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: disassemble mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: p mymain_label - mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: x/2i mymain+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i main+
new UNRESOLVED: gdb.opt/inline-break.exp: cmd=break: could not run to main
new UNRESOLVED: gdb.server/ext-restart.exp: set remote exec-file
new UNRESOLVED: gdb.trace/actions-changed.exp: can't run to main to check for trace support
==============================================

*** 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/4d/4d825eab2dc70954ce1d229f48741da4936947fb//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/4d/4d825eab2dc70954ce1d229f48741da4936947fb//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-05  2:55 [binutils-gdb] Convert boolean globals in server.c to bool gdb-buildbot
@ 2019-10-05  5:10 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-05  5:10 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/845

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        3e6ec53ac1d44f890b206d4b8eb91ba9dad3e4d9

Subject of commit:
        Convert boolean globals in server.c to bool

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/3e/3e6ec53ac1d44f890b206d4b8eb91ba9dad3e4d9/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.ada/char_enum.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/char_enum.exp: print Char_Enum_Type'
new UNRESOLVED: gdb.ada/char_enum.exp: print pck.Global_Enum_Type'
new UNRESOLVED: gdb.ada/char_enum.exp: ptype Char_Enum_Type
new UNRESOLVED: gdb.ada/char_enum.exp: ptype pck.Global_Enum_Type
new UNRESOLVED: gdb.ada/notcplusplus.exp: list ver.ads:16
new UNRESOLVED: gdb.ada/notcplusplus.exp: print <symada__cS> after loading symbols from ver.ads
new UNRESOLVED: gdb.ada/notcplusplus.exp: print <symada__cS> before loading symbols from ver.ads
new FAIL: gdb.ada/var_rec_arr.exp: print a1
new UNRESOLVED: gdb.base/annota-input-while-running.exp: can't run to main
new UNRESOLVED: gdb.base/catch-follow-exec.exp: could not run to main
new UNRESOLVED: gdb.base/print-file-var.exp: lang=c: hidden=0: dlopen=0: version_id_main=0: could not run to main
new FAIL: gdb.base/reread.exp: opts= "" "" : continue until exit at second pass
new UNRESOLVED: gdb.base/reread.exp: opts= "" "" : run to foo
new UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: run to foo
new FAIL: gdb.cp/formatted-ref.exp: print s.x == 13
new FAIL: gdb.cp/formatted-ref.exp: print/x &e
new FAIL: gdb.cp/formatted-ref.exp: print/x &i
new FAIL: gdb.cp/formatted-ref.exp: print/x &s
new FAIL: gdb.cp/formatted-ref.exp: print/x *
new FAIL: gdb.cp/formatted-ref.exp: print/x e
new FAIL: gdb.cp/formatted-ref.exp: print/x i
new UNRESOLVED: gdb.cp/formatted-ref.exp: print/x s
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p bar_label - bar
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p baz_label - baz
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_cold_label - foo_cold
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_label - foo
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p main_label - main
new UNRESOLVED: gdb.dwarf2/implref-array.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/implref-struct.exp: p main_label - main
new UNRESOLVED: gdb.python/py-prettyprint.exp: check if python 3
new UNRESOLVED: gdb.python/py-prettyprint.exp: verify python support
==============================================

*** 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/3e/3e6ec53ac1d44f890b206d4b8eb91ba9dad3e4d9//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/3e/3e6ec53ac1d44f890b206d4b8eb91ba9dad3e4d9//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-04 23:50 [binutils-gdb] Fix type of startup_with_shell in gdbserver gdb-buildbot
@ 2019-10-05  2:10 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-05  2:10 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/844

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        80fd2826411c1033ec403658c5f3187bf9c1740a

Subject of commit:
        Fix type of startup_with_shell in gdbserver

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/80/80fd2826411c1033ec403658c5f3187bf9c1740a/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/arraydim.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/arrayidx.exp: compilation p.adb
PASS -> FAIL: gdb.ada/mi_catch_assert.exp: compilation bla.adb
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/var-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/var-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/var-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/void-type.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/void-type.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i main+
new UNRESOLVED: gdb.python/py-recurse-unwind.exp: can't run to main
==============================================

*** 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/80/80fd2826411c1033ec403658c5f3187bf9c1740a//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/80/80fd2826411c1033ec403658c5f3187bf9c1740a//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-04 20:46 [binutils-gdb] Add missing includes to gdb_assert.h and gdb_string_view.h gdb-buildbot
@ 2019-10-04 23:10 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-04 23:10 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/843

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        700545387df82388b054947dc74cc0bb5cbd2a60

Subject of commit:
        Add missing includes to gdb_assert.h and gdb_string_view.h

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/70/700545387df82388b054947dc74cc0bb5cbd2a60/

*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/arraydim.exp: print m'first
new FAIL: gdb.ada/arraydim.exp: print m'last
new FAIL: gdb.ada/arraydim.exp: print m'length
new UNRESOLVED: gdb.ada/arraydim.exp: ptype m
new UNRESOLVED: gdb.ada/arrayidx.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/arrayidx.exp: print e_one_two_three
new UNRESOLVED: gdb.ada/arrayidx.exp: print e_one_two_three, indexes off
new UNRESOLVED: gdb.ada/arrayidx.exp: print empty
new UNRESOLVED: gdb.ada/arrayidx.exp: print empty, indexes off
new UNRESOLVED: gdb.ada/arrayidx.exp: print few_reps
new UNRESOLVED: gdb.ada/arrayidx.exp: print few_reps, indexes off
new UNRESOLVED: gdb.ada/arrayidx.exp: print many_reps
new UNRESOLVED: gdb.ada/arrayidx.exp: print many_reps, indexes off
new UNRESOLVED: gdb.ada/arrayidx.exp: print one_two_three
new UNRESOLVED: gdb.ada/arrayidx.exp: print one_two_three, indexes off
new UNRESOLVED: gdb.ada/arrayidx.exp: print p_one_two_three
new UNRESOLVED: gdb.ada/arrayidx.exp: print p_one_two_three, indexes off
new UNRESOLVED: gdb.ada/arrayidx.exp: print r_two_three
new UNRESOLVED: gdb.ada/arrayidx.exp: print r_two_three, indexes off
new UNRESOLVED: gdb.ada/arrayidx.exp: print u_one_two_three
new UNRESOLVED: gdb.ada/arrayidx.exp: print u_one_two_three, indexes off
new UNRESOLVED: gdb.ada/arrayidx.exp: set print array-indexes off
new UNRESOLVED: gdb.ada/arrayidx.exp: set print array-indexes on
new UNRESOLVED: gdb.ada/mi_catch_assert.exp: cannot run to main, testcase aborted
new UNRESOLVED: gdb.ada/mi_catch_assert.exp: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.ada/mi_exc_info.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/print_pc.exp: compilation dummy.adb
PASS -> FAIL: gdb.ada/scoped_watch.exp: compilation foo_p708_025.adb
PASS -> FAIL: gdb.ada/tick_last_segv.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/watch_arg.exp: continuing to second breakpoint
new UNRESOLVED: gdb.ada/watch_arg.exp: continuing until watchpoint automatic deletion
new UNRESOLVED: gdb.ada/watch_arg.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/watch_arg.exp: insert second breakpoint in watch.adb
new UNRESOLVED: gdb.ada/watch_arg.exp: set watchpoint on function argument X
PASS -> FAIL: gdb.ada/watch_minus_l.exp: compilation foo_ra10_006.adb
new UNRESOLVED: gdb.base/annota-input-while-running.exp: can't run to main
new UNRESOLVED: gdb.base/interp.exp: run to main
new UNRESOLVED: gdb.dwarf2/implptr-64bit.exp: failed to prepare
new FAIL: gdb.reverse/until-precsave.exp: advance to factorial
new FAIL: gdb.reverse/until-precsave.exp: advance to marker2
new FAIL: gdb.reverse/until-precsave.exp: finish to main
new FAIL: gdb.reverse/until-precsave.exp: reload core file
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2
new FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2
new FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial
new FAIL: gdb.reverse/until-precsave.exp: run to end of main
new FAIL: gdb.reverse/until-precsave.exp: save process recfile
new FAIL: gdb.reverse/until-precsave.exp: set reverse execution
new UNRESOLVED: gdb.reverse/until-precsave.exp: turn on process record
new FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function
new FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame
new FAIL: gdb.reverse/until-precsave.exp: until line number
==============================================

*** 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/70/700545387df82388b054947dc74cc0bb5cbd2a60//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/70/700545387df82388b054947dc74cc0bb5cbd2a60//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-04 17:32 [binutils-gdb] gdb/testsuite: Fix py-format-string.exp on big-endian platforms gdb-buildbot
@ 2019-10-04 20:03 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-04 20: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/842

Author:
        Andreas Arnez <arnez@linux.ibm.com>

Commit tested:
        9ef62df072d85d9cd0fadc90a3bd7f05e32ba9fd

Subject of commit:
        gdb/testsuite: Fix py-format-string.exp on big-endian platforms

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/9e/9ef62df072d85d9cd0fadc90a3bd7f05e32ba9fd/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/excep_handle.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/frame_args.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/fun_addr.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/funcall_char.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/funcall_char.exp: print f
PASS -> FAIL: gdb.ada/funcall_ptr.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/notcplusplus.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/null_array.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/print_pc.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/print_pc.exp: p /x $pc
new FAIL: gdb.ada/scoped_watch.exp: continuing to breakpoint in pck.increment
new FAIL: gdb.ada/scoped_watch.exp: continuing to breakpoint on call to Do_Nothing
new FAIL: gdb.ada/scoped_watch.exp: continuing to watchpoint hit
new FAIL: gdb.ada/scoped_watch.exp: continuing until watchpoint automatic deletion
new FAIL: gdb.ada/scoped_watch.exp: next to call to Call_Me
new UNRESOLVED: gdb.ada/scoped_watch.exp: watch result
new UNRESOLVED: gdb.ada/watch_minus_l.exp: continue with watch -location
new UNRESOLVED: gdb.ada/watch_minus_l.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/watch_minus_l.exp: watch -location pck.global_var
new UNRESOLVED: gdb.base/dump.exp: couldn't run to checkpoint
new FAIL: gdb.base/multi-forks.exp: detach 2
new FAIL: gdb.base/multi-forks.exp: detach 3
new FAIL: gdb.base/multi-forks.exp: detach 4
new FAIL: gdb.base/multi-forks.exp: detach 5
new FAIL: gdb.base/multi-forks.exp: did kill 10
new FAIL: gdb.base/multi-forks.exp: did kill 11
new FAIL: gdb.base/multi-forks.exp: did kill 12
new FAIL: gdb.base/multi-forks.exp: did kill 13
new FAIL: gdb.base/multi-forks.exp: did kill 14
new FAIL: gdb.base/multi-forks.exp: did kill 15
new FAIL: gdb.base/multi-forks.exp: did kill 16
new FAIL: gdb.base/multi-forks.exp: did kill 6
new FAIL: gdb.base/multi-forks.exp: did kill 7
new FAIL: gdb.base/multi-forks.exp: did kill 8
new FAIL: gdb.base/multi-forks.exp: did kill 9
new FAIL: gdb.base/multi-forks.exp: follow child, print pids
new FAIL: gdb.base/multi-forks.exp: follow parent, print pids
new UNRESOLVED: gdb.base/multi-forks.exp: help set detach
new FAIL: gdb.base/multi-forks.exp: inferior 1
new FAIL: gdb.base/multi-forks.exp: inferior 10
new FAIL: gdb.base/multi-forks.exp: inferior 11
new FAIL: gdb.base/multi-forks.exp: inferior 12
new FAIL: gdb.base/multi-forks.exp: inferior 13
new FAIL: gdb.base/multi-forks.exp: inferior 14
new FAIL: gdb.base/multi-forks.exp: inferior 15
new FAIL: gdb.base/multi-forks.exp: inferior 2
new FAIL: gdb.base/multi-forks.exp: inferior 3
new FAIL: gdb.base/multi-forks.exp: inferior 4
new FAIL: gdb.base/multi-forks.exp: inferior 5
new FAIL: gdb.base/multi-forks.exp: inferior 6
new FAIL: gdb.base/multi-forks.exp: inferior 7
new FAIL: gdb.base/multi-forks.exp: inferior 8
new FAIL: gdb.base/multi-forks.exp: inferior 9
new FAIL: gdb.base/multi-forks.exp: info inferior 1
new FAIL: gdb.base/multi-forks.exp: info inferior 10
new FAIL: gdb.base/multi-forks.exp: info inferior 11
new FAIL: gdb.base/multi-forks.exp: info inferior 12
new FAIL: gdb.base/multi-forks.exp: info inferior 13
new FAIL: gdb.base/multi-forks.exp: info inferior 14
new FAIL: gdb.base/multi-forks.exp: info inferior 15
new FAIL: gdb.base/multi-forks.exp: info inferior 16
new FAIL: gdb.base/multi-forks.exp: info inferior 2
new FAIL: gdb.base/multi-forks.exp: info inferior 3
new FAIL: gdb.base/multi-forks.exp: info inferior 4
new FAIL: gdb.base/multi-forks.exp: info inferior 5
new FAIL: gdb.base/multi-forks.exp: info inferior 6
new FAIL: gdb.base/multi-forks.exp: info inferior 7
new FAIL: gdb.base/multi-forks.exp: info inferior 8
new FAIL: gdb.base/multi-forks.exp: info inferior 9
new FAIL: gdb.base/multi-forks.exp: kill 10
new FAIL: gdb.base/multi-forks.exp: kill 11
new FAIL: gdb.base/multi-forks.exp: kill 12
new FAIL: gdb.base/multi-forks.exp: kill 13
new FAIL: gdb.base/multi-forks.exp: kill 14
new FAIL: gdb.base/multi-forks.exp: kill 15
new FAIL: gdb.base/multi-forks.exp: kill 16
new FAIL: gdb.base/multi-forks.exp: kill 6
new FAIL: gdb.base/multi-forks.exp: kill 7
new FAIL: gdb.base/multi-forks.exp: kill 8
new FAIL: gdb.base/multi-forks.exp: kill 9
new FAIL: gdb.base/multi-forks.exp: restart final
new FAIL: gdb.base/multi-forks.exp: run to exit 1
new FAIL: gdb.base/multi-forks.exp: run to exit 10
new FAIL: gdb.base/multi-forks.exp: run to exit 11
new FAIL: gdb.base/multi-forks.exp: run to exit 12
new FAIL: gdb.base/multi-forks.exp: run to exit 13
new FAIL: gdb.base/multi-forks.exp: run to exit 14
new FAIL: gdb.base/multi-forks.exp: run to exit 15
new FAIL: gdb.base/multi-forks.exp: run to exit 16
new UNRESOLVED: gdb.base/multi-forks.exp: run to exit 2
new FAIL: gdb.base/multi-forks.exp: run to exit 3
new FAIL: gdb.base/multi-forks.exp: run to exit 4
new FAIL: gdb.base/multi-forks.exp: run to exit 5
new FAIL: gdb.base/multi-forks.exp: run to exit 6
new FAIL: gdb.base/multi-forks.exp: run to exit 7
new FAIL: gdb.base/multi-forks.exp: run to exit 8
new FAIL: gdb.base/multi-forks.exp: run to exit 9
new UNRESOLVED: gdb.base/multi-forks.exp: set follow-fork child
new UNRESOLVED: gdb.base/print-file-var.exp: lang=c: hidden=0: dlopen=0: version_id_main=0: could not run to main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dwz.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dwz.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dwz.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: disassemble mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: p mymain_label - mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: x/2i mymain+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i main+
new UNRESOLVED: gdb.guile/guile.exp: collect help from uiout
new UNRESOLVED: gdb.guile/guile.exp: guile
new UNRESOLVED: gdb.guile/guile.exp: show guile command - define zzq
new UNRESOLVED: gdb.guile/guile.exp: source -s source2.scm
new UNRESOLVED: gdb.guile/guile.exp: source source2.scm
new UNRESOLVED: gdb.guile/guile.exp: verify guile support
new UNRESOLVED: gdb.guile/guile.exp: verify help to uiout
new UNRESOLVED: gdb.guile/scm-error.exp: backtrace printed
new UNRESOLVED: gdb.guile/scm-error.exp: error loading scm file caught
new UNRESOLVED: gdb.guile/scm-error.exp: error message printed
new UNRESOLVED: gdb.guile/scm-error.exp: guile
new UNRESOLVED: gdb.guile/scm-error.exp: no delayed error
new UNRESOLVED: gdb.guile/scm-error.exp: no error printed
new UNRESOLVED: gdb.guile/scm-error.exp: reset print-stack to default, post set/show tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to full, for backtrace test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error printing tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to none, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: source /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.guile/scm-error/scm-error-2.scm
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack full setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack none setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting of default
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to full
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to none
new UNRESOLVED: gdb.guile/scm-error.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-gsmob.exp: gu
new UNRESOLVED: gdb.guile/scm-gsmob.exp: guile
new UNRESOLVED: gdb.guile/scm-gsmob.exp: object-properties
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-parameter.exp: Simple gdb boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: enum gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: error registering existing parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: file gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously ambiguously named boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set print s on
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: restricted gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: enum parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set invalid enum parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set print test-enum-param two
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: initial parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: new parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param bar.txt
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set print test-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 10
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 42
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: show test-restricted-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set print test-undoc-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: undocumented gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: verify guile support
new UNRESOLVED: gdb.python/py-completion.exp: check if python 3
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #1
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #2
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #3
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #4
PASS -> UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completel'
PASS -> UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit1 c'
PASS -> UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit2 c'
PASS -> UNRESOLVED: gdb.python/py-completion.exp: load python file
PASS -> UNRESOLVED: gdb.python/py-completion.exp: load python file again
new UNRESOLVED: gdb.python/py-completion.exp: show editing
new UNRESOLVED: gdb.python/py-completion.exp: verify python support
new UNRESOLVED: gdb.python/py-objfile.exp: can't run to main
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER_UNLIMITED - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb booleanparameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Throwing gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: check if python 3
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value can be set to -1
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value is -1 after setting
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum gdb parameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file gdb parameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: gdb.GdbError does not show Python stack
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python print
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -1
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -5
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER_UNLIMITED.value = -5
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: set enum to two
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: set invalid enum parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: set new file parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: set test-file-param
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show initial file value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show new file value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show parameter is initial value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show parameter is new value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show parameter off
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show parameter on
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test enum parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test file parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test general help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test new file parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test set help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test show help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: verify python support
new UNRESOLVED: gdb.reverse/fstatat-reverse.exp: turn on process record
==============================================

*** 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/9e/9ef62df072d85d9cd0fadc90a3bd7f05e32ba9fd//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/9e/9ef62df072d85d9cd0fadc90a3bd7f05e32ba9fd//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-04 14:17 [binutils-gdb] Add $_ada_exception convenience variable gdb-buildbot
@ 2019-10-04 16:43 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-04 16:43 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/841

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        37f6a7f456a8da051698dcd753cc0b026f92e054

Subject of commit:
        Add $_ada_exception convenience variable

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/37/37f6a7f456a8da051698dcd753cc0b026f92e054/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/arrayidx.exp: compilation p.adb
PASS -> FAIL: gdb.ada/byte_packed_arr.exp: compilation reprod_main.adb
new UNRESOLVED: gdb.ada/excep_handle.exp: cannot run to main, testcase aborted
new UNRESOLVED: gdb.ada/excep_handle.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/frame_args.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/funcall_ptr.exp: Check that initial value of GA is null
new UNRESOLVED: gdb.ada/funcall_ptr.exp: Check that value of GA is 0x1234
new UNRESOLVED: gdb.ada/funcall_ptr.exp: call pck.p
new UNRESOLVED: gdb.ada/funcall_ptr.exp: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.ada/mi_catch_ex_hand.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/mi_string_access.exp: compilation bar.adb
new UNRESOLVED: gdb.ada/notcplusplus.exp: list ver.ads:16
new UNRESOLVED: gdb.ada/notcplusplus.exp: print <symada__cS> after loading symbols from ver.ads
new UNRESOLVED: gdb.ada/notcplusplus.exp: print <symada__cS> before loading symbols from ver.ads
new FAIL: gdb.ada/null_array.exp: print my_matrix
new UNRESOLVED: gdb.ada/null_array.exp: print my_table
new FAIL: gdb.ada/null_array.exp: ptype my_table
PASS -> FAIL: gdb.ada/scoped_watch.exp: compilation foo_p708_025.adb
new UNRESOLVED: gdb.base/display.exp: could not run to main - other tests will fail.
new UNRESOLVED: gdb.base/execl-update-breakpoints.exp: couldn't run to main
new UNRESOLVED: gdb.base/frameapply.exp: can't run to setup_done
new UNRESOLVED: gdb.base/info-types.exp: l=c: can't run to main
new UNRESOLVED: gdb.base/vla-optimized-out.exp: o1: can't run to f1
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble bar
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble baz
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble foo
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble foo_low
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p bar_label - bar
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p baz_label - baz
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p foo_label - foo
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p foo_low_label - foo_low
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i bar+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i baz+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i foo+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i foo_low+
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/void-type.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/void-type.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i main+
new UNRESOLVED: gdb.opt/inline-break.exp: cmd=break: could not run to main
new UNRESOLVED: gdb.python/py-as-string.exp: couldn't run to main.
new UNRESOLVED: gdb.python/python.exp: can't run to main
==============================================

*** 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/37/37f6a7f456a8da051698dcd753cc0b026f92e054//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/37/37f6a7f456a8da051698dcd753cc0b026f92e054//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-04 11:04 [binutils-gdb] Back out earlier Ada exception change gdb-buildbot
@ 2019-10-04 13:24 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-04 13:24 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/840

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        fccf9de11fe6757afd3ad2dca4e0ea781b50ae37

Subject of commit:
        Back out earlier Ada exception change

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/fc/fccf9de11fe6757afd3ad2dca4e0ea781b50ae37/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.ada/arrayidx.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/arrayidx.exp: print e_one_two_three
new UNRESOLVED: gdb.ada/arrayidx.exp: print e_one_two_three, indexes off
new UNRESOLVED: gdb.ada/arrayidx.exp: print empty
new UNRESOLVED: gdb.ada/arrayidx.exp: print empty, indexes off
new UNRESOLVED: gdb.ada/arrayidx.exp: print few_reps
new UNRESOLVED: gdb.ada/arrayidx.exp: print few_reps, indexes off
new UNRESOLVED: gdb.ada/arrayidx.exp: print many_reps
new UNRESOLVED: gdb.ada/arrayidx.exp: print many_reps, indexes off
new UNRESOLVED: gdb.ada/arrayidx.exp: print one_two_three
new UNRESOLVED: gdb.ada/arrayidx.exp: print one_two_three, indexes off
new UNRESOLVED: gdb.ada/arrayidx.exp: print p_one_two_three
new UNRESOLVED: gdb.ada/arrayidx.exp: print p_one_two_three, indexes off
new UNRESOLVED: gdb.ada/arrayidx.exp: print r_two_three
new UNRESOLVED: gdb.ada/arrayidx.exp: print r_two_three, indexes off
new UNRESOLVED: gdb.ada/arrayidx.exp: print u_one_two_three
new UNRESOLVED: gdb.ada/arrayidx.exp: print u_one_two_three, indexes off
new UNRESOLVED: gdb.ada/arrayidx.exp: set print array-indexes off
new UNRESOLVED: gdb.ada/arrayidx.exp: set print array-indexes on
new UNRESOLVED: gdb.ada/byte_packed_arr.exp: print broken
PASS -> FAIL: gdb.ada/expr_delims.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/funcall_param.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/mi_catch_ex.exp: cannot run to main, testcase aborted
new UNRESOLVED: gdb.ada/mi_catch_ex_hand.exp: cannot run to main, testcase aborted
new UNRESOLVED: gdb.ada/mi_catch_ex_hand.exp: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.ada/null_array.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/str_ref_cmp.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/str_ref_cmp.exp: operator = works for strings
new UNRESOLVED: gdb.ada/str_ref_cmp.exp: print String_Var
PASS -> FAIL: gdb.ada/watch_minus_l.exp: compilation foo_ra10_006.adb
new UNRESOLVED: gdb.base/finish.exp: couldn't run to main
new UNRESOLVED: gdb.base/line-symtabs.exp: can't run to main
new UNRESOLVED: gdb.base/maint.exp: check maint info sections output
new FAIL: gdb.base/maint.exp: maint info breakpoints
new FAIL: gdb.base/maint.exp: maint print type
new UNRESOLVED: gdb.base/setshow.exp: can't run to main
new UNRESOLVED: gdb.base/structs2.exp: can't run to main
FAIL -> UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on Child& in f2
PASS -> UNRESOLVED: gdb.dlang/debug-expr.exp: print *
PASS -> UNRESOLVED: gdb.dlang/debug-expr.exp: set debug expression 1
PASS -> UNRESOLVED: gdb.dlang/debug-expr.exp: set language d
PASS -> UNRESOLVED: gdb.dlang/demangle.exp: set language d
PASS -> UNRESOLVED: gdb.dlang/expression.exp: set language d
PASS -> UNRESOLVED: gdb.dlang/primitive-types.exp: set language d
PASS -> UNRESOLVED: gdb.dlang/properties.exp: set language d
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: disassemble first
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: disassemble second
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p first_label - first
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p second_label - second
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: x/2i first+
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: x/2i second+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p g_label - g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i g+
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/implref-array.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i main+
new UNRESOLVED: gdb.linespec/keywords.exp: can't run to main
new UNRESOLVED: gdb.python/py-finish-breakpoint.exp: cannot run to main.
new UNRESOLVED: gdb.reverse/watch-precsave.exp: breakpoint at end of main
new UNRESOLVED: gdb.reverse/watch-precsave.exp: continue to breakpoint: marker1
new UNRESOLVED: gdb.reverse/watch-precsave.exp: continue to breakpoint: marker2
new UNRESOLVED: gdb.reverse/watch-precsave.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.reverse/watch-precsave.exp: enable hw watchpoints
new UNRESOLVED: gdb.reverse/watch-precsave.exp: kill process, prepare to debug log file
new UNRESOLVED: gdb.reverse/watch-precsave.exp: reload core file
new UNRESOLVED: gdb.reverse/watch-precsave.exp: replay forward to marker2
new UNRESOLVED: gdb.reverse/watch-precsave.exp: run to end of main
new UNRESOLVED: gdb.reverse/watch-precsave.exp: save process recfile
new UNRESOLVED: gdb.reverse/watch-precsave.exp: set breakpoint at marker1
new UNRESOLVED: gdb.reverse/watch-precsave.exp: set breakpoint at marker2
new UNRESOLVED: gdb.reverse/watch-precsave.exp: set can-use-hw-watchpoints 0
new UNRESOLVED: gdb.reverse/watch-precsave.exp: set forward
new UNRESOLVED: gdb.reverse/watch-precsave.exp: set reverse
new UNRESOLVED: gdb.reverse/watch-precsave.exp: set watchpoint on ival3
new UNRESOLVED: gdb.reverse/watch-precsave.exp: turn on process record
new UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, HW, fifth time
new UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, HW, first time
new UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, HW, fourth time
new UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, HW, second time
new UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, HW, third time
new UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, fifth time
new UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, first time
new UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, fourth time
new UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, second time
new UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, third time
new UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit, fifth time
new UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit, first time
new UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit, forward replay, fifth time
new UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit, forward replay, first time
new UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit, forward replay, fourth time
new UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit, forward replay, second time
new UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit, forward replay, third time
new UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit, fourth time
new UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit, second time
new UNRESOLVED: gdb.reverse/watch-precsave.exp: watchpoint hit, third time
==============================================

*** 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/fc/fccf9de11fe6757afd3ad2dca4e0ea781b50ae37//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/fc/fccf9de11fe6757afd3ad2dca4e0ea781b50ae37//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-04  7:49 [binutils-gdb] Make print-file-var.exp test attribute visibility hidden, dlopen, and main symbol gdb-buildbot
@ 2019-10-04 10:15 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-04 10:15 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/839

Author:
        Pedro Alves <palves@redhat.com>

Commit tested:
        1d58d6a26c2a93b80f93a5d058dd678782affd5d

Subject of commit:
        Make print-file-var.exp test attribute visibility hidden, dlopen, and main symbol

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/1d/1d58d6a26c2a93b80f93a5d058dd678782affd5d/

*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/expr_delims.exp: check that watchpoint is set correctly.
new UNRESOLVED: gdb.ada/expr_delims.exp: continue
new FAIL: gdb.ada/expr_delims.exp: print variable 'thread'
new FAIL: gdb.ada/expr_delims.exp: set conditional watchpoint.
new FAIL: gdb.ada/expr_delims.exp: set plain watchpoint on variable 'thread'
new UNRESOLVED: gdb.ada/funcall_param.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/funcall_param.exp: p ident
new UNRESOLVED: gdb.ada/null_array.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/null_array.exp: print my_matrix
new UNRESOLVED: gdb.ada/null_array.exp: print my_table
new UNRESOLVED: gdb.ada/null_array.exp: ptype my_table
PASS -> FAIL: gdb.ada/py_taft.exp: compilation main.adb
new UNRESOLVED: gdb.ada/scoped_watch.exp: break foo_p708_025.adb:22
new UNRESOLVED: gdb.ada/scoped_watch.exp: break pck.increment
new UNRESOLVED: gdb.ada/scoped_watch.exp: continuing to breakpoint in pck.increment
new UNRESOLVED: gdb.ada/scoped_watch.exp: continuing to breakpoint on call to Do_Nothing
new UNRESOLVED: gdb.ada/scoped_watch.exp: continuing to watchpoint hit
new UNRESOLVED: gdb.ada/scoped_watch.exp: continuing until watchpoint automatic deletion
new UNRESOLVED: gdb.ada/scoped_watch.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/scoped_watch.exp: next to call to Call_Me
new UNRESOLVED: gdb.ada/scoped_watch.exp: watch result
new UNRESOLVED: gdb.ada/watch_minus_l.exp: continue with watch -location
new UNRESOLVED: gdb.ada/watch_minus_l.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/watch_minus_l.exp: watch -location pck.global_var
new FAIL: gdb.base/completion.exp: complete 'handle keyword'
new FAIL: gdb.base/completion.exp: complete 'handle signal'
new FAIL: gdb.base/completion.exp: complete 'p &values[0] -> a'
new FAIL: gdb.base/completion.exp: complete 'p no_var_named_this-arg'
new FAIL: gdb.base/completion.exp: complete 'p values[0] . a'
new FAIL: gdb.base/completion.exp: complete 'p values[0].a'
new FAIL: gdb.base/completion.exp: complete
new FAIL: gdb.base/completion.exp: complete help aliases
new FAIL: gdb.base/completion.exp: completion of field in anonymous union
new UNRESOLVED: gdb.base/completion.exp: set max-completions unlimited
new UNRESOLVED: gdb.base/frameapply.exp: can't run to setup_done
new UNRESOLVED: gdb.base/infnan.exp: print a
new UNRESOLVED: gdb.base/noreturn-finish.exp: could not run to main
UNRESOLVED -> FAIL: gdb.cp/ref-params.exp: print value of f1 on Child& in f2
new UNRESOLVED: gdb.mi/mi-breakpoint-changed.exp: test_insert_delete_modify: change command
new FAIL: gdb.mi/mi-breakpoint-changed.exp: test_pending_resolved: pending resolved:
new UNRESOLVED: gdb.mi/mi-breakpoint-changed.exp: test_pending_resolved: pending resolved: breakpoint on pendfunc1 resolved
new FAIL: gdb.mi/mi-breakpoint-changed.exp: test_pending_resolved: pending resolved: breakpoint on pendfunc3 pending again
new FAIL: gdb.mi/mi-breakpoint-changed.exp: test_pending_resolved: pending resolved: breakpoint on pendfunc3 resolved
new FAIL: gdb.mi/mi-breakpoint-changed.exp: test_pending_resolved: pending resolved: continue to marker 1
new FAIL: gdb.mi/mi-breakpoint-changed.exp: test_pending_resolved: pending resolved: continue to marker 2
new FAIL: gdb.mi/mi-breakpoint-changed.exp: test_pending_resolved: pending resolved: continue to pendfunc1 breakpoint
new FAIL: gdb.mi/mi-breakpoint-changed.exp: test_pending_resolved: pending resolved: continuing execution to marker
new FAIL: gdb.mi/mi-breakpoint-changed.exp: test_pending_resolved: pending resolved: continuing to exit
new UNRESOLVED: gdb.python/py-value.exp: can't run to main
new UNRESOLVED: gdb.reverse/recvmsg-reverse.exp: turn on process record
==============================================

*** 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/1d/1d58d6a26c2a93b80f93a5d058dd678782affd5d//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/1d/1d58d6a26c2a93b80f93a5d058dd678782affd5d//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-04  4:58 [binutils-gdb] Handle copy relocations gdb-buildbot
@ 2019-10-04  7:25 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-04  7:25 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/838

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        4b610737f02338b2aea7641ab771aa5e137d067c

Subject of commit:
        Handle copy relocations

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/4b/4b610737f02338b2aea7641ab771aa5e137d067c/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/addr_arith.exp: compilation foo_na07_019.adb
PASS -> FAIL: gdb.ada/arrayptr.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/frame_args.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/nested.exp: break on nested function First
new UNRESOLVED: gdb.ada/py_taft.exp: check if python 3
new UNRESOLVED: gdb.ada/py_taft.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/py_taft.exp: python print
new UNRESOLVED: gdb.ada/py_taft.exp: python v = gdb.parse_and_eval
new UNRESOLVED: gdb.ada/py_taft.exp: verify python support
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: compilation crash.adb
PASS -> FAIL: gdb.ada/watch_minus_l.exp: compilation foo_ra10_006.adb
new UNRESOLVED: gdb.base/annota-input-while-running.exp: can't run to main
new UNRESOLVED: gdb.base/catch-follow-exec.exp: could not run to main
new UNRESOLVED: gdb.base/interp.exp: run to main
new UNRESOLVED: gdb.base/print-file-var.exp: could not run to main
new FAIL: gdb.base/reread.exp: opts= "" "" : continue until exit at second pass
new UNRESOLVED: gdb.base/reread.exp: opts= "" "" : run to foo
new UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: run to foo
new UNRESOLVED: gdb.cp/nested-types.exp: ptype S10
new UNRESOLVED: gdb.cp/nested-types.exp: set print type nested-type-limit -1
new UNRESOLVED: gdb.cp/nested-types.exp: set print type nested-type-limit 1
new UNRESOLVED: gdb.cp/nested-types.exp: set print type nested-type-limit 2
new UNRESOLVED: gdb.cp/nested-types.exp: set print type nested-type-limit 3
new UNRESOLVED: gdb.cp/nested-types.exp: set print type nested-type-limit 4
new UNRESOLVED: gdb.cp/nested-types.exp: set print type nested-type-limit 5
new UNRESOLVED: gdb.cp/nested-types.exp: set print type nested-type-limit 6
new UNRESOLVED: gdb.cp/nested-types.exp: set print type nested-type-limit 7
new UNRESOLVED: gdb.cp/nested-types.exp: set print type nested-type-limit 8
new UNRESOLVED: gdb.cp/nested-types.exp: show default print type nested-type-limit
new UNRESOLVED: gdb.cp/nested-types.exp: show print type nested-type-limit
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p g_label - g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i g+
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p bar_label - bar
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p baz_label - baz
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_cold_label - foo_cold
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_label - foo
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p main_label - main
new UNRESOLVED: gdb.dwarf2/dwz.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dwz.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dwz.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/implref-struct.exp: p main_label - main
new FAIL: gdb.dwarf2/varval.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/varval.exp: p main_label - main
new FAIL: gdb.dwarf2/varval.exp: x/2i main+
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sigall-precsave.exp
new UNRESOLVED: gdb.server/ext-restart.exp: set remote exec-file
==============================================

*** 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/4b/4b610737f02338b2aea7641ab771aa5e137d067c//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/4b/4b610737f02338b2aea7641ab771aa5e137d067c//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-04  1:46 [binutils-gdb] Make current_source_* per-program-space gdb-buildbot
@ 2019-10-04  4:10 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-04  4:10 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/837

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        1dd588507782591478882a891f64945af9e2b86c

Subject of commit:
        Make current_source_* per-program-space

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/1d/1dd588507782591478882a891f64945af9e2b86c/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.ada/access_to_packed_array.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/addr_arith.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/arrayptr.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/call_pn.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/frame_args.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/task_switch_in_core.exp: couldn't run to Request_For_Crash
new FAIL: gdb.ada/watch_minus_l.exp: continue with watch -location
new UNRESOLVED: gdb.ada/watch_minus_l.exp: watch -location pck.global_var
new UNRESOLVED: gdb.arch/aarch64-fp.exp: could not run to main
new UNRESOLVED: gdb.base/finish-pretty.exp: can't run to foo
new UNRESOLVED: gdb.base/frameapply.exp: can't run to setup_done
new UNRESOLVED: gdb.base/vla-optimized-out.exp: o1: can't run to f1
new UNRESOLVED: gdb.cp/exception.exp: run to main
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble bar
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble baz
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble foo
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble foo_low
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p bar_label - bar
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p baz_label - baz
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p foo_label - foo
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p foo_low_label - foo_low
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i bar+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i baz+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i foo+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i foo_low+
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 33
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 34
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 35
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 36
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 37
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 38
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 39
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 40
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 41
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 42
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 43
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 44
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 45
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 46
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 47
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 48
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 49
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 50
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 51
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 52
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 53
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 54
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 55
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 56
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 57
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 58
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 59
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 60
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 61
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 62
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 63
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to ALRM
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to BUS
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to CHLD
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to CONT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to DANGER
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to EMT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to FPE
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to GRANT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to HUP
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to ILL
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to IO
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to LOST
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to LWP
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to MSG
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to PHONE
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to PIPE
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to POLL
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to PRIO
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to PROF
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to PWR
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to QUIT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to RETRACT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to SAK
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to SEGV
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to SOUND
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to SYS
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to TERM
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to TSTP
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to TTIN
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to TTOU
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to URG
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to USR1
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to USR2
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to VTALRM
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to WAITING
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to WINCH
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to WIND
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to XCPU
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to XFSZ
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_33
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_34
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_35
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_36
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_37
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_38
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_39
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_40
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_41
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_42
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_43
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_44
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_45
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_46
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_47
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_48
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_49
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_50
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_51
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_52
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_53
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_54
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_55
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_56
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_57
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_58
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_59
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_60
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_61
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_62
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_63
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_ALRM
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_BUS
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_CHLD
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_CONT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_DANGER
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_EMT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_FPE
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_GRANT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_HUP
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_ILL
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_IO
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_LOST
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_LWP
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_MSG
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_PHONE
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_PIPE
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_POLL
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_PRIO
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_PROF
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_PWR
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_QUIT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_RETRACT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_SAK
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_SEGV
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_SOUND
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_SYS
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_TERM
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_TSTP
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_TTIN
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_TTOU
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_URG
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_USR1
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_USR2
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_VTALRM
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_WAITING
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_WINCH
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_WIND
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_XCPU
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_XFSZ
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_33
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_34
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_35
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_36
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_37
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_38
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_39
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_40
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_41
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_42
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_43
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_44
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_45
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_46
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_47
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_48
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_49
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_50
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_51
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_52
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_53
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_54
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_55
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_56
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_57
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_58
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_59
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_60
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_61
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_62
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_63
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_ABRT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_ALRM
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_BUS
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_CHLD
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_CONT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_DANGER
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_EMT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_FPE
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_GRANT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_HUP
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_ILL
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_IO
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_LOST
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_LWP
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_MSG
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_PHONE
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_PIPE
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_POLL
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_PRIO
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_PROF
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_PWR
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_QUIT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_RETRACT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_SAK
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_SEGV
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_SOUND
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_SYS
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_TERM
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_TSTP
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_TTIN
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_TTOU
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_URG
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_USR1
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_USR2
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_VTALRM
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_WAITING
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_WINCH
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_WIND
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_XCPU
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_XFSZ
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_33
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_34
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_35
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_36
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_37
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_38
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_39
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_40
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_41
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_42
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_43
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_44
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_45
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_46
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_47
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_48
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_49
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_50
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_51
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_52
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_53
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_54
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_55
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_56
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_57
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_58
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_59
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_60
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_61
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_62
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_63
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_ABRT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_ALRM
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_BUS
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_CHLD
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_CONT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_DANGER
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_EMT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_FPE
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_GRANT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_HUP
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_ILL
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_IO
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_LOST
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_LWP
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_MSG
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_PHONE
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_PIPE
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_POLL
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_PRIO
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_PROF
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_PWR
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_QUIT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_RETRACT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_SAK
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_SEGV
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_SOUND
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_SYS
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_TERM
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_TSTP
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_TTIN
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_TTOU
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_URG
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_USR1
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_USR2
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_VTALRM
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_WAITING
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_WINCH
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_WIND
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_XCPU
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_XFSZ
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: breakpoint at end of main
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: continue
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: continue to sigall exit
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 33
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 34
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 35
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 36
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 37
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 38
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 39
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 40
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 41
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 42
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 43
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 44
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 45
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 46
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 47
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 48
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 49
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 50
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 51
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 52
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 53
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 54
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 55
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 56
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 57
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 58
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 59
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 60
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 61
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 62
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 63
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal ABRT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal ALRM
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal BUS
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal CHLD
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal CONT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal DANGER
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal EMT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal FPE
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal GRANT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal HUP
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal ILL
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal IO
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal LOST
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal LWP
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal MSG
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal PHONE
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal PIPE
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal POLL
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal PRIO
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal PROF
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal PWR
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal QUIT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal RETRACT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal SAK
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal SEGV
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal SOUND
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal SYS
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal TERM
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal TSTP
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal TTIN
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal TTOU
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal URG
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal USR1
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal USR2
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal VTALRM
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal WAITING
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal WINCH
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal WIND
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal XCPU
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal XFSZ
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG33 stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG34 stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG35 stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG36 stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG37 stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG38 stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG39 stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG40 stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG41 stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG42 stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG43 stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG44 stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG45 stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG46 stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG47 stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG48 stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG49 stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG50 stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG51 stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG52 stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG53 stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG54 stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG55 stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG56 stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG57 stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG58 stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG59 stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG60 stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG61 stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG62 stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG63 stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGABRT stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGALRM stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGBUS stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGCHLD stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGCONT stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGDANGER stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGEMT stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGFPE stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGGRANT stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGHUP stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGILL stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGIO stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGLOST stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGLWP stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGMSG stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGPHONE stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGPIPE stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGPOLL stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGPRIO stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGPROF stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGPWR stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGQUIT stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGRETRACT stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGSAK stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGSEGV stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGSOUND stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGSYS stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGTERM stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGTSTP stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGTTIN stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGTTOU stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGURG stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGUSR1 stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGUSR2 stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGVTALRM stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGWAITING stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGWINCH stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGWIND stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGXCPU stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGXFSZ stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle all nostop noprint
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle all stop print
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: kill process, prepare to debug log file
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reload precord save file
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_33
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_34
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_35
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_36
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_37
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_38
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_39
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_40
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_41
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_42
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_43
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_44
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_45
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_46
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_47
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_48
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_49
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_50
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_51
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_52
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_53
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_54
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_55
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_56
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_57
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_58
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_59
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_60
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_61
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_62
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_63
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_ABRT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_ALRM
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_BUS
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_CHLD
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_CONT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_DANGER
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_EMT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_FPE
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_GRANT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_HUP
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_ILL
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_IO
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_LOST
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_LWP
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_MSG
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_PHONE
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_PIPE
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_POLL
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_PRIO
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_PROF
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_PWR
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_QUIT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_RETRACT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_SAK
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_SEGV
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_SOUND
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_SYS
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_TERM
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_TSTP
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_TTIN
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_TTOU
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_URG
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_USR1
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_USR2
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_VTALRM
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_WAITING
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_WINCH
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_WIND
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_XCPU
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_XFSZ
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 33
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 34
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 35
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 36
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 37
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 38
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 39
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 40
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 41
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 42
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 43
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 44
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 45
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 46
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 47
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 48
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 49
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 50
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 51
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 52
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 53
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 54
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 55
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 56
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 57
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 58
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 59
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 60
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 61
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 62
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 63
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of ABRT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of ALRM
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of BUS
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of CHLD
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of CONT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of DANGER
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of EMT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of FPE
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of GRANT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of HUP
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of ILL
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of IO
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of LOST
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of LWP
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of MSG
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of PHONE
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of PIPE
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of POLL
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of PRIO
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of PROF
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of PWR
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of QUIT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of RETRACT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of SAK
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of SEGV
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of SOUND
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of SYS
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of TERM
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of TSTP
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of TTIN
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of TTOU
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of URG
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of USR1
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of USR2
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of VTALRM
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of WAITING
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of WINCH
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of WIND
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of XCPU
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of XFSZ
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: save process recfile
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 33
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 34
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 35
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 36
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 37
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 38
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 39
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 40
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 41
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 42
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 43
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 44
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 45
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 46
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 47
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 48
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 49
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 50
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 51
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 52
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 53
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 54
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 55
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 56
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 57
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 58
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 59
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 60
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 61
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 62
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 63
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal ABRT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal ALRM
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal BUS
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal CHLD
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal CONT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal DANGER
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal EMT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal FPE
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal GRANT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal HUP
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal ILL
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal IO
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal LOST
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal LWP
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal MSG
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal PHONE
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal PIPE
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal POLL
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal PRIO
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal PROF
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal PWR
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal QUIT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal RETRACT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal SAK
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal SEGV
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal SOUND
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal SYS
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal TERM
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal TSTP
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal TTIN
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal TTOU
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal URG
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal USR1
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal USR2
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal VTALRM
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal WAITING
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal WINCH
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal WIND
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal XCPU
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal XFSZ
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: turn on process record
==============================================

*** 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/1d/1dd588507782591478882a891f64945af9e2b86c//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/1d/1dd588507782591478882a891f64945af9e2b86c//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-04  1:02 [binutils-gdb] Don't call decode_line_with_current_source from select_source_symtab gdb-buildbot
@ 2019-10-04  1:02 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-04  1:02 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/836

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        5c281dbb2458be9d58355e865f527e96b40bcd8c

Subject of commit:
        Don't call decode_line_with_current_source from select_source_symtab

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/5c/5c281dbb2458be9d58355e865f527e96b40bcd8c/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: x/2i main+
==============================================

*** 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/5c/5c281dbb2458be9d58355e865f527e96b40bcd8c//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/5c/5c281dbb2458be9d58355e865f527e96b40bcd8c//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-03 20:01 [binutils-gdb] Search global block from basic_lookup_symbol_nonlocal gdb-buildbot
@ 2019-10-03 22:29 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-03 22:29 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/835

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        d3d323915c034ed9f7465568e1876aa269ab1d0f

Subject of commit:
        Search global block from basic_lookup_symbol_nonlocal

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/d3/d3d323915c034ed9f7465568e1876aa269ab1d0f/

*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/O2_float_param.exp: compilation foo.adb
new FAIL: gdb.ada/access_tagged_param.exp: compilation foo.adb
new FAIL: gdb.ada/access_to_unbounded_array.exp: compilation foo.adb
new FAIL: gdb.ada/addr_arith.exp: compilation foo_na07_019.adb
new FAIL: gdb.ada/aliased_array.exp: compilation foo.adb
new FAIL: gdb.ada/arr_acc_idx_w_gap.exp: compilation enum_with_gap_main.adb
new FAIL: gdb.ada/arr_arr.exp: compilation foo.adb
new FAIL: gdb.ada/arr_enum_idx_w_gap.exp: compilation foo_q418_043.adb
new FAIL: gdb.ada/array_bounds.exp: compilation bar.adb
new FAIL: gdb.ada/array_char_idx.exp: compilation foo.adb
new FAIL: gdb.ada/array_of_variable_length.exp: compilation foo.adb
new FAIL: gdb.ada/array_ptr_renaming.exp: compilation foo.adb
new FAIL: gdb.ada/array_return.exp: compilation p.adb
new FAIL: gdb.ada/array_subscript_addr.exp: compilation p.adb
new FAIL: gdb.ada/arraydim.exp: compilation foo.adb
new FAIL: gdb.ada/arrayidx.exp: compilation p.adb
new FAIL: gdb.ada/arrayparam.exp: compilation foo.adb
new FAIL: gdb.ada/arrayptr.exp: compilation foo.adb
new FAIL: gdb.ada/assign_arr.exp: compilation main_p324_051.adb
new FAIL: gdb.ada/atomic_enum.exp: compilation foo.adb
new FAIL: gdb.ada/attr_ref_and_charlit.exp: compilation foo.adb
new FAIL: gdb.ada/bad-task-bp-keyword.exp: compilation foo.adb
new FAIL: gdb.ada/big_packed_array.exp: compilation foo_ra24_010.adb
new FAIL: gdb.ada/bp_c_mixed_case.exp: compilation foo_h731_021.adb
new FAIL: gdb.ada/bp_enum_homonym.exp: compilation p.adb
new FAIL: gdb.ada/bp_fun_addr.exp: compilation bp_fun_addr.adb
new FAIL: gdb.ada/bp_inlined_func.exp: compilation foo.adb
new FAIL: gdb.ada/bp_on_var.exp: compilation foo.adb
new FAIL: gdb.ada/bp_range_type.exp: compilation foo.adb
new FAIL: gdb.ada/bp_reset.exp: compilation foo.adb
new FAIL: gdb.ada/byte_packed_arr.exp: compilation reprod_main.adb
new FAIL: gdb.ada/catch_assert_if.exp: compilation bla.adb
new FAIL: gdb.ada/catch_ex.exp: compilation foo.adb
new FAIL: gdb.ada/char_enum.exp: compilation foo.adb
new FAIL: gdb.ada/char_param.exp: compilation foo.adb
new FAIL: gdb.ada/complete.exp: compilation foo.adb
new FAIL: gdb.ada/cond_lang.exp: compilation a.adb
new FAIL: gdb.ada/dgopt.exp: compilation x.adb
new FAIL: gdb.ada/disc_arr_bound.exp: compilation foo_n612_026.adb
new FAIL: gdb.ada/display_nested.exp: compilation foo.adb
new FAIL: gdb.ada/dyn_arrayidx.exp: compilation foo.adb
new FAIL: gdb.ada/dyn_loc.exp: compilation p.adb
new FAIL: gdb.ada/dyn_stride.exp: compilation foo.adb
new FAIL: gdb.ada/enum_idx_packed.exp: compilation foo.adb
new FAIL: gdb.ada/excep_handle.exp: compilation foo.adb
new FAIL: gdb.ada/expr_delims.exp: compilation foo.adb
new FAIL: gdb.ada/expr_with_funcall.exp: compilation expr_r821_013.adb
new FAIL: gdb.ada/exprs.exp: compilation p.adb
new FAIL: gdb.ada/fin_fun_out.exp: compilation foo_o525_013.adb
new FAIL: gdb.ada/fixed_cmp.exp: compilation fixed.adb
new FAIL: gdb.ada/fixed_points.exp: compilation fixed_points.adb
new FAIL: gdb.ada/float_param.exp: compilation foo.adb
new FAIL: gdb.ada/formatted_ref.exp: compilation formatted_ref.adb
new FAIL: gdb.ada/frame_arg_lang.exp: compilation bla.adb
new FAIL: gdb.ada/frame_args.exp: compilation foo.adb
new FAIL: gdb.ada/fullname_bp.exp: compilation foo.adb
new FAIL: gdb.ada/fun_addr.exp: compilation foo.adb
new FAIL: gdb.ada/fun_in_declare.exp: compilation foo.adb
new FAIL: gdb.ada/fun_overload_menu.exp: compilation foo.adb
new FAIL: gdb.ada/fun_renaming.exp: compilation fun_renaming.adb
new FAIL: gdb.ada/funcall_param.exp: compilation foo.adb
new FAIL: gdb.ada/funcall_ptr.exp: compilation foo.adb
new FAIL: gdb.ada/funcall_ref.exp: compilation foo.adb
new FAIL: gdb.ada/homonym.exp: compilation homonym_main.adb
new FAIL: gdb.ada/info_addr_mixed_case.exp: compilation foo.adb
new FAIL: gdb.ada/info_exc.exp: compilation foo.adb
new FAIL: gdb.ada/info_locals_renaming.exp: compilation foo.adb
new FAIL: gdb.ada/int_deref.exp: compilation foo.adb
new FAIL: gdb.ada/interface.exp: compilation foo.adb
new FAIL: gdb.ada/iwide.exp: compilation p.adb
new FAIL: gdb.ada/lang_switch.exp: compilation lang_switch.adb
new FAIL: gdb.ada/length_cond.exp: compilation length_cond.adb
new FAIL: gdb.ada/maint_with_ada.exp: compilation var_arr_typedef.adb
new FAIL: gdb.ada/mi_catch_assert.exp: compilation bla.adb
new FAIL: gdb.ada/mi_catch_ex_hand.exp: compilation foo.adb
new FAIL: gdb.ada/mi_ex_cond.exp: compilation foo.adb
new FAIL: gdb.ada/mi_exc_info.exp: compilation foo.adb
new FAIL: gdb.ada/mi_interface.exp: compilation foo.adb
new FAIL: gdb.ada/mi_ref_changeable.exp: compilation foo_rb20_056.adb
new FAIL: gdb.ada/mi_string_access.exp: compilation bar.adb
new FAIL: gdb.ada/mi_task_arg.exp: compilation task_switch.adb
new FAIL: gdb.ada/mi_task_info.exp: compilation task_switch.adb
new FAIL: gdb.ada/mi_var_array.exp: compilation bar.adb
new FAIL: gdb.ada/mi_var_union.exp: compilation bar.adb
new FAIL: gdb.ada/mod_from_name.exp: compilation foo.adb
new FAIL: gdb.ada/n_arr_bound.exp: compilation foo.adb
new FAIL: gdb.ada/notcplusplus.exp: compilation foo.adb
new FAIL: gdb.ada/null_array.exp: compilation foo.adb
new FAIL: gdb.ada/null_record.exp: compilation null_record.adb
new FAIL: gdb.ada/operator_bp.exp: compilation ops_test.adb
new FAIL: gdb.ada/optim_drec.exp: compilation foo.adb
new FAIL: gdb.ada/out_of_line_in_inlined.exp: compilation foo_o224_021.adb
new FAIL: gdb.ada/packed_array.exp: compilation pa.adb
new FAIL: gdb.ada/packed_array_assign.exp: compilation tester.adb
new FAIL: gdb.ada/packed_tagged.exp: compilation comp_bug.adb
new FAIL: gdb.ada/pckd_arr_ren.exp: compilation foo.adb
new FAIL: gdb.ada/pckd_neg.exp: compilation foo_o508_021.adb
new FAIL: gdb.ada/pkd_arr_elem.exp: compilation failure.adb
new FAIL: gdb.ada/pp-rec-component.exp: compilation foo.adb
new FAIL: gdb.ada/print_chars.exp: compilation foo.adb
new FAIL: gdb.ada/print_pc.exp: compilation dummy.adb
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: ptype 3 * 2.0
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: ptype 3 / 2.0
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: set lang ada
new FAIL: gdb.ada/ptype_array.exp: compilation foo.adb
new FAIL: gdb.ada/ptype_field.exp: compilation foo.adb
new FAIL: gdb.ada/ptype_tagged_param.exp: compilation foo.adb
new FAIL: gdb.ada/py_range.exp: compilation foo.adb
new FAIL: gdb.ada/py_taft.exp: compilation main.adb
new FAIL: gdb.ada/rdv_wait.exp: compilation foo.adb
new FAIL: gdb.ada/rec_comp.exp: compilation bar_o203_012.adb
new FAIL: gdb.ada/rec_return.exp: compilation foo.adb
new FAIL: gdb.ada/ref_param.exp: compilation foo.adb
new FAIL: gdb.ada/ref_tick_size.exp: compilation p.adb
new FAIL: gdb.ada/repeat_dyn.exp: compilation foo_oc22_002.adb
new FAIL: gdb.ada/same_component_name.exp: compilation foo.adb
new FAIL: gdb.ada/same_enum.exp: compilation a.adb
new FAIL: gdb.ada/scoped_watch.exp: compilation foo_p708_025.adb
new FAIL: gdb.ada/set_pckd_arr_elt.exp: compilation foo.adb
new FAIL: gdb.ada/set_wstr.exp: compilation a.adb
new FAIL: gdb.ada/small_reg_param.exp: compilation foo.adb
new FAIL: gdb.ada/str_binop_equal.exp: compilation foo_p211_061.adb
new FAIL: gdb.ada/str_uninit.exp: compilation parse.adb
new FAIL: gdb.ada/sym_print_name.exp: compilation foo.adb
new FAIL: gdb.ada/taft_type.exp: compilation p.adb
new FAIL: gdb.ada/tagged.exp: compilation foo.adb
new FAIL: gdb.ada/tagged_access.exp: compilation p.adb
new FAIL: gdb.ada/tagged_not_init.exp: compilation foo.adb
new FAIL: gdb.ada/task_bp.exp: compilation foo.adb
new FAIL: gdb.ada/task_switch_in_core.exp: compilation crash.adb
new FAIL: gdb.ada/tasks.exp: compilation foo.adb
new FAIL: gdb.ada/tick_last_segv.exp: compilation foo.adb
new FAIL: gdb.ada/tick_length_array_enum_idx.exp: compilation foo_n207_004.adb
new FAIL: gdb.ada/type_coercion.exp: compilation assign.adb
new FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: compilation foo.adb
new FAIL: gdb.ada/var_arr_attrs.exp: compilation foo_o115_002.adb
new FAIL: gdb.ada/variant_record_packed_array.exp: compilation foo.adb
new FAIL: gdb.ada/varsize_limit.exp: compilation vsizelim.adb
new FAIL: gdb.ada/vla.exp: compilation vla.adb
new FAIL: gdb.ada/watch_minus_l.exp: compilation foo_ra10_006.adb
new FAIL: gdb.ada/whatis_array_val.exp: compilation foo.adb
new FAIL: gdb.ada/widewide.exp: compilation foo.adb
new FAIL: gdb.ada/win_fu_syms.exp: compilation foo.adb
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: set tdesc filename $srcdir/gdb.arch/arc-tdesc-cpu.xml
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: set tdesc filename /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.arch/arc-tdesc-cpu/trivial.xml
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: setting HS architecture
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: .text is readable
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: complete set architecture i386
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: complete set gnutarget
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: load core file
new UNRESOLVED: gdb.base/alias.exp: -a print elements 47
new UNRESOLVED: gdb.base/alias.exp: abbrev -a not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set2 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set3 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set4 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set5 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set6 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: alias -a -- -a = set
new UNRESOLVED: gdb.base/alias.exp: alias -a -- set6 = set
new UNRESOLVED: gdb.base/alias.exp: alias -a set2=set
new UNRESOLVED: gdb.base/alias.exp: alias -a set3= set
new UNRESOLVED: gdb.base/alias.exp: alias -a set4 =set
new UNRESOLVED: gdb.base/alias.exp: alias -a set5 = set
new UNRESOLVED: gdb.base/alias.exp: alias assigne
new UNRESOLVED: gdb.base/alias.exp: alias assigne imprime
new UNRESOLVED: gdb.base/alias.exp: alias assigne imprime limite-elements
new UNRESOLVED: gdb.base/alias.exp: alias foo=bar
new UNRESOLVED: gdb.base/alias.exp: alias set pr elms = set p elem
new UNRESOLVED: gdb.base/alias.exp: alias set print max-elements using assigne imprime
new UNRESOLVED: gdb.base/alias.exp: alias set2=set
new UNRESOLVED: gdb.base/alias.exp: alias spe = set p elem
new UNRESOLVED: gdb.base/alias.exp: assigne imprime elements 53
new UNRESOLVED: gdb.base/alias.exp: assigne imprime limite-elements 54
new UNRESOLVED: gdb.base/alias.exp: assigne imprime prefix not defined
new UNRESOLVED: gdb.base/alias.exp: assigne print elements 52
new UNRESOLVED: gdb.base/alias.exp: help set print
new UNRESOLVED: gdb.base/alias.exp: mismatched length
new UNRESOLVED: gdb.base/alias.exp: mismatched prefix
new UNRESOLVED: gdb.base/alias.exp: set imprime elements 55
new UNRESOLVED: gdb.base/alias.exp: set imprime prefix not defined
new UNRESOLVED: gdb.base/alias.exp: set pr elms 51
new UNRESOLVED: gdb.base/alias.exp: set print limite-elements 56
new UNRESOLVED: gdb.base/alias.exp: set print max-elements 57
new UNRESOLVED: gdb.base/alias.exp: set2 print elements 42
new UNRESOLVED: gdb.base/alias.exp: set3 print elements 43
new UNRESOLVED: gdb.base/alias.exp: set4 print elements 44
new UNRESOLVED: gdb.base/alias.exp: set5 print elements 45
new UNRESOLVED: gdb.base/alias.exp: set6 print elements 46
new UNRESOLVED: gdb.base/alias.exp: spe 50
new UNRESOLVED: gdb.base/alias.exp: verify -a
new UNRESOLVED: gdb.base/alias.exp: verify 52
new UNRESOLVED: gdb.base/alias.exp: verify 53
new UNRESOLVED: gdb.base/alias.exp: verify 54
new UNRESOLVED: gdb.base/alias.exp: verify 55
new UNRESOLVED: gdb.base/alias.exp: verify 56
new UNRESOLVED: gdb.base/alias.exp: verify 57
new UNRESOLVED: gdb.base/alias.exp: verify set pr elms
new UNRESOLVED: gdb.base/alias.exp: verify set2
new UNRESOLVED: gdb.base/alias.exp: verify set3
new UNRESOLVED: gdb.base/alias.exp: verify set4
new UNRESOLVED: gdb.base/alias.exp: verify set5
new UNRESOLVED: gdb.base/alias.exp: verify set6
new UNRESOLVED: gdb.base/alias.exp: verify spe
new FAIL: gdb.base/all-architectures-0.exp: all passed
new FAIL: gdb.base/all-architectures-0.exp: at least one architecture
new FAIL: gdb.base/all-architectures-0.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-0.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-0.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-0.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-1.exp: all passed
new FAIL: gdb.base/all-architectures-1.exp: at least one architecture
new FAIL: gdb.base/all-architectures-1.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-1.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-1.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-1.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-2.exp: all passed
new FAIL: gdb.base/all-architectures-2.exp: at least one architecture
new FAIL: gdb.base/all-architectures-2.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-2.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-2.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-2.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-3.exp: all passed
new FAIL: gdb.base/all-architectures-3.exp: at least one architecture
new FAIL: gdb.base/all-architectures-3.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-3.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-3.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-3.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-4.exp: all passed
new FAIL: gdb.base/all-architectures-4.exp: at least one architecture
new FAIL: gdb.base/all-architectures-4.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-4.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-4.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-4.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-5.exp: all passed
new FAIL: gdb.base/all-architectures-5.exp: at least one architecture
new FAIL: gdb.base/all-architectures-5.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-5.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-5.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-5.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-6.exp: all passed
new FAIL: gdb.base/all-architectures-6.exp: at least one architecture
new FAIL: gdb.base/all-architectures-6.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-6.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-7.exp: all passed
new FAIL: gdb.base/all-architectures-7.exp: at least one architecture
new FAIL: gdb.base/all-architectures-7.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-7.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-7.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-7.exp: set max-completions unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: break main
new UNRESOLVED: gdb.base/argv0-symlink.exp: p argc
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print elements 200
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print elements unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print repeats 200
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print repeats unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: show print elements
new UNRESOLVED: gdb.base/argv0-symlink.exp: show print repeats
new UNRESOLVED: gdb.base/bad-file.exp: directory
new UNRESOLVED: gdb.base/bad-file.exp: neither file nor directory
new UNRESOLVED: gdb.base/bad-file.exp: non-existent file
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "info source": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "set not-a-thing 4" -x good-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "set not-a-thing 4": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -jslkflsdjlkfjlksdjf: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x bad-commands -ex "info source": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x bad-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands -ex "set not-a-thing 4": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands -x bad-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch: spawn
new UNRESOLVED: gdb.base/bitops.exp: print value of !0
new UNRESOLVED: gdb.base/bitops.exp: print value of !1
new UNRESOLVED: gdb.base/bitops.exp: print value of !10
new UNRESOLVED: gdb.base/bitops.exp: print value of !100
new UNRESOLVED: gdb.base/bitops.exp: print value of !1000
new UNRESOLVED: gdb.base/bitops.exp: print value of !2
new UNRESOLVED: gdb.base/bitops.exp: print value of
new UNRESOLVED: gdb.base/bitops.exp: print value of -!0
new UNRESOLVED: gdb.base/bitops.exp: print value of -1 < 0 > 1
new UNRESOLVED: gdb.base/bitops.exp: print value of -3>4
new UNRESOLVED: gdb.base/bitops.exp: print value of 0 == 8 > 128 >> 1 + 2 * 2
new UNRESOLVED: gdb.base/bitops.exp: print value of 0 || 1 && 0 | 0 ^ 0 == 8
new UNRESOLVED: gdb.base/bitops.exp: print value of 0 || 1 && 0 | 0 ^ 0 == 8 > 128 >>1 +2 *2
new UNRESOLVED: gdb.base/bitops.exp: print value of 0.0 || 0
new UNRESOLVED: gdb.base/bitops.exp: print value of 0.0 || 1.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 1.0 || 0
new UNRESOLVED: gdb.base/bitops.exp: print value of 10 & 5
new UNRESOLVED: gdb.base/bitops.exp: print value of 10 ^ 5
new UNRESOLVED: gdb.base/bitops.exp: print value of 10 | 5
new UNRESOLVED: gdb.base/bitops.exp: print value of 15 ^ 10 ^ 5 ^ 7
new UNRESOLVED: gdb.base/bitops.exp: print value of 2 > -3
new UNRESOLVED: gdb.base/bitops.exp: print value of 3 * 2 / 4.0 * 2.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3!=3.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3!=5.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3.5 < -4.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3.5 < 4.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3==3.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3==4.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3>=2.5
new UNRESOLVED: gdb.base/bitops.exp: print value of 3>=4.5
new UNRESOLVED: gdb.base/bitops.exp: print value of 8 << 2 >> 4
new UNRESOLVED: gdb.base/bitops.exp: print value of ~-!0
new UNRESOLVED: gdb.base/command-line-input.exp: print 1\\n + 2
new UNRESOLVED: gdb.base/command-line-input.exp: print 1\\n2
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: cmd complete ""
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: set max-completions 1
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: show editing
new UNRESOLVED: gdb.base/complete-empty.exp: show editing
new UNRESOLVED: gdb.base/default.exp:
new UNRESOLVED: gdb.base/default.exp: add-symbol-file
new UNRESOLVED: gdb.base/default.exp: append
new UNRESOLVED: gdb.base/default.exp: append binary
new UNRESOLVED: gdb.base/default.exp: append binary memory
new UNRESOLVED: gdb.base/default.exp: append binary value
new UNRESOLVED: gdb.base/default.exp: append memory
new UNRESOLVED: gdb.base/default.exp: append value
new UNRESOLVED: gdb.base/default.exp: call
new UNRESOLVED: gdb.base/default.exp: catch
new UNRESOLVED: gdb.base/default.exp: cd
new UNRESOLVED: gdb.base/default.exp: check if python 3
new UNRESOLVED: gdb.base/default.exp: clear
new UNRESOLVED: gdb.base/default.exp: commands
new UNRESOLVED: gdb.base/default.exp: condition
new UNRESOLVED: gdb.base/default.exp: continue
new UNRESOLVED: gdb.base/default.exp: continue "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: core-file
new UNRESOLVED: gdb.base/default.exp: define
new UNRESOLVED: gdb.base/default.exp: delete
new UNRESOLVED: gdb.base/default.exp: delete "d" abbreviation
new UNRESOLVED: gdb.base/default.exp: delete breakpoints
new UNRESOLVED: gdb.base/default.exp: delete display prompt
new UNRESOLVED: gdb.base/default.exp: detach
new UNRESOLVED: gdb.base/default.exp: directory prompt
new UNRESOLVED: gdb.base/default.exp: disable
new UNRESOLVED: gdb.base/default.exp: disable "dis" abbreviation
new UNRESOLVED: gdb.base/default.exp: disable "disa" abbreviation
new UNRESOLVED: gdb.base/default.exp: disable breakpoints
new UNRESOLVED: gdb.base/default.exp: disable display
new UNRESOLVED: gdb.base/default.exp: disassemble
new UNRESOLVED: gdb.base/default.exp: display
new UNRESOLVED: gdb.base/default.exp: do
new UNRESOLVED: gdb.base/default.exp: document
new UNRESOLVED: gdb.base/default.exp: down
new UNRESOLVED: gdb.base/default.exp: down-silently
new UNRESOLVED: gdb.base/default.exp: dump
new UNRESOLVED: gdb.base/default.exp: dump binary
new UNRESOLVED: gdb.base/default.exp: dump binary memory
new UNRESOLVED: gdb.base/default.exp: dump binary value
new UNRESOLVED: gdb.base/default.exp: dump ihex
new UNRESOLVED: gdb.base/default.exp: dump ihex memory
new UNRESOLVED: gdb.base/default.exp: dump ihex value
new UNRESOLVED: gdb.base/default.exp: dump memory
new UNRESOLVED: gdb.base/default.exp: dump srec
new UNRESOLVED: gdb.base/default.exp: dump srec memory
new UNRESOLVED: gdb.base/default.exp: dump srec value
new UNRESOLVED: gdb.base/default.exp: dump tekhex
new UNRESOLVED: gdb.base/default.exp: dump tekhex memory
new UNRESOLVED: gdb.base/default.exp: dump tekhex value
new UNRESOLVED: gdb.base/default.exp: dump value
new UNRESOLVED: gdb.base/default.exp: echo
new UNRESOLVED: gdb.base/default.exp: enable
new UNRESOLVED: gdb.base/default.exp: enable breakpoints
new UNRESOLVED: gdb.base/default.exp: enable breakpoints delete
new UNRESOLVED: gdb.base/default.exp: enable breakpoints once
new UNRESOLVED: gdb.base/default.exp: enable delete
new UNRESOLVED: gdb.base/default.exp: enable display
new UNRESOLVED: gdb.base/default.exp: enable once
new UNRESOLVED: gdb.base/default.exp: fg
new UNRESOLVED: gdb.base/default.exp: finish
new UNRESOLVED: gdb.base/default.exp: forward-search
new UNRESOLVED: gdb.base/default.exp: frame
new UNRESOLVED: gdb.base/default.exp: frame "f" abbreviation
new UNRESOLVED: gdb.base/default.exp: gcore
new UNRESOLVED: gdb.base/default.exp: generate-core-file
new UNRESOLVED: gdb.base/default.exp: handle
new UNRESOLVED: gdb.base/default.exp: help
new UNRESOLVED: gdb.base/default.exp: help "h" abbreviation
new UNRESOLVED: gdb.base/default.exp: ignore
new UNRESOLVED: gdb.base/default.exp: info
new UNRESOLVED: gdb.base/default.exp: info "i" abbreviation
new UNRESOLVED: gdb.base/default.exp: info address
new UNRESOLVED: gdb.base/default.exp: info all-registers
new UNRESOLVED: gdb.base/default.exp: info args
new UNRESOLVED: gdb.base/default.exp: info bogus-gdb-command
new UNRESOLVED: gdb.base/default.exp: info breakpoints
new UNRESOLVED: gdb.base/default.exp: info copying
new UNRESOLVED: gdb.base/default.exp: info display
new UNRESOLVED: gdb.base/default.exp: info files
new UNRESOLVED: gdb.base/default.exp: info float
new UNRESOLVED: gdb.base/default.exp: info frame
new UNRESOLVED: gdb.base/default.exp: info frame "f" abbreviation
new UNRESOLVED: gdb.base/default.exp: info functions
new UNRESOLVED: gdb.base/default.exp: info locals
new UNRESOLVED: gdb.base/default.exp: info program
new UNRESOLVED: gdb.base/default.exp: info registers
new UNRESOLVED: gdb.base/default.exp: info set
new UNRESOLVED: gdb.base/default.exp: info source
new UNRESOLVED: gdb.base/default.exp: info sources
new UNRESOLVED: gdb.base/default.exp: info stack
new UNRESOLVED: gdb.base/default.exp: info stack "s" abbreviation
new UNRESOLVED: gdb.base/default.exp: info symbol
new UNRESOLVED: gdb.base/default.exp: info target
new UNRESOLVED: gdb.base/default.exp: info terminal
new UNRESOLVED: gdb.base/default.exp: info threads
new UNRESOLVED: gdb.base/default.exp: info types
new UNRESOLVED: gdb.base/default.exp: info variables
new UNRESOLVED: gdb.base/default.exp: info vector
new UNRESOLVED: gdb.base/default.exp: info warranty
new UNRESOLVED: gdb.base/default.exp: info watchpoints
new UNRESOLVED: gdb.base/default.exp: inspect
new UNRESOLVED: gdb.base/default.exp: jump
new UNRESOLVED: gdb.base/default.exp: kill
new UNRESOLVED: gdb.base/default.exp: list
new UNRESOLVED: gdb.base/default.exp: list "l" abbreviation
new UNRESOLVED: gdb.base/default.exp: load
new UNRESOLVED: gdb.base/default.exp: next
new UNRESOLVED: gdb.base/default.exp: next "n" abbreviation
new UNRESOLVED: gdb.base/default.exp: nexti
new UNRESOLVED: gdb.base/default.exp: nexti "ni" abbreviation
new UNRESOLVED: gdb.base/default.exp: output
new UNRESOLVED: gdb.base/default.exp: overlay
new UNRESOLVED: gdb.base/default.exp: overlay auto
new UNRESOLVED: gdb.base/default.exp: overlay list
new UNRESOLVED: gdb.base/default.exp: overlay manual #1
new UNRESOLVED: gdb.base/default.exp: overlay manual #2
new UNRESOLVED: gdb.base/default.exp: overlay map #1
new UNRESOLVED: gdb.base/default.exp: overlay map #2
new UNRESOLVED: gdb.base/default.exp: overlay off
new UNRESOLVED: gdb.base/default.exp: overlay on
new UNRESOLVED: gdb.base/default.exp: overlay unmap #1
new UNRESOLVED: gdb.base/default.exp: overlay unmap #2
new UNRESOLVED: gdb.base/default.exp: print
new UNRESOLVED: gdb.base/default.exp: print "p" abbreviation
new UNRESOLVED: gdb.base/default.exp: printf
new UNRESOLVED: gdb.base/default.exp: ptype
new UNRESOLVED: gdb.base/default.exp: pwd
new UNRESOLVED: gdb.base/default.exp: rbreak
new UNRESOLVED: gdb.base/default.exp: restore
new UNRESOLVED: gdb.base/default.exp: return
new UNRESOLVED: gdb.base/default.exp: reverse-search
new UNRESOLVED: gdb.base/default.exp: search
new UNRESOLVED: gdb.base/default.exp: section
new UNRESOLVED: gdb.base/default.exp: set
new UNRESOLVED: gdb.base/default.exp: set annotate
new UNRESOLVED: gdb.base/default.exp: set args
new UNRESOLVED: gdb.base/default.exp: set check "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check "ch" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check "check" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check range
new UNRESOLVED: gdb.base/default.exp: set check type
new UNRESOLVED: gdb.base/default.exp: set complaints
new UNRESOLVED: gdb.base/default.exp: set confirm
new UNRESOLVED: gdb.base/default.exp: set environment
new UNRESOLVED: gdb.base/default.exp: set height
new UNRESOLVED: gdb.base/default.exp: set history
new UNRESOLVED: gdb.base/default.exp: set history expansion
new UNRESOLVED: gdb.base/default.exp: set history filename
new UNRESOLVED: gdb.base/default.exp: set history save
new UNRESOLVED: gdb.base/default.exp: set history save off
new UNRESOLVED: gdb.base/default.exp: set history size
new UNRESOLVED: gdb.base/default.exp: set language
new UNRESOLVED: gdb.base/default.exp: set listsize
new UNRESOLVED: gdb.base/default.exp: set print
new UNRESOLVED: gdb.base/default.exp: set print "p" abbreviation
new UNRESOLVED: gdb.base/default.exp: set print "pr" abbreviation
new UNRESOLVED: gdb.base/default.exp: set print address
new UNRESOLVED: gdb.base/default.exp: set print array
new UNRESOLVED: gdb.base/default.exp: set print asm-demangle
new UNRESOLVED: gdb.base/default.exp: set print demangle
new UNRESOLVED: gdb.base/default.exp: set print elements
new UNRESOLVED: gdb.base/default.exp: set print object
new UNRESOLVED: gdb.base/default.exp: set print pretty
new UNRESOLVED: gdb.base/default.exp: set print sevenbit-strings
new UNRESOLVED: gdb.base/default.exp: set print union
new UNRESOLVED: gdb.base/default.exp: set print vtbl
new UNRESOLVED: gdb.base/default.exp: set radix
new UNRESOLVED: gdb.base/default.exp: set the history filename
new UNRESOLVED: gdb.base/default.exp: set variable
new UNRESOLVED: gdb.base/default.exp: set verbose
new UNRESOLVED: gdb.base/default.exp: set width
new UNRESOLVED: gdb.base/default.exp: set write
new UNRESOLVED: gdb.base/default.exp: shell echo Hi dad!
new UNRESOLVED: gdb.base/default.exp: show
new UNRESOLVED: gdb.base/default.exp: show annotate
new UNRESOLVED: gdb.base/default.exp: show args
new UNRESOLVED: gdb.base/default.exp: show check "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check "ch" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check "check" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check range
new UNRESOLVED: gdb.base/default.exp: show check type
new UNRESOLVED: gdb.base/default.exp: show commands
new UNRESOLVED: gdb.base/default.exp: show complaints
new UNRESOLVED: gdb.base/default.exp: show confirm
new UNRESOLVED: gdb.base/default.exp: show convenience
new UNRESOLVED: gdb.base/default.exp: show directories
new UNRESOLVED: gdb.base/default.exp: show editing
new UNRESOLVED: gdb.base/default.exp: show height
new UNRESOLVED: gdb.base/default.exp: show history
new UNRESOLVED: gdb.base/default.exp: show history expansion
new UNRESOLVED: gdb.base/default.exp: show history filename
new UNRESOLVED: gdb.base/default.exp: show history save
new UNRESOLVED: gdb.base/default.exp: show history size
new UNRESOLVED: gdb.base/default.exp: show language
new UNRESOLVED: gdb.base/default.exp: show listsize
new UNRESOLVED: gdb.base/default.exp: show p
new UNRESOLVED: gdb.base/default.exp: show paths
new UNRESOLVED: gdb.base/default.exp: show pr
new UNRESOLVED: gdb.base/default.exp: show print
new UNRESOLVED: gdb.base/default.exp: show print address
new UNRESOLVED: gdb.base/default.exp: show print array
new UNRESOLVED: gdb.base/default.exp: show print asm-demangle
new UNRESOLVED: gdb.base/default.exp: show print demangle
new UNRESOLVED: gdb.base/default.exp: show print elements
new UNRESOLVED: gdb.base/default.exp: show print object
new UNRESOLVED: gdb.base/default.exp: show print pretty
new UNRESOLVED: gdb.base/default.exp: show print sevenbit-strings
new UNRESOLVED: gdb.base/default.exp: show print union
new UNRESOLVED: gdb.base/default.exp: show print vtbl
new UNRESOLVED: gdb.base/default.exp: show prompt
new UNRESOLVED: gdb.base/default.exp: show radix
new UNRESOLVED: gdb.base/default.exp: show user
new UNRESOLVED: gdb.base/default.exp: show values
new UNRESOLVED: gdb.base/default.exp: show verbose
new UNRESOLVED: gdb.base/default.exp: show version
new UNRESOLVED: gdb.base/default.exp: show width
new UNRESOLVED: gdb.base/default.exp: show write
new UNRESOLVED: gdb.base/default.exp: signal
new UNRESOLVED: gdb.base/default.exp: source
new UNRESOLVED: gdb.base/default.exp: step "s" abbreviation #1
new UNRESOLVED: gdb.base/default.exp: step "s" abbreviation #2
new UNRESOLVED: gdb.base/default.exp: step #1
new UNRESOLVED: gdb.base/default.exp: step #2
new UNRESOLVED: gdb.base/default.exp: stepi
new UNRESOLVED: gdb.base/default.exp: stepi "si" abbreviation
new UNRESOLVED: gdb.base/default.exp: symbol-file
new UNRESOLVED: gdb.base/default.exp: target
new UNRESOLVED: gdb.base/default.exp: target native
new UNRESOLVED: gdb.base/default.exp: tbreak
new UNRESOLVED: gdb.base/default.exp: thread
new UNRESOLVED: gdb.base/default.exp: thread apply
new UNRESOLVED: gdb.base/default.exp: thread find
new UNRESOLVED: gdb.base/default.exp: thread name
new UNRESOLVED: gdb.base/default.exp: undisplay prompt
new UNRESOLVED: gdb.base/default.exp: unset
new UNRESOLVED: gdb.base/default.exp: unset environment prompt
new UNRESOLVED: gdb.base/default.exp: until
new UNRESOLVED: gdb.base/default.exp: until "u" abbreviation
new UNRESOLVED: gdb.base/default.exp: up-silently
new UNRESOLVED: gdb.base/default.exp: verify python support
new UNRESOLVED: gdb.base/default.exp: watch
new UNRESOLVED: gdb.base/default.exp: whatis
new UNRESOLVED: gdb.base/default.exp: where
new UNRESOLVED: gdb.base/default.exp: x
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567890123456789012345678901234dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567890123456dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567890123456.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567890123456789012345678901234.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567890123456789012345678901234dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567890123456dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E384dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E6144dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E96df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2147483648ll
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2147483648ull
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2ll
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 4294967296ull
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd < 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd < 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df + 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df + 1.2f
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df < 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df < 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df > 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl < 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl < 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl > 2
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd * 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd + 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd - 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd / 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df * 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df + 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df - 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df / 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl * 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl + 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl - 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl / 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567890123456.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567890123456789012345678901234.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 + 1.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 > 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 > 3.1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.1dd + 2.7df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.1df + 2.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.3dd + 2.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.3dl + 2.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.6df + 2.7dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.6dl + 2.7df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 3 + 2.1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 1.2df + 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2 + 1.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dd + 2.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dd + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dl + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 3 + 2.1dl
new UNRESOLVED: gdb.base/echo.exp: echo test
new UNRESOLVED: gdb.base/empty_exe.exp: file ''
new UNRESOLVED: gdb.base/empty_exe.exp: print 1
new UNRESOLVED: gdb.base/endian.exp: auto target endianness
new UNRESOLVED: gdb.base/endian.exp: auto target endianness big
new UNRESOLVED: gdb.base/endian.exp: auto target endianness little
new UNRESOLVED: gdb.base/endian.exp: default target endianness
new UNRESOLVED: gdb.base/endian.exp: get target endianness
new FAIL: gdb.base/endian.exp: override auto target endianness big
new FAIL: gdb.base/endian.exp: override auto target endianness little
new UNRESOLVED: gdb.base/endian.exp: override target endianness big
new FAIL: gdb.base/endian.exp: override target endianness little
new UNRESOLVED: gdb.base/endian.exp: previously big default executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously big default no executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously little default executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously little default no executable endianness
new UNRESOLVED: gdb.base/endian.exp: set target endianness
new UNRESOLVED: gdb.base/endian.exp: set target endianness big
new UNRESOLVED: gdb.base/endian.exp: set target endianness little
new UNRESOLVED: gdb.base/environ.exp: all environment variables have been unset
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable previously undefined
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable using = syntax
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable with trailing equals
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable with trailing whitespace
new UNRESOLVED: gdb.base/environ.exp: confirm unset environment variable worked
new UNRESOLVED: gdb.base/environ.exp: set environment variable
new UNRESOLVED: gdb.base/environ.exp: set environment variable previously undefined
new UNRESOLVED: gdb.base/environ.exp: set environment variable to null value
new UNRESOLVED: gdb.base/environ.exp: set environment variable using = syntax
new UNRESOLVED: gdb.base/environ.exp: set environment variable with trailing equals
new UNRESOLVED: gdb.base/environ.exp: set environment variable with trailing whitespace
new UNRESOLVED: gdb.base/environ.exp: set environment without arguments
new UNRESOLVED: gdb.base/environ.exp: set environment without variable name
new UNRESOLVED: gdb.base/environ.exp: set path works properly
new UNRESOLVED: gdb.base/environ.exp: show environment works
new UNRESOLVED: gdb.base/environ.exp: show non-existent environment variable
new UNRESOLVED: gdb.base/environ.exp: show null environment variable
new UNRESOLVED: gdb.base/environ.exp: show paths works properly
new UNRESOLVED: gdb.base/environ.exp: unset all environment variables
new UNRESOLVED: gdb.base/environ.exp: unset environment variable
new UNRESOLVED: gdb.base/eval.exp: first eval.
new UNRESOLVED: gdb.base/eval.exp: initialize $a.
new UNRESOLVED: gdb.base/eval.exp: second eval.
new UNRESOLVED: gdb.base/gdb1056.exp: print 1/0
new UNRESOLVED: gdb.base/gdb1056.exp: test unsigned division by zero
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize= 20 : show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize= 20 : show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5ab: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5ab: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=0: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=0: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=10zab: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=10zab: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=20: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=20: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=50: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=50: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=99999999999999999999999999999999999: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=99999999999999999999999999999999999: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=not_an_integer: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=not_an_integer: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=1000: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=1000: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=foo: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=foo: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/zero: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/zero: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: appending: server show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: creating: server show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: print 1
new UNRESOLVED: gdb.base/help.exp: apropos \
new UNRESOLVED: gdb.base/help.exp: apropos apropos
new UNRESOLVED: gdb.base/help.exp: apropos handle signal
new UNRESOLVED: gdb.base/help.exp: disable pagination
new UNRESOLVED: gdb.base/help.exp: help aliases
new UNRESOLVED: gdb.base/help.exp: help backtrace
new UNRESOLVED: gdb.base/help.exp: help backtrace "bt" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "b" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "br" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "bre" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "brea" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "break" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoints
new UNRESOLVED: gdb.base/help.exp: help commands
new UNRESOLVED: gdb.base/help.exp: help data
new UNRESOLVED: gdb.base/help.exp: help delete
new UNRESOLVED: gdb.base/help.exp: help delete "d" abbreviation
new UNRESOLVED: gdb.base/help.exp: help files
new UNRESOLVED: gdb.base/help.exp: help gotcha
new UNRESOLVED: gdb.base/help.exp: help help
new UNRESOLVED: gdb.base/help.exp: help help "h" abbreviation
new UNRESOLVED: gdb.base/help.exp: help info bogus-gdb-command
new UNRESOLVED: gdb.base/help.exp: help internals
new UNRESOLVED: gdb.base/help.exp: help obscure
new UNRESOLVED: gdb.base/help.exp: help running
new UNRESOLVED: gdb.base/help.exp: help show commands
new UNRESOLVED: gdb.base/help.exp: help show confirm
new UNRESOLVED: gdb.base/help.exp: help show copying
new UNRESOLVED: gdb.base/help.exp: help show warranty
new UNRESOLVED: gdb.base/help.exp: help stack
new UNRESOLVED: gdb.base/help.exp: help status
new UNRESOLVED: gdb.base/help.exp: help support
new UNRESOLVED: gdb.base/help.exp: help tracepoints
new UNRESOLVED: gdb.base/help.exp: help user-defined
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: set history remove-duplicates 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: set history remove-duplicates 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: set history remove-duplicates 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 3
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 4
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 3
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 4
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: set history remove-duplicates unlimited
new UNRESOLVED: gdb.base/history-duplicates.exp: show editing
new UNRESOLVED: gdb.base/history-duplicates.exp: show history remove-duplicates
new UNRESOLVED: gdb.base/ifelse.exp: call original define
new UNRESOLVED: gdb.base/ifelse.exp: call replacement define
new UNRESOLVED: gdb.base/ifelse.exp: create define with empty else
new UNRESOLVED: gdb.base/ifelse.exp: if 0 .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 0 with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 1 .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 1 with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #1
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #2
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #3
new UNRESOLVED: gdb.base/ifelse.exp: replace define with if .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: set confirm off
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tc-td: 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-tc-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ts: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tf: 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-tf-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-ts: 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-ti-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tl-td: 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-tl-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-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-td: 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-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tld: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tll-tf: 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-td: 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-ts-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ts: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tc-td: 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-tc-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-ts: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tf: 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-tf-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-ts: 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-ti-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tl-td: 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-tl-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-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-td: 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-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tld: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tll-tf: 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-td: 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-ts-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ts: failed to compile
new FAIL: gdb.base/info-os.exp: cannot compile test program
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode on
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode on
new UNRESOLVED: gdb.base/interact.exp: show interactive-mode
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode on
new UNRESOLVED: gdb.base/multi-line-starts-subshell.exp: gdb input still works
new UNRESOLVED: gdb.base/multi-line-starts-subshell.exp: spawn subshell from multi-line
new UNRESOLVED: gdb.base/osabi.exp: set debug arch 1
new UNRESOLVED: gdb.base/osabi.exp: set osabi none
new UNRESOLVED: gdb.base/page.exp: paged count
new UNRESOLVED: gdb.base/page.exp: paged count for interrupt
new UNRESOLVED: gdb.base/page.exp: paged count remainder
new UNRESOLVED: gdb.base/page.exp: paged help
new UNRESOLVED: gdb.base/page.exp: pagination is off
new UNRESOLVED: gdb.base/page.exp: pagination is on
new UNRESOLVED: gdb.base/page.exp: q
new UNRESOLVED: gdb.base/page.exp: quit while paging
new UNRESOLVED: gdb.base/page.exp: set editing off
new UNRESOLVED: gdb.base/page.exp: set height -1
new UNRESOLVED: gdb.base/page.exp: set height 10
new UNRESOLVED: gdb.base/page.exp: set height 5
new UNRESOLVED: gdb.base/page.exp: set pagination off
new UNRESOLVED: gdb.base/page.exp: set pagination on
new UNRESOLVED: gdb.base/page.exp: set width -1
new UNRESOLVED: gdb.base/page.exp: set width 30
new UNRESOLVED: gdb.base/page.exp: size=0: set height 0
new UNRESOLVED: gdb.base/page.exp: size=0: set height 200
new UNRESOLVED: gdb.base/page.exp: size=0: set width 0
new UNRESOLVED: gdb.base/page.exp: size=0: set width 200
new UNRESOLVED: gdb.base/page.exp: size=0: show height
new UNRESOLVED: gdb.base/page.exp: size=0: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=0: show width
new UNRESOLVED: gdb.base/page.exp: size=0: show width unlimited
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set height 0x80000000
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set height 200
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set width 0x80000000
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set width 200
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show height
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show width
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show width unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set height 200
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set height unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set width 200
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set width unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show height
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show width
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show width unlimited
new UNRESOLVED: gdb.base/page.exp: unpaged help
new UNRESOLVED: gdb.base/quit.exp: quit with expression
new UNRESOLVED: gdb.base/quit.exp: quit with syntax error
new UNRESOLVED: gdb.base/radix.exp: Output radix unchanged after rejecting 0
new UNRESOLVED: gdb.base/radix.exp: Reject input-radix 0
new UNRESOLVED: gdb.base/radix.exp: Reject input-radix 1
new UNRESOLVED: gdb.base/radix.exp: Reject output-radix 0
new UNRESOLVED: gdb.base/radix.exp: Reject output-radix 1
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 10
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 16
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 2
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 3
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 8
new UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 10
new UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 16
new UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 8
new UNRESOLVED: gdb.base/radix.exp: input radix unchanged after rejecting 0
new UNRESOLVED: gdb.base/radix.exp: input radix unchanged after rejecting 1
new UNRESOLVED: gdb.base/radix.exp: output radix unchanged after rejecting 1
new UNRESOLVED: gdb.base/radix.exp: output radix unchanged after rejection through set radix command
new UNRESOLVED: gdb.base/radix.exp: print
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -100; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -256; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -4; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -64; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -9; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -101; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -10; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -257; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -5; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -65; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -10; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -16; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -2; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -3; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -8; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -11; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -17; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -3; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -4; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -9; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -12; expect -12; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -20; expect -16; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -2; expect Invalid number "2"\.; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -9; expect Invalid number "9".; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 010; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 17; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect f; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 100; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 100; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 144; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 256; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 4; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 64; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 64; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 9; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 10101; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 21; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 4161; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 65793; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 91; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 101; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 10; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 257; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 5; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 65; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 10; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 10; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 12; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 16; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 2; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 3; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 8; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10; expect a; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 11; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 17; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 3; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 4; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 9; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 14; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 24; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20; expect 16; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20; expect 6; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 2; expect 2; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 30; expect Invalid number "30"\.; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 3; expect Invalid number "3"\.; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 4; expect Invalid number "4"\.; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 8; expect Invalid number "8".; input radix 8
new UNRESOLVED: gdb.base/radix.exp: reset radices
new UNRESOLVED: gdb.base/radix.exp: set input-radix 10
new UNRESOLVED: gdb.base/radix.exp: set input-radix 16
new UNRESOLVED: gdb.base/radix.exp: set input-radix 2
new UNRESOLVED: gdb.base/radix.exp: set input-radix 3
new UNRESOLVED: gdb.base/radix.exp: set input-radix 8
new UNRESOLVED: gdb.base/radix.exp: set output-radix 10
new UNRESOLVED: gdb.base/radix.exp: set output-radix 16
new UNRESOLVED: gdb.base/radix.exp: set output-radix 8
new UNRESOLVED: gdb.base/radix.exp: set radix 7 rejected
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 10
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 16
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 2
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 3
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 8
new UNRESOLVED: gdb.base/radix.exp: show radix, output radix 10
new UNRESOLVED: gdb.base/radix.exp: show radix, output radix 16
new UNRESOLVED: gdb.base/radix.exp: show radix, output radix 8
new UNRESOLVED: gdb.base/readline.exp: Simple operate-and-get-next - send p 1
new UNRESOLVED: gdb.base/readline.exp: arrow keys with secondary prompt
new UNRESOLVED: gdb.base/readline.exp: operate-and-get-next with secondary prompt - send if 1 > 0
new UNRESOLVED: gdb.base/readline.exp: print 42
new UNRESOLVED: gdb.base/readline.exp: show editing
new UNRESOLVED: gdb.base/remotetimeout.exp: correct remotetimeout printed
new UNRESOLVED: gdb.base/shell.exp: ! echo foo
new UNRESOLVED: gdb.base/shell.exp: ! exit 0
new UNRESOLVED: gdb.base/shell.exp: ! exit 1
new UNRESOLVED: gdb.base/shell.exp: ! kill -2 $$
new UNRESOLVED: gdb.base/shell.exp: !echo foo
new UNRESOLVED: gdb.base/shell.exp: -d spaces value missing
new UNRESOLVED: gdb.base/shell.exp: -d value missing
new UNRESOLVED: gdb.base/shell.exp: DELIM delimiter missing
new UNRESOLVED: gdb.base/shell.exp: SHELL_COMMAND missing
new UNRESOLVED: gdb.base/shell.exp: SHELL_COMMAND missing with delimiter
new UNRESOLVED: gdb.base/shell.exp: all missing
new UNRESOLVED: gdb.base/shell.exp: alternate 1char delim
new UNRESOLVED: gdb.base/shell.exp: alternate 1char delim, no space
new UNRESOLVED: gdb.base/shell.exp: alternate 3char delim
new UNRESOLVED: gdb.base/shell.exp: alternate 3char delim, no space
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe print 1 | "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| print 1 | "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|print 1 | "
new UNRESOLVED: gdb.base/shell.exp: define foo
new UNRESOLVED: gdb.base/shell.exp: delimiter missing due to missing space
new UNRESOLVED: gdb.base/shell.exp: double pipe
new UNRESOLVED: gdb.base/shell.exp: double pipe, pipe char
new UNRESOLVED: gdb.base/shell.exp: echo coucou
new UNRESOLVED: gdb.base/shell.exp: enter commands
new UNRESOLVED: gdb.base/shell.exp: no space around pipe char
new UNRESOLVED: gdb.base/shell.exp: pipe fail exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe fail exitsignal
new UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitsignal
new UNRESOLVED: gdb.base/shell.exp: pipe success exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe success exitsignal
new UNRESOLVED: gdb.base/shell.exp: repeat previous command
new UNRESOLVED: gdb.base/shell.exp: set max-completions 0
new UNRESOLVED: gdb.base/shell.exp: set max-completions 2
new UNRESOLVED: gdb.base/shell.exp: shell echo foo
new UNRESOLVED: gdb.base/shell.exp: shell fail exitcode
new UNRESOLVED: gdb.base/shell.exp: shell fail exitsignal
new UNRESOLVED: gdb.base/shell.exp: shell interrupt exitcode
new UNRESOLVED: gdb.base/shell.exp: shell interrupt exitsignal
new UNRESOLVED: gdb.base/shell.exp: shell success exitcode
new UNRESOLVED: gdb.base/shell.exp: shell success exitsignal
new UNRESOLVED: gdb.base/shell.exp: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
new UNRESOLVED: gdb.base/shell.exp: simple pipe
new UNRESOLVED: gdb.base/shell.exp: simple pipe with arg
new UNRESOLVED: gdb.base/shell.exp: | delimiter missing
new UNRESOLVED: gdb.base/shell.exp: |p 123| exit 0
new UNRESOLVED: gdb.base/shell.exp: |p 123| exit 1
new UNRESOLVED: gdb.base/shell.exp: |p 123| kill -2 $$
new UNRESOLVED: gdb.base/source-dir.exp: directory /nOtExStInG/a /nOtExStInG/b /nOtExStInG/c
new UNRESOLVED: gdb.base/source-dir.exp: directory /nOtExStInG/b /nOtExStInG/d /nOtExStInG/c
new UNRESOLVED: gdb.base/source.exp: script contains error
new UNRESOLVED: gdb.base/source.exp: set search directories
new UNRESOLVED: gdb.base/source.exp: source -s
new UNRESOLVED: gdb.base/source.exp: source -s -v
new UNRESOLVED: gdb.base/source.exp: source -v
new UNRESOLVED: gdb.base/source.exp: source -v -s
new UNRESOLVED: gdb.base/source.exp: source after -v
new UNRESOLVED: gdb.base/source.exp: source for-sure-nonexistant-file
new UNRESOLVED: gdb.base/source.exp: source source-nofile.gdb
new UNRESOLVED: gdb.base/step-over-syscall.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/step-over-syscall.exp: run to main
new UNRESOLVED: gdb.base/subst.exp: add depuis -> vers substitution rule
new UNRESOLVED: gdb.base/subst.exp: add from -> to substitution rule
new UNRESOLVED: gdb.base/subst.exp: add from1 -> to1 substitution rule
new UNRESOLVED: gdb.base/subst.exp: add source -> destination substitution rule
new UNRESOLVED: gdb.base/subst.exp: add substitution rule to empty string
new UNRESOLVED: gdb.base/subst.exp: deactivate GDB's confirmation interface
new UNRESOLVED: gdb.base/subst.exp: remove all remaining substitution rules
new UNRESOLVED: gdb.base/subst.exp: remove default substitution rules
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, first argument is empty string
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, too few arguments
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, too many arguments
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after all remaining rules removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after depuis rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after empty rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after from rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path depuis, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, after unsetting it
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from/path, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from_a_bad_path, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path garbage, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: show substitute-path, too many arguments
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path depuis
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path empty
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from after the rule was removed
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path, too many arguments
new UNRESOLVED: gdb.base/trace-commands.exp: define user command
new UNRESOLVED: gdb.base/trace-commands.exp: depth resets on error part 1
new UNRESOLVED: gdb.base/trace-commands.exp: depth resets on error part 2
new UNRESOLVED: gdb.base/trace-commands.exp: nested trace-commands test
new UNRESOLVED: gdb.base/trace-commands.exp: nested trace-commands test with source
new UNRESOLVED: gdb.base/trace-commands.exp: set trace-commands
new UNRESOLVED: gdb.base/trace-commands.exp: show trace-commands says off
new UNRESOLVED: gdb.base/trace-commands.exp: show trace-commands says on
new UNRESOLVED: gdb.base/trace-commands.exp: simple trace-commands test
new UNRESOLVED: gdb.base/trace-commands.exp: source -v
new UNRESOLVED: gdb.base/warning.exp: echo 23\n
new UNRESOLVED: gdb.btrace/cpu.exp: default cpu
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu auto
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/1
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0x0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo/bar
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu none
new UNRESOLVED: gdb.btrace/cpu.exp: set record
new UNRESOLVED: gdb.btrace/cpu.exp: set record btrace
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu auto
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/1
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0x0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo/bar
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu none
new UNRESOLVED: gdb.cp/debug-expr.exp: print dynamic_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: print reinterpret_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: print static_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: set debug expression 1
new UNRESOLVED: gdb.cp/debug-expr.exp: set language c++
new UNRESOLVED: gdb.cp/demangle.exp: auto: check demangling style
new UNRESOLVED: gdb.cp/demangle.exp: auto: set demangle-style
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c -- _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c++ -- _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c++ _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l garbage xyzdje
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z13BitPatterntoaOK10BitPatternccc
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z31DrawDestinationTransformedImageP7_XImageiiS0_iimjiijmmP4_XGCOK13ivTransformeriiii
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z3argOK7Complex
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN11RelateManip6EffectEO7ivEvent
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN20DisplayList_IteratorC4EO11DisplayList
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN3fooC4EOS_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN3fooC4EiOS_iS0_iS0_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE3PixC4EOKS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE7elementC2EOKS0_PS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE7elementC4EOKS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityEC4EOKS1_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4PixXI11VHDLLibrary14VHDLLibraryRep4ListI10VHDLEntityEEC2EOKS5_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN7ivWorldC2EPKcOiPPcPK12ivOptionDescPK14ivPropertyData
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN8TextCode14CoreConstDeclsEO7ostream
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic: gnu-v3: check demangling style
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic: gnu-v3: set demangle-style
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK11VHDLLibrary5nextEEO4PixXIS_14VHDLLibraryRep4ListI10VHDLEntityEE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK4ListI10VHDLEntityE4nextEONS1_3PixE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK4ListI10VHDLEntityEclEOKNS1_3PixE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOK10BitPattern
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOK12BitSubStringi
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOKS_
new UNRESOLVED: gdb.cp/demangle.exp: set language c++
new UNRESOLVED: gdb.cp/demangle.exp: set language unknown
new UNRESOLVED: gdb.cp/demangle.exp: set width 0
new UNRESOLVED: gdb.cp/maint.exp: help maint cp
new UNRESOLVED: gdb.cp/maint.exp: help maint cp first_component
new UNRESOLVED: gdb.cp/maint.exp: help maint cp namespace
new UNRESOLVED: gdb.cp/maint.exp: help maintenance cplus
new UNRESOLVED: gdb.cp/maint.exp: maint cp
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component C<A>::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component C<std::basic_streambuf<wchar_t,std::char_traits<wchar_t> > >::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component T<Cooperator>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component bool operator<<char>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo::bar::baz
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<&
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<&operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int operator<< <char>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator  ->
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator ->
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator>>
new UNRESOLVED: gdb.cp/maint.exp: maint cp namespace
new UNRESOLVED: gdb.cp/maint.exp: set complaints 1000
new UNRESOLVED: gdb.cp/punctuator.exp: print
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 1
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 2
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 3
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 1
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 2
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 3
new UNRESOLVED: gdb.cp/punctuator.exp: set lang c++
new UNRESOLVED: gdb.cp/ref-params.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/ref-params.exp: print value of Child& in f2
new UNRESOLVED: gdb.cp/ref-params.exp: print value of Parent& in f1
new UNRESOLVED: gdb.cp/ref-params.exp: print value of a Child in main
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on Child in main
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on Child& in f2
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f2 on
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f2 on Child in main
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print f1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print mf1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print mf2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Child&& in f2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Child&& in f2: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Parent&& in f1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Parent&& in f1: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f1 on
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f1 on Child&& in f2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f2 on
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char16_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char16_t is unsigned
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char32_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char32_t is unsigned
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p L"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p U"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p u"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: set language c++
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: sizeof
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: wchar_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: wchar_t sign
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: char16_t is not built-in
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: char32_t is not built-in
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p L"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p U"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p u"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: set language c
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: wchar_t is not built-in
new UNRESOLVED: gdb.disasm/disassembler-options.exp: set disassembler-options
new UNRESOLVED: gdb.disasm/disassembler-options.exp: set disassembler-options invalid_option_value
new UNRESOLVED: gdb.disasm/disassembler-options.exp: show NULL disassembler-options
new UNRESOLVED: gdb.dlang/debug-expr.exp: print *
new UNRESOLVED: gdb.dlang/debug-expr.exp: set debug expression 1
new UNRESOLVED: gdb.dlang/debug-expr.exp: set language d
new UNRESOLVED: gdb.dlang/demangle.exp: set language d
new UNRESOLVED: gdb.dlang/expression.exp: set language d
new UNRESOLVED: gdb.dlang/primitive-types.exp: set language d
new UNRESOLVED: gdb.dlang/properties.exp: set language d
new UNRESOLVED: gdb.dlang/watch-loc.exp: disassemble _Dmain
new UNRESOLVED: gdb.dlang/watch-loc.exp: p _Dmain_label - _Dmain
new UNRESOLVED: gdb.dlang/watch-loc.exp: x/2i _Dmain+
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: disassemble first
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: disassemble second
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p first_label - first
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p second_label - second
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: x/2i first+
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: x/2i second+
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p g_label - g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i g+
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: console: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: console: set print object on
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: disassemble func01
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: p func01_label - func01
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: x/2i func01+
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dwz.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dwz.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dwz.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/implref-array.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: disassemble mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: p mymain_label - mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: x/2i mymain+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/var-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/var-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/var-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/void-type.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/void-type.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i main+
new UNRESOLVED: gdb.guile/guile.exp: collect help from uiout
new UNRESOLVED: gdb.guile/guile.exp: guile
new UNRESOLVED: gdb.guile/guile.exp: show guile command - define zzq
new UNRESOLVED: gdb.guile/guile.exp: source -s source2.scm
new UNRESOLVED: gdb.guile/guile.exp: source source2.scm
new UNRESOLVED: gdb.guile/guile.exp: verify guile support
new UNRESOLVED: gdb.guile/guile.exp: verify help to uiout
new UNRESOLVED: gdb.guile/scm-error.exp: backtrace printed
new UNRESOLVED: gdb.guile/scm-error.exp: error loading scm file caught
new UNRESOLVED: gdb.guile/scm-error.exp: error message printed
new UNRESOLVED: gdb.guile/scm-error.exp: guile
new UNRESOLVED: gdb.guile/scm-error.exp: no delayed error
new UNRESOLVED: gdb.guile/scm-error.exp: no error printed
new UNRESOLVED: gdb.guile/scm-error.exp: reset print-stack to default, post set/show tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to full, for backtrace test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error printing tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to none, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: source /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.guile/scm-error/scm-error-2.scm
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack full setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack none setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting of default
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to full
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to none
new UNRESOLVED: gdb.guile/scm-error.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-gsmob.exp: gu
new UNRESOLVED: gdb.guile/scm-gsmob.exp: guile
new UNRESOLVED: gdb.guile/scm-gsmob.exp: object-properties
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-parameter.exp: Simple gdb boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: enum gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: error registering existing parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: file gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously ambiguously named boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set print s on
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: restricted gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: enum parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set invalid enum parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set print test-enum-param two
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: initial parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: new parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param bar.txt
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set print test-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 10
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 42
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: show test-restricted-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set print test-undoc-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: undocumented gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: verify guile support
new UNRESOLVED: gdb.objc/print.exp: set language objective-c
new UNRESOLVED: gdb.pascal/print.exp: set language pascal
new UNRESOLVED: gdb.pascal/types.exp: set language pascal
new UNRESOLVED: gdb.python/py-completion.exp: check if python 3
new UNRESOLVED: gdb.python/py-completion.exp: discard #1
new UNRESOLVED: gdb.python/py-completion.exp: discard #2
new UNRESOLVED: gdb.python/py-completion.exp: discard #3
new UNRESOLVED: gdb.python/py-completion.exp: discard #4
new UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completel'
new UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit1 c'
new UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit2 c'
new UNRESOLVED: gdb.python/py-completion.exp: load python file
new UNRESOLVED: gdb.python/py-completion.exp: load python file again
new UNRESOLVED: gdb.python/py-completion.exp: show editing
new UNRESOLVED: gdb.python/py-completion.exp: verify python support
new UNRESOLVED: gdb.python/py-error.exp: check if python 3
new UNRESOLVED: gdb.python/py-error.exp: main reached
new UNRESOLVED: gdb.python/py-error.exp: no delayed error
new UNRESOLVED: gdb.python/py-error.exp: set host-charset IBM1047
new UNRESOLVED: gdb.python/py-error.exp: verify python support
new KFAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new UNRESOLVED: gdb.python/py-function.exp: Test GDBError - python
new UNRESOLVED: gdb.python/py-function.exp: Test GdbError.  There should not be a stack trace
new UNRESOLVED: gdb.python/py-function.exp: Test Normal Error - python
new UNRESOLVED: gdb.python/py-function.exp: Test a Runtime error.  There should be a stack trace.
new UNRESOLVED: gdb.python/py-function.exp: call function
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = ada
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = asm
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = auto
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = c
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = c++
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = d
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = fortran
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = go
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = minimal
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = modula-2
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = objective-c
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = opencl
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = pascal
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = rust
new UNRESOLVED: gdb.python/py-function.exp: call yes with &&
new UNRESOLVED: gdb.python/py-function.exp: call yes with ||
new UNRESOLVED: gdb.python/py-function.exp: check if python 3
new UNRESOLVED: gdb.python/py-function.exp: input command-calling function - python
new UNRESOLVED: gdb.python/py-function.exp: input convenience function - python
new UNRESOLVED: gdb.python/py-function.exp: input int-returning function - python
new UNRESOLVED: gdb.python/py-function.exp: input value-returning convenience function - python
new UNRESOLVED: gdb.python/py-function.exp: set language ada
new UNRESOLVED: gdb.python/py-function.exp: set language asm
new UNRESOLVED: gdb.python/py-function.exp: set language auto
new UNRESOLVED: gdb.python/py-function.exp: set language c
new UNRESOLVED: gdb.python/py-function.exp: set language c++
new UNRESOLVED: gdb.python/py-function.exp: set language d
new UNRESOLVED: gdb.python/py-function.exp: set language fortran
new UNRESOLVED: gdb.python/py-function.exp: set language go
new UNRESOLVED: gdb.python/py-function.exp: set language minimal
new UNRESOLVED: gdb.python/py-function.exp: set language modula-2
new UNRESOLVED: gdb.python/py-function.exp: set language objective-c
new UNRESOLVED: gdb.python/py-function.exp: set language opencl
new UNRESOLVED: gdb.python/py-function.exp: set language pascal
new UNRESOLVED: gdb.python/py-function.exp: set language rust
new UNRESOLVED: gdb.python/py-function.exp: set python print-stack full
new UNRESOLVED: gdb.python/py-function.exp: setting a value from a function which executes a command, again.
new UNRESOLVED: gdb.python/py-function.exp: setting a value from a function which executes a command.
new UNRESOLVED: gdb.python/py-function.exp: verify python support
new UNRESOLVED: gdb.python/py-lookup-type.exp: check if python 3
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type CARDINAL using language modula-2
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language c
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language objective-c
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language pascal
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type character using language ada
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type character using language fortran
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type int32 using language go
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type ucent using language d
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type ushort using language opencl
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language ada
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language c
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language d
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language fortran
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language go
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language modula-2
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language objective-c
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language opencl
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language pascal
new UNRESOLVED: gdb.python/py-lookup-type.exp: verify python support
new UNRESOLVED: gdb.python/py-nested-maps.exp: check if python 3
new UNRESOLVED: gdb.python/py-nested-maps.exp: verify python support
new UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER - python
new UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER_UNLIMITED - python
new UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb booleanparameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: Throwing gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: check if python 3
new UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value can be set to -1
new UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value is -1 after setting
new UNRESOLVED: gdb.python/py-parameter.exp: enum gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: file gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: gdb.GdbError does not show Python stack
new UNRESOLVED: gdb.python/py-parameter.exp: python print
new UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -1
new UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -5
new UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER_UNLIMITED.value = -5
new UNRESOLVED: gdb.python/py-parameter.exp: set enum to two
new UNRESOLVED: gdb.python/py-parameter.exp: set invalid enum parameter
new UNRESOLVED: gdb.python/py-parameter.exp: set new file parameter
new UNRESOLVED: gdb.python/py-parameter.exp: set test-file-param
new UNRESOLVED: gdb.python/py-parameter.exp: show initial file value
new UNRESOLVED: gdb.python/py-parameter.exp: show new file value
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter is initial value
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter is new value
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter off
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter on
new UNRESOLVED: gdb.python/py-parameter.exp: test enum parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test file parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test general help
new UNRESOLVED: gdb.python/py-parameter.exp: test new file parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test set help
new UNRESOLVED: gdb.python/py-parameter.exp: test show help
new UNRESOLVED: gdb.python/py-parameter.exp: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: verify python support
new UNRESOLVED: gdb.python/py-prettyprint.exp: check if python 3
new UNRESOLVED: gdb.python/py-prettyprint.exp: verify python support
new UNRESOLVED: gdb.python/py-prompt.exp: check if python 3
new UNRESOLVED: gdb.python/py-prompt.exp: verify python support
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sigall-precsave.exp
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sigall-reverse.exp
new UNRESOLVED: gdb.rust/expr.exp: set language rust
new UNRESOLVED: gdb.rust/expr.exp: set var $something = 27
new FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
new FAIL: gdb.server/unittest.exp: unit tests
new UNRESOLVED: gdb.trace/actions.exp: failed to compile
new UNRESOLVED: gdb.trace/ax.exp: failed to compile
new UNRESOLVED: gdb.trace/deltrace.exp: failed to compile
new UNRESOLVED: gdb.trace/infotrace.exp: failed to compile
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with missing argument
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with too many arguments
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with wrong option
new UNRESOLVED: gdb.trace/packetlen.exp: failed to compile
new UNRESOLVED: gdb.trace/passc-dyn.exp: failed to compile
new UNRESOLVED: gdb.trace/passcount.exp: failed to compile
new UNRESOLVED: gdb.trace/report.exp: failed to compile
new UNRESOLVED: gdb.trace/save-trace.exp: failed to compile
new UNRESOLVED: gdb.trace/tfind.exp: failed to compile
new UNRESOLVED: gdb.trace/tracecmd.exp: failed to compile
new UNRESOLVED: gdb.trace/tsv.exp: failed to compile
new UNRESOLVED: gdb.trace/while-dyn.exp: failed to compile
new UNRESOLVED: gdb.trace/while-stepping.exp: failed to compile
new UNRESOLVED: gdb.tui/completion.exp: verify tui support
new UNRESOLVED: gdb.tui/empty.exp: set tui border-kind ascii
new UNRESOLVED: gdb.tui/empty.exp: src: 80x24: box 1
new UNRESOLVED: gdb.tui/empty.exp: verify tui support
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: correct line breaks
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: set height 2000
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: set pagination on
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: tui enable
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: verify tui support
new UNRESOLVED: gdb.xml/maint_print_struct.exp: printing tdesc with a structure and a bitfield
new UNRESOLVED: gdb.xml/maint_print_struct.exp: setting a new tdesc having only a structure
new UNRESOLVED: gdb.xml/tdesc-arch.exp: architecture XML tests
new UNRESOLVED: gdb.xml/tdesc-arch.exp: read default architecture
new UNRESOLVED: gdb.xml/tdesc-arch.exp: read valid architectures
new UNRESOLVED: gdb.xml/tdesc-errors.exp: set tdesc filename gdb.xml/tdesc-bogus.xml
new UNRESOLVED: gdb.xml/tdesc-errors.exp: set tdesc filename gdb.xml/tdesc-unknown.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: cd to directory holding xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: maintenance print reggroups
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $bitfields
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $extrareg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $flags
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $mixed_flags
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $structreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $structreg.v4
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $uintreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $unionreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $unionreg.v4
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $vecreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc file single-reg.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc filename test-extra-regs.xml - from extra-regs.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc filename test-regs.xml - from core-only.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/bad-include.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/includes.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/loop.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-gdbserver-m64/d3/d3d323915c034ed9f7465568e1876aa269ab1d0f//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/d3/d3d323915c034ed9f7465568e1876aa269ab1d0f//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-03 13:07 [binutils-gdb] Update my email address in gdb/MAINTAINERS gdb-buildbot
@ 2019-10-03 15:07 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-03 15:07 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/833

Author:
        Andreas Arnez <arnez@linux.ibm.com>

Commit tested:
        9344c18feb0ef3dfacfd1d0437c0d1e329feaa83

Subject of commit:
        Update my email address in gdb/MAINTAINERS

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/93/9344c18feb0ef3dfacfd1d0437c0d1e329feaa83/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.ada/bias.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/bias.exp: print a
new UNRESOLVED: gdb.ada/bias.exp: print cval
new UNRESOLVED: gdb.ada/bias.exp: print spr
new UNRESOLVED: gdb.ada/bias.exp: print x
new UNRESOLVED: gdb.ada/bias.exp: print x * x1
new UNRESOLVED: gdb.ada/bias.exp: print x + x1
new UNRESOLVED: gdb.ada/bias.exp: print x - x1
new UNRESOLVED: gdb.ada/bias.exp: print x / x1
new UNRESOLVED: gdb.ada/bias.exp: print x := 5
new UNRESOLVED: gdb.ada/bias.exp: print y
new UNRESOLVED: gdb.ada/bias.exp: print y /= y
new UNRESOLVED: gdb.ada/bias.exp: print y /= y1
new UNRESOLVED: gdb.ada/bias.exp: print y < y1
new UNRESOLVED: gdb.ada/bias.exp: print y <= y1
new UNRESOLVED: gdb.ada/bias.exp: print y = y
new UNRESOLVED: gdb.ada/bias.exp: print y > y1
new UNRESOLVED: gdb.ada/bias.exp: print y >= y1
new UNRESOLVED: gdb.ada/bias.exp: print/c cval
new UNRESOLVED: gdb.ada/bias.exp: ptype x + x1
new UNRESOLVED: gdb.ada/bias.exp: re-read x after storing
PASS -> FAIL: gdb.ada/display_nested.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/excep_handle.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/fullname_bp.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/fun_addr.exp: print foo'address
PASS -> FAIL: gdb.ada/null_array.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/uninitialized_vars.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/uninitialized_vars.exp: info locals
new UNRESOLVED: gdb.base/dump.exp: couldn't run to checkpoint
new UNRESOLVED: gdb.base/examine-backward.exp: could not run to main
new UNRESOLVED: gdb.base/info-fun.exp: n_flag=0: NO: can't run to main
new UNRESOLVED: gdb.base/info-types.exp: l=c: can't run to main
new UNRESOLVED: gdb.base/interp.exp: run to main
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Child&& in f2: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Parent&& in f1: delete all breakpoints in delete_breakpoints
FAIL -> UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f1 on Child&& in f2
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p bar_label - bar
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p baz_label - baz
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_cold_label - foo_cold
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_label - foo
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p main_label - main
new UNRESOLVED: gdb.dwarf2/implref-struct.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: x/2i main+
new FAIL: gdb.dwarf2/typedef-void-finish.exp: disassemble func
new FAIL: gdb.dwarf2/typedef-void-finish.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p main_label - main
new FAIL: gdb.dwarf2/typedef-void-finish.exp: x/2i func+
new FAIL: gdb.dwarf2/typedef-void-finish.exp: x/2i main+
new UNRESOLVED: gdb.python/py-value.exp: can't run to main
new UNRESOLVED: gdb.reverse/fstatat-reverse.exp: turn on process record
==============================================

*** 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/93/9344c18feb0ef3dfacfd1d0437c0d1e329feaa83//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/93/9344c18feb0ef3dfacfd1d0437c0d1e329feaa83//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-03 10:15 [binutils-gdb] gdb: Remove a use of VEC from dwarf2read.{c,h} gdb-buildbot
@ 2019-10-03 12:22 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-03 12:22 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/832

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        df07e2c772dab40d268dc44c78bb087c4b75b3c6

Subject of commit:
        gdb: Remove a use of VEC from dwarf2read.{c,h}

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/df/df07e2c772dab40d268dc44c78bb087c4b75b3c6/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/addr_arith.exp: compilation foo_na07_019.adb
new UNRESOLVED: gdb.ada/display_nested.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/display_nested.exp: display s
new UNRESOLVED: gdb.ada/excep_handle.exp: cannot run to main, testcase aborted
PASS -> FAIL: gdb.ada/funcall_param.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/mi_catch_assert.exp: compilation bla.adb
new UNRESOLVED: gdb.ada/nested.exp: break on nested function First
new FAIL: gdb.ada/null_array.exp: print my_matrix
new UNRESOLVED: gdb.ada/null_array.exp: print my_table
new FAIL: gdb.ada/null_array.exp: ptype my_table
PASS -> FAIL: gdb.ada/watch_minus_l.exp: compilation foo_ra10_006.adb
new UNRESOLVED: gdb.base/annota-input-while-running.exp: can't run to main
new UNRESOLVED: gdb.base/catch-follow-exec.exp: could not run to main
new FAIL: gdb.base/reread.exp: opts= "" "" : continue until exit at second pass
new UNRESOLVED: gdb.base/reread.exp: opts= "" "" : run to foo
new UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: run to foo
UNRESOLVED -> FAIL: gdb.cp/rvalue-ref-params.exp: print value of f1 on Child&& in f2
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p g_label - g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i g+
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dwz.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dwz.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dwz.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/var-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/var-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/var-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/void-type.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/void-type.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i main+
new UNRESOLVED: gdb.linespec/keywords.exp: can't run to main
PASS -> UNRESOLVED: gdb.pascal/print.exp: set language pascal
new UNRESOLVED: gdb.python/py-inferior.exp: can't run to main
new UNRESOLVED: gdb.python/py-recurse-unwind.exp: can't run to main
==============================================

*** 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/df/df07e2c772dab40d268dc44c78bb087c4b75b3c6//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/df/df07e2c772dab40d268dc44c78bb087c4b75b3c6//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-03  7:12 [binutils-gdb] gdb: Change a VEC to std::vector in btrace.{c,h} gdb-buildbot
@ 2019-10-03  9:26 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-03  9:26 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/831

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        554ac434b02465f1fc925b0ae3393fb841e0d59c

Subject of commit:
        gdb: Change a VEC to std::vector in btrace.{c,h}

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/55/554ac434b02465f1fc925b0ae3393fb841e0d59c/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/arrayidx.exp: compilation p.adb
new UNRESOLVED: gdb.ada/funcall_param.exp: p ident
new UNRESOLVED: gdb.ada/mi_catch_assert.exp: cannot run to main, testcase aborted
new UNRESOLVED: gdb.ada/mi_catch_assert.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/str_ref_cmp.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/str_ref_cmp.exp: operator = works for strings
new UNRESOLVED: gdb.ada/str_ref_cmp.exp: print String_Var
new UNRESOLVED: gdb.ada/watch_minus_l.exp: continue with watch -location
new UNRESOLVED: gdb.ada/watch_minus_l.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/watch_minus_l.exp: watch -location pck.global_var
new UNRESOLVED: gdb.base/continue-after-aborted-step-over.exp: displaced-stepping=off: run to main
new UNRESOLVED: gdb.base/continue-after-aborted-step-over.exp: displaced-stepping=on: run to main
new UNRESOLVED: gdb.base/dump.exp: couldn't run to checkpoint
new FAIL: gdb.base/gcore-relro-pie.exp: strip
new UNRESOLVED: gdb.base/info-types.exp: l=c: can't run to main
new UNRESOLVED: gdb.base/pr11022.exp: can't run to main
new UNRESOLVED: gdb.base/print-file-var.exp: could not run to main
FAIL -> UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on Child& in f2
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: disassemble mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: p mymain_label - mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: x/2i mymain+
new FAIL: gdb.linespec/break-ask.exp: continue to breakpoint: body_elsewhere
new FAIL: gdb.linespec/break-ask.exp: continue to breakpoint: body_elsewhere other
new UNRESOLVED: gdb.linespec/break-ask.exp: expect breakpoint
new UNRESOLVED: gdb.linespec/break-ask.exp: expect breakpoint other
new FAIL: gdb.linespec/break-ask.exp: info source
new FAIL: gdb.linespec/break-ask.exp: info source other
new UNRESOLVED: gdb.python/py-as-string.exp: couldn't run to main.
new UNRESOLVED: gdb.reverse/fstatat-reverse.exp: turn on process record
new FAIL: gdb.reverse/getresuid-reverse.exp: continue to breakpoint: marker2
new FAIL: gdb.reverse/getresuid-reverse.exp: reverse to marker1
new UNRESOLVED: gdb.reverse/getresuid-reverse.exp: turn on process record
==============================================

*** 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/55/554ac434b02465f1fc925b0ae3393fb841e0d59c//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/55/554ac434b02465f1fc925b0ae3393fb841e0d59c//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-03  4:12 [binutils-gdb] gdb: Remove a VEC from gdbsupport/btrace-common.h gdb-buildbot
@ 2019-10-03  6:23 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-03  6:23 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/830

Author:
        Andrew Burgess <andrew.burgess@embecosm.com>

Commit tested:
        46f29a9a260da1a03176682aff63bad03d8f2e8b

Subject of commit:
        gdb: Remove a VEC from gdbsupport/btrace-common.h

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/46/46f29a9a260da1a03176682aff63bad03d8f2e8b/

*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/arrayidx.exp: print e_one_two_three
new FAIL: gdb.ada/arrayidx.exp: print e_one_two_three, indexes off
new FAIL: gdb.ada/arrayidx.exp: print empty
new FAIL: gdb.ada/arrayidx.exp: print empty, indexes off
new FAIL: gdb.ada/arrayidx.exp: print few_reps
new FAIL: gdb.ada/arrayidx.exp: print few_reps, indexes off
new FAIL: gdb.ada/arrayidx.exp: print many_reps
new FAIL: gdb.ada/arrayidx.exp: print many_reps, indexes off
new FAIL: gdb.ada/arrayidx.exp: print one_two_three
new FAIL: gdb.ada/arrayidx.exp: print one_two_three, indexes off
new FAIL: gdb.ada/arrayidx.exp: print p_one_two_three
new FAIL: gdb.ada/arrayidx.exp: print p_one_two_three, indexes off
new FAIL: gdb.ada/arrayidx.exp: print r_two_three
new FAIL: gdb.ada/arrayidx.exp: print r_two_three, indexes off
new FAIL: gdb.ada/arrayidx.exp: print u_one_two_three
new FAIL: gdb.ada/arrayidx.exp: print u_one_two_three, indexes off
new UNRESOLVED: gdb.ada/arrayidx.exp: set print array-indexes off
PASS -> FAIL: gdb.ada/float_param.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/frame_args.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/nested.exp: break on nested function First
new UNRESOLVED: gdb.ada/uninitialized_vars.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/uninitialized_vars.exp: info locals
new UNRESOLVED: gdb.ada/var_arr_typedef.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/var_arr_typedef.exp: print a
new UNRESOLVED: gdb.ada/var_arr_typedef.exp: print va
new UNRESOLVED: gdb.ada/var_arr_typedef.exp: print vb
new UNRESOLVED: gdb.ada/var_rec_arr.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/var_rec_arr.exp: print a1
new UNRESOLVED: gdb.ada/var_rec_arr.exp: print a2
new UNRESOLVED: gdb.ada/var_rec_arr.exp: ptype a1
new UNRESOLVED: gdb.base/break-include.exp: break break-include.c:53
new UNRESOLVED: gdb.base/break-include.exp: break next
new UNRESOLVED: gdb.base/frameapply.exp: can't run to setup_done
new UNRESOLVED: gdb.base/step-break.exp: can't run to main
new FAIL: gdb.base/vdso-warning.exp: core: save a corefile
new UNRESOLVED: gdb.base/vdso-warning.exp: run: startup
new UNRESOLVED: gdb.base/vla-optimized-out.exp: o1: can't run to f1
UNRESOLVED -> FAIL: gdb.cp/ref-params.exp: print value of f1 on Child& in f2
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble bar
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble baz
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble foo
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble foo_low
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p bar_label - bar
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p baz_label - baz
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p foo_label - foo
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p foo_low_label - foo_low
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i bar+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i baz+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i foo+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i foo_low+
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/void-type.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/void-type.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i main+
new UNRESOLVED: gdb.guile/scm-error.exp: backtrace printed
new UNRESOLVED: gdb.guile/scm-error.exp: error loading scm file caught
new UNRESOLVED: gdb.guile/scm-error.exp: error message printed
new UNRESOLVED: gdb.guile/scm-error.exp: guile
new UNRESOLVED: gdb.guile/scm-error.exp: no delayed error
new UNRESOLVED: gdb.guile/scm-error.exp: no error printed
new UNRESOLVED: gdb.guile/scm-error.exp: reset print-stack to default, post set/show tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to full, for backtrace test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error printing tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to none, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: source /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.guile/scm-error/scm-error-2.scm
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack full setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack none setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting of default
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to full
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to none
new UNRESOLVED: gdb.guile/scm-error.exp: verify guile support
new UNRESOLVED: gdb.python/py-completion.exp: check if python 3
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #1
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #2
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #3
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #4
PASS -> UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completel'
PASS -> UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit1 c'
PASS -> UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit2 c'
PASS -> UNRESOLVED: gdb.python/py-completion.exp: load python file
PASS -> UNRESOLVED: gdb.python/py-completion.exp: load python file again
new UNRESOLVED: gdb.python/py-completion.exp: show editing
new UNRESOLVED: gdb.python/py-completion.exp: verify python support
new UNRESOLVED: gdb.python/py-inferior.exp: can't run to main
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER_UNLIMITED - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb booleanparameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Throwing gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: check if python 3
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value can be set to -1
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value is -1 after setting
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum gdb parameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file gdb parameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: gdb.GdbError does not show Python stack
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python print
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -1
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -5
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER_UNLIMITED.value = -5
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: set enum to two
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: set invalid enum parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: set new file parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: set test-file-param
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show initial file value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show new file value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show parameter is initial value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show parameter is new value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show parameter off
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show parameter on
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test enum parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test file parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test general help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test new file parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test set help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test show help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: verify python support
new UNRESOLVED: gdb.python/py-prettyprint.exp: check if python 3
new UNRESOLVED: gdb.python/py-prettyprint.exp: verify python support
new UNRESOLVED: gdb.python/py-shared.exp: can't run to main
==============================================

*** 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/46/46f29a9a260da1a03176682aff63bad03d8f2e8b//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/46/46f29a9a260da1a03176682aff63bad03d8f2e8b//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-03  1:15 [binutils-gdb] Use styled_string for "show logging filename" gdb-buildbot
@ 2019-10-03  3:18 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-03  3:18 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/829

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        d770d56f42e77f4ee1008ae223dacd3658305297

Subject of commit:
        Use styled_string for "show logging filename"

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/d7/d770d56f42e77f4ee1008ae223dacd3658305297/

*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/float_param.exp: call set_double
new UNRESOLVED: gdb.ada/float_param.exp: call set_float
new FAIL: gdb.ada/float_param.exp: call set_long_double
new FAIL: gdb.ada/float_param.exp: print global_double
new FAIL: gdb.ada/float_param.exp: print global_float
new FAIL: gdb.ada/float_param.exp: print global_long_double
new UNRESOLVED: gdb.ada/frame_args.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/break-always.exp: set breakpoint on bar
new UNRESOLVED: gdb.base/dprintf-non-stop.exp: can't run to main
new UNRESOLVED: gdb.base/interp.exp: run to main
new UNRESOLVED: gdb.base/recpar.exp: could not run to main
new UNRESOLVED: gdb.base/skip.exp: can't run to main
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: continue to func01
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: create varobj for ptr
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: get children of var1
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: mi: run to main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: mi: set print object on
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access array member
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access integer member
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access pointer member
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p bar_label - bar
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p baz_label - baz
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_cold_label - foo_cold
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_label - foo
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p main_label - main
new UNRESOLVED: gdb.dwarf2/implref-struct.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i main+
new UNRESOLVED: gdb.linespec/keywords.exp: can't run to main
new UNRESOLVED: gdb.python/py-recurse-unwind.exp: can't run to main
new UNRESOLVED: gdb.reverse/fstatat-reverse.exp: turn on process record
==============================================

*** 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/d7/d770d56f42e77f4ee1008ae223dacd3658305297//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/d7/d770d56f42e77f4ee1008ae223dacd3658305297//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-02 15:44 [binutils-gdb] Style "pwd" output gdb-buildbot
@ 2019-10-02 18:09 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-02 18:09 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/826

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        14309bb6bfe31e5ad26035cd41a46bdbaec154b0

Subject of commit:
        Style "pwd" output

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/14/14309bb6bfe31e5ad26035cd41a46bdbaec154b0/

*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/O2_float_param.exp: compilation foo.adb
new FAIL: gdb.ada/access_tagged_param.exp: compilation foo.adb
new FAIL: gdb.ada/access_to_unbounded_array.exp: compilation foo.adb
new FAIL: gdb.ada/addr_arith.exp: compilation foo_na07_019.adb
new FAIL: gdb.ada/aliased_array.exp: compilation foo.adb
new FAIL: gdb.ada/arr_acc_idx_w_gap.exp: compilation enum_with_gap_main.adb
new FAIL: gdb.ada/arr_arr.exp: compilation foo.adb
new FAIL: gdb.ada/arr_enum_idx_w_gap.exp: compilation foo_q418_043.adb
new FAIL: gdb.ada/array_bounds.exp: compilation bar.adb
new FAIL: gdb.ada/array_char_idx.exp: compilation foo.adb
new FAIL: gdb.ada/array_of_variable_length.exp: compilation foo.adb
new FAIL: gdb.ada/array_ptr_renaming.exp: compilation foo.adb
new FAIL: gdb.ada/array_return.exp: compilation p.adb
new FAIL: gdb.ada/array_subscript_addr.exp: compilation p.adb
new FAIL: gdb.ada/arraydim.exp: compilation foo.adb
new FAIL: gdb.ada/arrayidx.exp: compilation p.adb
new FAIL: gdb.ada/arrayparam.exp: compilation foo.adb
new FAIL: gdb.ada/arrayptr.exp: compilation foo.adb
new FAIL: gdb.ada/assign_arr.exp: compilation main_p324_051.adb
new FAIL: gdb.ada/atomic_enum.exp: compilation foo.adb
new FAIL: gdb.ada/attr_ref_and_charlit.exp: compilation foo.adb
new FAIL: gdb.ada/bad-task-bp-keyword.exp: compilation foo.adb
new FAIL: gdb.ada/big_packed_array.exp: compilation foo_ra24_010.adb
new FAIL: gdb.ada/bp_c_mixed_case.exp: compilation foo_h731_021.adb
new FAIL: gdb.ada/bp_enum_homonym.exp: compilation p.adb
new FAIL: gdb.ada/bp_fun_addr.exp: compilation bp_fun_addr.adb
new FAIL: gdb.ada/bp_inlined_func.exp: compilation foo.adb
new FAIL: gdb.ada/bp_on_var.exp: compilation foo.adb
new FAIL: gdb.ada/bp_range_type.exp: compilation foo.adb
new FAIL: gdb.ada/bp_reset.exp: compilation foo.adb
new FAIL: gdb.ada/byte_packed_arr.exp: compilation reprod_main.adb
new FAIL: gdb.ada/catch_assert_if.exp: compilation bla.adb
new FAIL: gdb.ada/catch_ex.exp: compilation foo.adb
new FAIL: gdb.ada/char_enum.exp: compilation foo.adb
new FAIL: gdb.ada/char_param.exp: compilation foo.adb
new FAIL: gdb.ada/complete.exp: compilation foo.adb
new FAIL: gdb.ada/cond_lang.exp: compilation a.adb
new FAIL: gdb.ada/dgopt.exp: compilation x.adb
new FAIL: gdb.ada/disc_arr_bound.exp: compilation foo_n612_026.adb
new FAIL: gdb.ada/display_nested.exp: compilation foo.adb
new FAIL: gdb.ada/dyn_arrayidx.exp: compilation foo.adb
new FAIL: gdb.ada/dyn_loc.exp: compilation p.adb
new FAIL: gdb.ada/dyn_stride.exp: compilation foo.adb
new FAIL: gdb.ada/enum_idx_packed.exp: compilation foo.adb
new FAIL: gdb.ada/excep_handle.exp: compilation foo.adb
new FAIL: gdb.ada/expr_delims.exp: compilation foo.adb
new FAIL: gdb.ada/expr_with_funcall.exp: compilation expr_r821_013.adb
new FAIL: gdb.ada/exprs.exp: compilation p.adb
new FAIL: gdb.ada/fin_fun_out.exp: compilation foo_o525_013.adb
new FAIL: gdb.ada/fixed_cmp.exp: compilation fixed.adb
new FAIL: gdb.ada/fixed_points.exp: compilation fixed_points.adb
new FAIL: gdb.ada/float_param.exp: compilation foo.adb
new FAIL: gdb.ada/formatted_ref.exp: compilation formatted_ref.adb
new FAIL: gdb.ada/frame_arg_lang.exp: compilation bla.adb
new FAIL: gdb.ada/frame_args.exp: compilation foo.adb
new FAIL: gdb.ada/fullname_bp.exp: compilation foo.adb
new FAIL: gdb.ada/fun_addr.exp: compilation foo.adb
new FAIL: gdb.ada/fun_in_declare.exp: compilation foo.adb
new FAIL: gdb.ada/fun_overload_menu.exp: compilation foo.adb
new FAIL: gdb.ada/fun_renaming.exp: compilation fun_renaming.adb
new FAIL: gdb.ada/funcall_param.exp: compilation foo.adb
new FAIL: gdb.ada/funcall_ptr.exp: compilation foo.adb
new FAIL: gdb.ada/funcall_ref.exp: compilation foo.adb
new FAIL: gdb.ada/homonym.exp: compilation homonym_main.adb
new FAIL: gdb.ada/info_addr_mixed_case.exp: compilation foo.adb
new FAIL: gdb.ada/info_exc.exp: compilation foo.adb
new FAIL: gdb.ada/info_locals_renaming.exp: compilation foo.adb
new FAIL: gdb.ada/int_deref.exp: compilation foo.adb
new FAIL: gdb.ada/interface.exp: compilation foo.adb
new FAIL: gdb.ada/iwide.exp: compilation p.adb
new FAIL: gdb.ada/lang_switch.exp: compilation lang_switch.adb
new FAIL: gdb.ada/length_cond.exp: compilation length_cond.adb
new FAIL: gdb.ada/maint_with_ada.exp: compilation var_arr_typedef.adb
new FAIL: gdb.ada/mi_catch_assert.exp: compilation bla.adb
new FAIL: gdb.ada/mi_catch_ex_hand.exp: compilation foo.adb
new FAIL: gdb.ada/mi_ex_cond.exp: compilation foo.adb
new FAIL: gdb.ada/mi_exc_info.exp: compilation foo.adb
new FAIL: gdb.ada/mi_interface.exp: compilation foo.adb
new FAIL: gdb.ada/mi_ref_changeable.exp: compilation foo_rb20_056.adb
new FAIL: gdb.ada/mi_string_access.exp: compilation bar.adb
new FAIL: gdb.ada/mi_task_arg.exp: compilation task_switch.adb
new FAIL: gdb.ada/mi_task_info.exp: compilation task_switch.adb
new FAIL: gdb.ada/mi_var_array.exp: compilation bar.adb
new FAIL: gdb.ada/mi_var_union.exp: compilation bar.adb
new FAIL: gdb.ada/mod_from_name.exp: compilation foo.adb
new FAIL: gdb.ada/n_arr_bound.exp: compilation foo.adb
new FAIL: gdb.ada/notcplusplus.exp: compilation foo.adb
new FAIL: gdb.ada/null_array.exp: compilation foo.adb
new FAIL: gdb.ada/null_record.exp: compilation null_record.adb
new FAIL: gdb.ada/operator_bp.exp: compilation ops_test.adb
new FAIL: gdb.ada/optim_drec.exp: compilation foo.adb
new FAIL: gdb.ada/out_of_line_in_inlined.exp: compilation foo_o224_021.adb
new FAIL: gdb.ada/packed_array.exp: compilation pa.adb
new FAIL: gdb.ada/packed_array_assign.exp: compilation tester.adb
new FAIL: gdb.ada/packed_tagged.exp: compilation comp_bug.adb
new FAIL: gdb.ada/pckd_arr_ren.exp: compilation foo.adb
new FAIL: gdb.ada/pckd_neg.exp: compilation foo_o508_021.adb
new FAIL: gdb.ada/pkd_arr_elem.exp: compilation failure.adb
new FAIL: gdb.ada/pp-rec-component.exp: compilation foo.adb
new FAIL: gdb.ada/print_chars.exp: compilation foo.adb
new FAIL: gdb.ada/print_pc.exp: compilation dummy.adb
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: ptype 3 * 2.0
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: ptype 3 / 2.0
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: set lang ada
new FAIL: gdb.ada/ptype_array.exp: compilation foo.adb
new FAIL: gdb.ada/ptype_field.exp: compilation foo.adb
new FAIL: gdb.ada/ptype_tagged_param.exp: compilation foo.adb
new FAIL: gdb.ada/py_range.exp: compilation foo.adb
new FAIL: gdb.ada/py_taft.exp: compilation main.adb
new FAIL: gdb.ada/rdv_wait.exp: compilation foo.adb
new FAIL: gdb.ada/rec_comp.exp: compilation bar_o203_012.adb
new FAIL: gdb.ada/rec_return.exp: compilation foo.adb
new FAIL: gdb.ada/ref_param.exp: compilation foo.adb
new FAIL: gdb.ada/ref_tick_size.exp: compilation p.adb
new FAIL: gdb.ada/repeat_dyn.exp: compilation foo_oc22_002.adb
new FAIL: gdb.ada/same_component_name.exp: compilation foo.adb
new FAIL: gdb.ada/same_enum.exp: compilation a.adb
new FAIL: gdb.ada/scoped_watch.exp: compilation foo_p708_025.adb
new FAIL: gdb.ada/set_pckd_arr_elt.exp: compilation foo.adb
new FAIL: gdb.ada/set_wstr.exp: compilation a.adb
new FAIL: gdb.ada/small_reg_param.exp: compilation foo.adb
new FAIL: gdb.ada/str_binop_equal.exp: compilation foo_p211_061.adb
new FAIL: gdb.ada/str_uninit.exp: compilation parse.adb
new FAIL: gdb.ada/sym_print_name.exp: compilation foo.adb
new FAIL: gdb.ada/taft_type.exp: compilation p.adb
new FAIL: gdb.ada/tagged.exp: compilation foo.adb
new FAIL: gdb.ada/tagged_access.exp: compilation p.adb
new FAIL: gdb.ada/tagged_not_init.exp: compilation foo.adb
new FAIL: gdb.ada/task_bp.exp: compilation foo.adb
new FAIL: gdb.ada/task_switch_in_core.exp: compilation crash.adb
new FAIL: gdb.ada/tasks.exp: compilation foo.adb
new FAIL: gdb.ada/tick_last_segv.exp: compilation foo.adb
new FAIL: gdb.ada/tick_length_array_enum_idx.exp: compilation foo_n207_004.adb
new FAIL: gdb.ada/type_coercion.exp: compilation assign.adb
new FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: compilation foo.adb
new FAIL: gdb.ada/var_arr_attrs.exp: compilation foo_o115_002.adb
new FAIL: gdb.ada/variant_record_packed_array.exp: compilation foo.adb
new FAIL: gdb.ada/varsize_limit.exp: compilation vsizelim.adb
new FAIL: gdb.ada/vla.exp: compilation vla.adb
new FAIL: gdb.ada/watch_minus_l.exp: compilation foo_ra10_006.adb
new FAIL: gdb.ada/whatis_array_val.exp: compilation foo.adb
new FAIL: gdb.ada/widewide.exp: compilation foo.adb
new FAIL: gdb.ada/win_fu_syms.exp: compilation foo.adb
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: set tdesc filename $srcdir/gdb.arch/arc-tdesc-cpu.xml
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: set tdesc filename /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.arch/arc-tdesc-cpu/trivial.xml
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: setting HS architecture
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: .text is readable
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: complete set architecture i386
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: complete set gnutarget
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: load core file
new UNRESOLVED: gdb.base/alias.exp: -a print elements 47
new UNRESOLVED: gdb.base/alias.exp: abbrev -a not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set2 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set3 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set4 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set5 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set6 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: alias -a -- -a = set
new UNRESOLVED: gdb.base/alias.exp: alias -a -- set6 = set
new UNRESOLVED: gdb.base/alias.exp: alias -a set2=set
new UNRESOLVED: gdb.base/alias.exp: alias -a set3= set
new UNRESOLVED: gdb.base/alias.exp: alias -a set4 =set
new UNRESOLVED: gdb.base/alias.exp: alias -a set5 = set
new UNRESOLVED: gdb.base/alias.exp: alias assigne
new UNRESOLVED: gdb.base/alias.exp: alias assigne imprime
new UNRESOLVED: gdb.base/alias.exp: alias assigne imprime limite-elements
new UNRESOLVED: gdb.base/alias.exp: alias foo=bar
new UNRESOLVED: gdb.base/alias.exp: alias set pr elms = set p elem
new UNRESOLVED: gdb.base/alias.exp: alias set print max-elements using assigne imprime
new UNRESOLVED: gdb.base/alias.exp: alias set2=set
new UNRESOLVED: gdb.base/alias.exp: alias spe = set p elem
new UNRESOLVED: gdb.base/alias.exp: assigne imprime elements 53
new UNRESOLVED: gdb.base/alias.exp: assigne imprime limite-elements 54
new UNRESOLVED: gdb.base/alias.exp: assigne imprime prefix not defined
new UNRESOLVED: gdb.base/alias.exp: assigne print elements 52
new UNRESOLVED: gdb.base/alias.exp: help set print
new UNRESOLVED: gdb.base/alias.exp: mismatched length
new UNRESOLVED: gdb.base/alias.exp: mismatched prefix
new UNRESOLVED: gdb.base/alias.exp: set imprime elements 55
new UNRESOLVED: gdb.base/alias.exp: set imprime prefix not defined
new UNRESOLVED: gdb.base/alias.exp: set pr elms 51
new UNRESOLVED: gdb.base/alias.exp: set print limite-elements 56
new UNRESOLVED: gdb.base/alias.exp: set print max-elements 57
new UNRESOLVED: gdb.base/alias.exp: set2 print elements 42
new UNRESOLVED: gdb.base/alias.exp: set3 print elements 43
new UNRESOLVED: gdb.base/alias.exp: set4 print elements 44
new UNRESOLVED: gdb.base/alias.exp: set5 print elements 45
new UNRESOLVED: gdb.base/alias.exp: set6 print elements 46
new UNRESOLVED: gdb.base/alias.exp: spe 50
new UNRESOLVED: gdb.base/alias.exp: verify -a
new UNRESOLVED: gdb.base/alias.exp: verify 52
new UNRESOLVED: gdb.base/alias.exp: verify 53
new UNRESOLVED: gdb.base/alias.exp: verify 54
new UNRESOLVED: gdb.base/alias.exp: verify 55
new UNRESOLVED: gdb.base/alias.exp: verify 56
new UNRESOLVED: gdb.base/alias.exp: verify 57
new UNRESOLVED: gdb.base/alias.exp: verify set pr elms
new UNRESOLVED: gdb.base/alias.exp: verify set2
new UNRESOLVED: gdb.base/alias.exp: verify set3
new UNRESOLVED: gdb.base/alias.exp: verify set4
new UNRESOLVED: gdb.base/alias.exp: verify set5
new UNRESOLVED: gdb.base/alias.exp: verify set6
new UNRESOLVED: gdb.base/alias.exp: verify spe
new FAIL: gdb.base/all-architectures-0.exp: all passed
new FAIL: gdb.base/all-architectures-0.exp: at least one architecture
new FAIL: gdb.base/all-architectures-0.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-0.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-0.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-0.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-1.exp: all passed
new FAIL: gdb.base/all-architectures-1.exp: at least one architecture
new FAIL: gdb.base/all-architectures-1.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-1.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-1.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-1.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-2.exp: all passed
new FAIL: gdb.base/all-architectures-2.exp: at least one architecture
new FAIL: gdb.base/all-architectures-2.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-2.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-2.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-2.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-3.exp: all passed
new FAIL: gdb.base/all-architectures-3.exp: at least one architecture
new FAIL: gdb.base/all-architectures-3.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-3.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-3.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-3.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-4.exp: all passed
new FAIL: gdb.base/all-architectures-4.exp: at least one architecture
new FAIL: gdb.base/all-architectures-4.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-4.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-4.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-4.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-5.exp: all passed
new FAIL: gdb.base/all-architectures-5.exp: at least one architecture
new FAIL: gdb.base/all-architectures-5.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-5.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-5.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-5.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-6.exp: all passed
new FAIL: gdb.base/all-architectures-6.exp: at least one architecture
new FAIL: gdb.base/all-architectures-6.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-6.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-7.exp: all passed
new FAIL: gdb.base/all-architectures-7.exp: at least one architecture
new FAIL: gdb.base/all-architectures-7.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-7.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-7.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-7.exp: set max-completions unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: break main
new UNRESOLVED: gdb.base/argv0-symlink.exp: p argc
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print elements 200
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print elements unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print repeats 200
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print repeats unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: show print elements
new UNRESOLVED: gdb.base/argv0-symlink.exp: show print repeats
new UNRESOLVED: gdb.base/bad-file.exp: directory
new UNRESOLVED: gdb.base/bad-file.exp: neither file nor directory
new UNRESOLVED: gdb.base/bad-file.exp: non-existent file
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "info source": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "set not-a-thing 4" -x good-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "set not-a-thing 4": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -jslkflsdjlkfjlksdjf: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x bad-commands -ex "info source": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x bad-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands -ex "set not-a-thing 4": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands -x bad-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch: spawn
new UNRESOLVED: gdb.base/bitops.exp: print value of !0
new UNRESOLVED: gdb.base/bitops.exp: print value of !1
new UNRESOLVED: gdb.base/bitops.exp: print value of !10
new UNRESOLVED: gdb.base/bitops.exp: print value of !100
new UNRESOLVED: gdb.base/bitops.exp: print value of !1000
new UNRESOLVED: gdb.base/bitops.exp: print value of !2
new UNRESOLVED: gdb.base/bitops.exp: print value of
new UNRESOLVED: gdb.base/bitops.exp: print value of -!0
new UNRESOLVED: gdb.base/bitops.exp: print value of -1 < 0 > 1
new UNRESOLVED: gdb.base/bitops.exp: print value of -3>4
new UNRESOLVED: gdb.base/bitops.exp: print value of 0 == 8 > 128 >> 1 + 2 * 2
new UNRESOLVED: gdb.base/bitops.exp: print value of 0 || 1 && 0 | 0 ^ 0 == 8
new UNRESOLVED: gdb.base/bitops.exp: print value of 0 || 1 && 0 | 0 ^ 0 == 8 > 128 >>1 +2 *2
new UNRESOLVED: gdb.base/bitops.exp: print value of 0.0 || 0
new UNRESOLVED: gdb.base/bitops.exp: print value of 0.0 || 1.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 1.0 || 0
new UNRESOLVED: gdb.base/bitops.exp: print value of 10 & 5
new UNRESOLVED: gdb.base/bitops.exp: print value of 10 ^ 5
new UNRESOLVED: gdb.base/bitops.exp: print value of 10 | 5
new UNRESOLVED: gdb.base/bitops.exp: print value of 15 ^ 10 ^ 5 ^ 7
new UNRESOLVED: gdb.base/bitops.exp: print value of 2 > -3
new UNRESOLVED: gdb.base/bitops.exp: print value of 3 * 2 / 4.0 * 2.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3!=3.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3!=5.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3.5 < -4.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3.5 < 4.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3==3.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3==4.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3>=2.5
new UNRESOLVED: gdb.base/bitops.exp: print value of 3>=4.5
new UNRESOLVED: gdb.base/bitops.exp: print value of 8 << 2 >> 4
new UNRESOLVED: gdb.base/bitops.exp: print value of ~-!0
new UNRESOLVED: gdb.base/command-line-input.exp: print 1\\n + 2
new UNRESOLVED: gdb.base/command-line-input.exp: print 1\\n2
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: cmd complete ""
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: set max-completions 1
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: show editing
new UNRESOLVED: gdb.base/complete-empty.exp: show editing
new UNRESOLVED: gdb.base/default.exp:
new UNRESOLVED: gdb.base/default.exp: add-symbol-file
new UNRESOLVED: gdb.base/default.exp: append
new UNRESOLVED: gdb.base/default.exp: append binary
new UNRESOLVED: gdb.base/default.exp: append binary memory
new UNRESOLVED: gdb.base/default.exp: append binary value
new UNRESOLVED: gdb.base/default.exp: append memory
new UNRESOLVED: gdb.base/default.exp: append value
new UNRESOLVED: gdb.base/default.exp: call
new UNRESOLVED: gdb.base/default.exp: catch
new UNRESOLVED: gdb.base/default.exp: cd
new UNRESOLVED: gdb.base/default.exp: check if python 3
new UNRESOLVED: gdb.base/default.exp: clear
new UNRESOLVED: gdb.base/default.exp: commands
new UNRESOLVED: gdb.base/default.exp: condition
new UNRESOLVED: gdb.base/default.exp: continue
new UNRESOLVED: gdb.base/default.exp: continue "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: core-file
new UNRESOLVED: gdb.base/default.exp: define
new UNRESOLVED: gdb.base/default.exp: delete
new UNRESOLVED: gdb.base/default.exp: delete "d" abbreviation
new UNRESOLVED: gdb.base/default.exp: delete breakpoints
new UNRESOLVED: gdb.base/default.exp: delete display prompt
new UNRESOLVED: gdb.base/default.exp: detach
new UNRESOLVED: gdb.base/default.exp: directory prompt
new UNRESOLVED: gdb.base/default.exp: disable
new UNRESOLVED: gdb.base/default.exp: disable "dis" abbreviation
new UNRESOLVED: gdb.base/default.exp: disable "disa" abbreviation
new UNRESOLVED: gdb.base/default.exp: disable breakpoints
new UNRESOLVED: gdb.base/default.exp: disable display
new UNRESOLVED: gdb.base/default.exp: disassemble
new UNRESOLVED: gdb.base/default.exp: display
new UNRESOLVED: gdb.base/default.exp: do
new UNRESOLVED: gdb.base/default.exp: document
new UNRESOLVED: gdb.base/default.exp: down
new UNRESOLVED: gdb.base/default.exp: down-silently
new UNRESOLVED: gdb.base/default.exp: dump
new UNRESOLVED: gdb.base/default.exp: dump binary
new UNRESOLVED: gdb.base/default.exp: dump binary memory
new UNRESOLVED: gdb.base/default.exp: dump binary value
new UNRESOLVED: gdb.base/default.exp: dump ihex
new UNRESOLVED: gdb.base/default.exp: dump ihex memory
new UNRESOLVED: gdb.base/default.exp: dump ihex value
new UNRESOLVED: gdb.base/default.exp: dump memory
new UNRESOLVED: gdb.base/default.exp: dump srec
new UNRESOLVED: gdb.base/default.exp: dump srec memory
new UNRESOLVED: gdb.base/default.exp: dump srec value
new UNRESOLVED: gdb.base/default.exp: dump tekhex
new UNRESOLVED: gdb.base/default.exp: dump tekhex memory
new UNRESOLVED: gdb.base/default.exp: dump tekhex value
new UNRESOLVED: gdb.base/default.exp: dump value
new UNRESOLVED: gdb.base/default.exp: echo
new UNRESOLVED: gdb.base/default.exp: enable
new UNRESOLVED: gdb.base/default.exp: enable breakpoints
new UNRESOLVED: gdb.base/default.exp: enable breakpoints delete
new UNRESOLVED: gdb.base/default.exp: enable breakpoints once
new UNRESOLVED: gdb.base/default.exp: enable delete
new UNRESOLVED: gdb.base/default.exp: enable display
new UNRESOLVED: gdb.base/default.exp: enable once
new UNRESOLVED: gdb.base/default.exp: fg
new UNRESOLVED: gdb.base/default.exp: finish
new UNRESOLVED: gdb.base/default.exp: forward-search
new UNRESOLVED: gdb.base/default.exp: frame
new UNRESOLVED: gdb.base/default.exp: frame "f" abbreviation
new UNRESOLVED: gdb.base/default.exp: gcore
new UNRESOLVED: gdb.base/default.exp: generate-core-file
new UNRESOLVED: gdb.base/default.exp: handle
new UNRESOLVED: gdb.base/default.exp: help
new UNRESOLVED: gdb.base/default.exp: help "h" abbreviation
new UNRESOLVED: gdb.base/default.exp: ignore
new UNRESOLVED: gdb.base/default.exp: info
new UNRESOLVED: gdb.base/default.exp: info "i" abbreviation
new UNRESOLVED: gdb.base/default.exp: info address
new UNRESOLVED: gdb.base/default.exp: info all-registers
new UNRESOLVED: gdb.base/default.exp: info args
new UNRESOLVED: gdb.base/default.exp: info bogus-gdb-command
new UNRESOLVED: gdb.base/default.exp: info breakpoints
new UNRESOLVED: gdb.base/default.exp: info copying
new UNRESOLVED: gdb.base/default.exp: info display
new UNRESOLVED: gdb.base/default.exp: info files
new UNRESOLVED: gdb.base/default.exp: info float
new UNRESOLVED: gdb.base/default.exp: info frame
new UNRESOLVED: gdb.base/default.exp: info frame "f" abbreviation
new UNRESOLVED: gdb.base/default.exp: info functions
new UNRESOLVED: gdb.base/default.exp: info locals
new UNRESOLVED: gdb.base/default.exp: info program
new UNRESOLVED: gdb.base/default.exp: info registers
new UNRESOLVED: gdb.base/default.exp: info set
new UNRESOLVED: gdb.base/default.exp: info source
new UNRESOLVED: gdb.base/default.exp: info sources
new UNRESOLVED: gdb.base/default.exp: info stack
new UNRESOLVED: gdb.base/default.exp: info stack "s" abbreviation
new UNRESOLVED: gdb.base/default.exp: info symbol
new UNRESOLVED: gdb.base/default.exp: info target
new UNRESOLVED: gdb.base/default.exp: info terminal
new UNRESOLVED: gdb.base/default.exp: info threads
new UNRESOLVED: gdb.base/default.exp: info types
new UNRESOLVED: gdb.base/default.exp: info variables
new UNRESOLVED: gdb.base/default.exp: info vector
new UNRESOLVED: gdb.base/default.exp: info warranty
new UNRESOLVED: gdb.base/default.exp: info watchpoints
new UNRESOLVED: gdb.base/default.exp: inspect
new UNRESOLVED: gdb.base/default.exp: jump
new UNRESOLVED: gdb.base/default.exp: kill
new UNRESOLVED: gdb.base/default.exp: list
new UNRESOLVED: gdb.base/default.exp: list "l" abbreviation
new UNRESOLVED: gdb.base/default.exp: load
new UNRESOLVED: gdb.base/default.exp: next
new UNRESOLVED: gdb.base/default.exp: next "n" abbreviation
new UNRESOLVED: gdb.base/default.exp: nexti
new UNRESOLVED: gdb.base/default.exp: nexti "ni" abbreviation
new UNRESOLVED: gdb.base/default.exp: output
new UNRESOLVED: gdb.base/default.exp: overlay
new UNRESOLVED: gdb.base/default.exp: overlay auto
new UNRESOLVED: gdb.base/default.exp: overlay list
new UNRESOLVED: gdb.base/default.exp: overlay manual #1
new UNRESOLVED: gdb.base/default.exp: overlay manual #2
new UNRESOLVED: gdb.base/default.exp: overlay map #1
new UNRESOLVED: gdb.base/default.exp: overlay map #2
new UNRESOLVED: gdb.base/default.exp: overlay off
new UNRESOLVED: gdb.base/default.exp: overlay on
new UNRESOLVED: gdb.base/default.exp: overlay unmap #1
new UNRESOLVED: gdb.base/default.exp: overlay unmap #2
new UNRESOLVED: gdb.base/default.exp: print
new UNRESOLVED: gdb.base/default.exp: print "p" abbreviation
new UNRESOLVED: gdb.base/default.exp: printf
new UNRESOLVED: gdb.base/default.exp: ptype
new UNRESOLVED: gdb.base/default.exp: pwd
new UNRESOLVED: gdb.base/default.exp: rbreak
new UNRESOLVED: gdb.base/default.exp: restore
new UNRESOLVED: gdb.base/default.exp: return
new UNRESOLVED: gdb.base/default.exp: reverse-search
new UNRESOLVED: gdb.base/default.exp: search
new UNRESOLVED: gdb.base/default.exp: section
new UNRESOLVED: gdb.base/default.exp: set
new UNRESOLVED: gdb.base/default.exp: set annotate
new UNRESOLVED: gdb.base/default.exp: set args
new UNRESOLVED: gdb.base/default.exp: set check "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check "ch" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check "check" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check range
new UNRESOLVED: gdb.base/default.exp: set check type
new UNRESOLVED: gdb.base/default.exp: set complaints
new UNRESOLVED: gdb.base/default.exp: set confirm
new UNRESOLVED: gdb.base/default.exp: set environment
new UNRESOLVED: gdb.base/default.exp: set height
new UNRESOLVED: gdb.base/default.exp: set history
new UNRESOLVED: gdb.base/default.exp: set history expansion
new UNRESOLVED: gdb.base/default.exp: set history filename
new UNRESOLVED: gdb.base/default.exp: set history save
new UNRESOLVED: gdb.base/default.exp: set history save off
new UNRESOLVED: gdb.base/default.exp: set history size
new UNRESOLVED: gdb.base/default.exp: set language
new UNRESOLVED: gdb.base/default.exp: set listsize
new UNRESOLVED: gdb.base/default.exp: set print
new UNRESOLVED: gdb.base/default.exp: set print "p" abbreviation
new UNRESOLVED: gdb.base/default.exp: set print "pr" abbreviation
new UNRESOLVED: gdb.base/default.exp: set print address
new UNRESOLVED: gdb.base/default.exp: set print array
new UNRESOLVED: gdb.base/default.exp: set print asm-demangle
new UNRESOLVED: gdb.base/default.exp: set print demangle
new UNRESOLVED: gdb.base/default.exp: set print elements
new UNRESOLVED: gdb.base/default.exp: set print object
new UNRESOLVED: gdb.base/default.exp: set print pretty
new UNRESOLVED: gdb.base/default.exp: set print sevenbit-strings
new UNRESOLVED: gdb.base/default.exp: set print union
new UNRESOLVED: gdb.base/default.exp: set print vtbl
new UNRESOLVED: gdb.base/default.exp: set radix
new UNRESOLVED: gdb.base/default.exp: set the history filename
new UNRESOLVED: gdb.base/default.exp: set variable
new UNRESOLVED: gdb.base/default.exp: set verbose
new UNRESOLVED: gdb.base/default.exp: set width
new UNRESOLVED: gdb.base/default.exp: set write
new UNRESOLVED: gdb.base/default.exp: shell echo Hi dad!
new UNRESOLVED: gdb.base/default.exp: show
new UNRESOLVED: gdb.base/default.exp: show annotate
new UNRESOLVED: gdb.base/default.exp: show args
new UNRESOLVED: gdb.base/default.exp: show check "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check "ch" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check "check" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check range
new UNRESOLVED: gdb.base/default.exp: show check type
new UNRESOLVED: gdb.base/default.exp: show commands
new UNRESOLVED: gdb.base/default.exp: show complaints
new UNRESOLVED: gdb.base/default.exp: show confirm
new UNRESOLVED: gdb.base/default.exp: show convenience
new UNRESOLVED: gdb.base/default.exp: show directories
new UNRESOLVED: gdb.base/default.exp: show editing
new UNRESOLVED: gdb.base/default.exp: show height
new UNRESOLVED: gdb.base/default.exp: show history
new UNRESOLVED: gdb.base/default.exp: show history expansion
new UNRESOLVED: gdb.base/default.exp: show history filename
new UNRESOLVED: gdb.base/default.exp: show history save
new UNRESOLVED: gdb.base/default.exp: show history size
new UNRESOLVED: gdb.base/default.exp: show language
new UNRESOLVED: gdb.base/default.exp: show listsize
new UNRESOLVED: gdb.base/default.exp: show p
new UNRESOLVED: gdb.base/default.exp: show paths
new UNRESOLVED: gdb.base/default.exp: show pr
new UNRESOLVED: gdb.base/default.exp: show print
new UNRESOLVED: gdb.base/default.exp: show print address
new UNRESOLVED: gdb.base/default.exp: show print array
new UNRESOLVED: gdb.base/default.exp: show print asm-demangle
new UNRESOLVED: gdb.base/default.exp: show print demangle
new UNRESOLVED: gdb.base/default.exp: show print elements
new UNRESOLVED: gdb.base/default.exp: show print object
new UNRESOLVED: gdb.base/default.exp: show print pretty
new UNRESOLVED: gdb.base/default.exp: show print sevenbit-strings
new UNRESOLVED: gdb.base/default.exp: show print union
new UNRESOLVED: gdb.base/default.exp: show print vtbl
new UNRESOLVED: gdb.base/default.exp: show prompt
new UNRESOLVED: gdb.base/default.exp: show radix
new UNRESOLVED: gdb.base/default.exp: show user
new UNRESOLVED: gdb.base/default.exp: show values
new UNRESOLVED: gdb.base/default.exp: show verbose
new UNRESOLVED: gdb.base/default.exp: show version
new UNRESOLVED: gdb.base/default.exp: show width
new UNRESOLVED: gdb.base/default.exp: show write
new UNRESOLVED: gdb.base/default.exp: signal
new UNRESOLVED: gdb.base/default.exp: source
new UNRESOLVED: gdb.base/default.exp: step "s" abbreviation #1
new UNRESOLVED: gdb.base/default.exp: step "s" abbreviation #2
new UNRESOLVED: gdb.base/default.exp: step #1
new UNRESOLVED: gdb.base/default.exp: step #2
new UNRESOLVED: gdb.base/default.exp: stepi
new UNRESOLVED: gdb.base/default.exp: stepi "si" abbreviation
new UNRESOLVED: gdb.base/default.exp: symbol-file
new UNRESOLVED: gdb.base/default.exp: target
new UNRESOLVED: gdb.base/default.exp: target native
new UNRESOLVED: gdb.base/default.exp: tbreak
new UNRESOLVED: gdb.base/default.exp: thread
new UNRESOLVED: gdb.base/default.exp: thread apply
new UNRESOLVED: gdb.base/default.exp: thread find
new UNRESOLVED: gdb.base/default.exp: thread name
new UNRESOLVED: gdb.base/default.exp: undisplay prompt
new UNRESOLVED: gdb.base/default.exp: unset
new UNRESOLVED: gdb.base/default.exp: unset environment prompt
new UNRESOLVED: gdb.base/default.exp: until
new UNRESOLVED: gdb.base/default.exp: until "u" abbreviation
new UNRESOLVED: gdb.base/default.exp: up-silently
new UNRESOLVED: gdb.base/default.exp: verify python support
new UNRESOLVED: gdb.base/default.exp: watch
new UNRESOLVED: gdb.base/default.exp: whatis
new UNRESOLVED: gdb.base/default.exp: where
new UNRESOLVED: gdb.base/default.exp: x
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567890123456789012345678901234dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567890123456dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567890123456.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567890123456789012345678901234.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567890123456789012345678901234dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567890123456dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E384dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E6144dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E96df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2147483648ll
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2147483648ull
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2ll
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 4294967296ull
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd < 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd < 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df + 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df + 1.2f
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df < 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df < 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df > 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl < 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl < 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl > 2
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd * 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd + 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd - 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd / 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df * 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df + 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df - 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df / 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl * 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl + 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl - 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl / 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567890123456.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567890123456789012345678901234.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 + 1.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 > 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 > 3.1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.1dd + 2.7df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.1df + 2.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.3dd + 2.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.3dl + 2.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.6df + 2.7dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.6dl + 2.7df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 3 + 2.1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 1.2df + 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2 + 1.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dd + 2.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dd + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dl + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 3 + 2.1dl
new UNRESOLVED: gdb.base/echo.exp: echo test
new UNRESOLVED: gdb.base/empty_exe.exp: file ''
new UNRESOLVED: gdb.base/empty_exe.exp: print 1
new UNRESOLVED: gdb.base/endian.exp: auto target endianness
new UNRESOLVED: gdb.base/endian.exp: auto target endianness big
new UNRESOLVED: gdb.base/endian.exp: auto target endianness little
new UNRESOLVED: gdb.base/endian.exp: default target endianness
new UNRESOLVED: gdb.base/endian.exp: get target endianness
new FAIL: gdb.base/endian.exp: override auto target endianness big
new FAIL: gdb.base/endian.exp: override auto target endianness little
new UNRESOLVED: gdb.base/endian.exp: override target endianness big
new FAIL: gdb.base/endian.exp: override target endianness little
new UNRESOLVED: gdb.base/endian.exp: previously big default executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously big default no executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously little default executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously little default no executable endianness
new UNRESOLVED: gdb.base/endian.exp: set target endianness
new UNRESOLVED: gdb.base/endian.exp: set target endianness big
new UNRESOLVED: gdb.base/endian.exp: set target endianness little
new UNRESOLVED: gdb.base/environ.exp: all environment variables have been unset
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable previously undefined
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable using = syntax
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable with trailing equals
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable with trailing whitespace
new UNRESOLVED: gdb.base/environ.exp: confirm unset environment variable worked
new UNRESOLVED: gdb.base/environ.exp: set environment variable
new UNRESOLVED: gdb.base/environ.exp: set environment variable previously undefined
new UNRESOLVED: gdb.base/environ.exp: set environment variable to null value
new UNRESOLVED: gdb.base/environ.exp: set environment variable using = syntax
new UNRESOLVED: gdb.base/environ.exp: set environment variable with trailing equals
new UNRESOLVED: gdb.base/environ.exp: set environment variable with trailing whitespace
new UNRESOLVED: gdb.base/environ.exp: set environment without arguments
new UNRESOLVED: gdb.base/environ.exp: set environment without variable name
new UNRESOLVED: gdb.base/environ.exp: set path works properly
new UNRESOLVED: gdb.base/environ.exp: show environment works
new UNRESOLVED: gdb.base/environ.exp: show non-existent environment variable
new UNRESOLVED: gdb.base/environ.exp: show null environment variable
new UNRESOLVED: gdb.base/environ.exp: show paths works properly
new UNRESOLVED: gdb.base/environ.exp: unset all environment variables
new UNRESOLVED: gdb.base/environ.exp: unset environment variable
new UNRESOLVED: gdb.base/eval.exp: first eval.
new UNRESOLVED: gdb.base/eval.exp: initialize $a.
new UNRESOLVED: gdb.base/eval.exp: second eval.
new UNRESOLVED: gdb.base/gdb1056.exp: print 1/0
new UNRESOLVED: gdb.base/gdb1056.exp: test unsigned division by zero
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize= 20 : show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize= 20 : show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5ab: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5ab: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=0: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=0: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=10zab: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=10zab: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=20: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=20: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=50: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=50: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=99999999999999999999999999999999999: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=99999999999999999999999999999999999: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=not_an_integer: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=not_an_integer: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=1000: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=1000: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=foo: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=foo: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/zero: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/zero: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: appending: server show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: creating: server show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: print 1
new UNRESOLVED: gdb.base/help.exp: apropos \
new UNRESOLVED: gdb.base/help.exp: apropos apropos
new UNRESOLVED: gdb.base/help.exp: apropos handle signal
new UNRESOLVED: gdb.base/help.exp: disable pagination
new UNRESOLVED: gdb.base/help.exp: help aliases
new UNRESOLVED: gdb.base/help.exp: help backtrace
new UNRESOLVED: gdb.base/help.exp: help backtrace "bt" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "b" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "br" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "bre" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "brea" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "break" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoints
new UNRESOLVED: gdb.base/help.exp: help commands
new UNRESOLVED: gdb.base/help.exp: help data
new UNRESOLVED: gdb.base/help.exp: help delete
new UNRESOLVED: gdb.base/help.exp: help delete "d" abbreviation
new UNRESOLVED: gdb.base/help.exp: help files
new UNRESOLVED: gdb.base/help.exp: help gotcha
new UNRESOLVED: gdb.base/help.exp: help help
new UNRESOLVED: gdb.base/help.exp: help help "h" abbreviation
new UNRESOLVED: gdb.base/help.exp: help info bogus-gdb-command
new UNRESOLVED: gdb.base/help.exp: help internals
new UNRESOLVED: gdb.base/help.exp: help obscure
new UNRESOLVED: gdb.base/help.exp: help running
new UNRESOLVED: gdb.base/help.exp: help show commands
new UNRESOLVED: gdb.base/help.exp: help show confirm
new UNRESOLVED: gdb.base/help.exp: help show copying
new UNRESOLVED: gdb.base/help.exp: help show warranty
new UNRESOLVED: gdb.base/help.exp: help stack
new UNRESOLVED: gdb.base/help.exp: help status
new UNRESOLVED: gdb.base/help.exp: help support
new UNRESOLVED: gdb.base/help.exp: help tracepoints
new UNRESOLVED: gdb.base/help.exp: help user-defined
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: set history remove-duplicates 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: set history remove-duplicates 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: set history remove-duplicates 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 3
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 4
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 3
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 4
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: set history remove-duplicates unlimited
new UNRESOLVED: gdb.base/history-duplicates.exp: show editing
new UNRESOLVED: gdb.base/history-duplicates.exp: show history remove-duplicates
new UNRESOLVED: gdb.base/ifelse.exp: call original define
new UNRESOLVED: gdb.base/ifelse.exp: call replacement define
new UNRESOLVED: gdb.base/ifelse.exp: create define with empty else
new UNRESOLVED: gdb.base/ifelse.exp: if 0 .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 0 with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 1 .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 1 with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #1
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #2
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #3
new UNRESOLVED: gdb.base/ifelse.exp: replace define with if .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: set confirm off
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tc-td: 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-tc-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ts: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tf: 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-tf-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-ts: 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-ti-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tl-td: 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-tl-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-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-td: 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-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tld: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tll-tf: 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-td: 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-ts-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ts: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tc-td: 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-tc-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-ts: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tf: 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-tf-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-ts: 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-ti-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tl-td: 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-tl-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-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-td: 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-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tld: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tll-tf: 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-td: 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-ts-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ts: failed to compile
new FAIL: gdb.base/info-os.exp: cannot compile test program
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode on
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode on
new UNRESOLVED: gdb.base/interact.exp: show interactive-mode
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode on
new UNRESOLVED: gdb.base/multi-line-starts-subshell.exp: gdb input still works
new UNRESOLVED: gdb.base/multi-line-starts-subshell.exp: spawn subshell from multi-line
new UNRESOLVED: gdb.base/osabi.exp: set debug arch 1
new UNRESOLVED: gdb.base/osabi.exp: set osabi none
new UNRESOLVED: gdb.base/page.exp: paged count
new UNRESOLVED: gdb.base/page.exp: paged count for interrupt
new UNRESOLVED: gdb.base/page.exp: paged count remainder
new UNRESOLVED: gdb.base/page.exp: paged help
new UNRESOLVED: gdb.base/page.exp: pagination is off
new UNRESOLVED: gdb.base/page.exp: pagination is on
new UNRESOLVED: gdb.base/page.exp: q
new UNRESOLVED: gdb.base/page.exp: quit while paging
new UNRESOLVED: gdb.base/page.exp: set editing off
new UNRESOLVED: gdb.base/page.exp: set height -1
new UNRESOLVED: gdb.base/page.exp: set height 10
new UNRESOLVED: gdb.base/page.exp: set height 5
new UNRESOLVED: gdb.base/page.exp: set pagination off
new UNRESOLVED: gdb.base/page.exp: set pagination on
new UNRESOLVED: gdb.base/page.exp: set width -1
new UNRESOLVED: gdb.base/page.exp: set width 30
new UNRESOLVED: gdb.base/page.exp: size=0: set height 0
new UNRESOLVED: gdb.base/page.exp: size=0: set height 200
new UNRESOLVED: gdb.base/page.exp: size=0: set width 0
new UNRESOLVED: gdb.base/page.exp: size=0: set width 200
new UNRESOLVED: gdb.base/page.exp: size=0: show height
new UNRESOLVED: gdb.base/page.exp: size=0: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=0: show width
new UNRESOLVED: gdb.base/page.exp: size=0: show width unlimited
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set height 0x80000000
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set height 200
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set width 0x80000000
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set width 200
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show height
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show width
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show width unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set height 200
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set height unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set width 200
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set width unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show height
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show width
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show width unlimited
new UNRESOLVED: gdb.base/page.exp: unpaged help
new UNRESOLVED: gdb.base/quit.exp: quit with expression
new UNRESOLVED: gdb.base/quit.exp: quit with syntax error
new UNRESOLVED: gdb.base/radix.exp: Output radix unchanged after rejecting 0
new UNRESOLVED: gdb.base/radix.exp: Reject input-radix 0
new UNRESOLVED: gdb.base/radix.exp: Reject input-radix 1
new UNRESOLVED: gdb.base/radix.exp: Reject output-radix 0
new UNRESOLVED: gdb.base/radix.exp: Reject output-radix 1
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 10
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 16
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 2
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 3
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 8
new UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 10
new UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 16
new UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 8
new UNRESOLVED: gdb.base/radix.exp: input radix unchanged after rejecting 0
new UNRESOLVED: gdb.base/radix.exp: input radix unchanged after rejecting 1
new UNRESOLVED: gdb.base/radix.exp: output radix unchanged after rejecting 1
new UNRESOLVED: gdb.base/radix.exp: output radix unchanged after rejection through set radix command
new UNRESOLVED: gdb.base/radix.exp: print
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -100; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -256; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -4; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -64; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -9; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -101; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -10; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -257; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -5; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -65; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -10; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -16; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -2; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -3; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -8; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -11; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -17; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -3; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -4; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -9; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -12; expect -12; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -20; expect -16; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -2; expect Invalid number "2"\.; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -9; expect Invalid number "9".; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 010; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 17; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect f; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 100; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 100; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 144; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 256; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 4; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 64; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 64; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 9; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 10101; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 21; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 4161; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 65793; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 91; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 101; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 10; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 257; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 5; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 65; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 10; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 10; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 12; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 16; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 2; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 3; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 8; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10; expect a; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 11; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 17; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 3; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 4; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 9; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 14; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 24; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20; expect 16; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20; expect 6; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 2; expect 2; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 30; expect Invalid number "30"\.; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 3; expect Invalid number "3"\.; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 4; expect Invalid number "4"\.; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 8; expect Invalid number "8".; input radix 8
new UNRESOLVED: gdb.base/radix.exp: reset radices
new UNRESOLVED: gdb.base/radix.exp: set input-radix 10
new UNRESOLVED: gdb.base/radix.exp: set input-radix 16
new UNRESOLVED: gdb.base/radix.exp: set input-radix 2
new UNRESOLVED: gdb.base/radix.exp: set input-radix 3
new UNRESOLVED: gdb.base/radix.exp: set input-radix 8
new UNRESOLVED: gdb.base/radix.exp: set output-radix 10
new UNRESOLVED: gdb.base/radix.exp: set output-radix 16
new UNRESOLVED: gdb.base/radix.exp: set output-radix 8
new UNRESOLVED: gdb.base/radix.exp: set radix 7 rejected
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 10
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 16
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 2
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 3
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 8
new UNRESOLVED: gdb.base/radix.exp: show radix, output radix 10
new UNRESOLVED: gdb.base/radix.exp: show radix, output radix 16
new UNRESOLVED: gdb.base/radix.exp: show radix, output radix 8
new UNRESOLVED: gdb.base/readline.exp: Simple operate-and-get-next - send p 1
new UNRESOLVED: gdb.base/readline.exp: arrow keys with secondary prompt
new UNRESOLVED: gdb.base/readline.exp: operate-and-get-next with secondary prompt - send if 1 > 0
new UNRESOLVED: gdb.base/readline.exp: print 42
new UNRESOLVED: gdb.base/readline.exp: show editing
new UNRESOLVED: gdb.base/remotetimeout.exp: correct remotetimeout printed
new UNRESOLVED: gdb.base/shell.exp: ! echo foo
new UNRESOLVED: gdb.base/shell.exp: ! exit 0
new UNRESOLVED: gdb.base/shell.exp: ! exit 1
new UNRESOLVED: gdb.base/shell.exp: ! kill -2 $$
new UNRESOLVED: gdb.base/shell.exp: !echo foo
new UNRESOLVED: gdb.base/shell.exp: -d spaces value missing
new UNRESOLVED: gdb.base/shell.exp: -d value missing
new UNRESOLVED: gdb.base/shell.exp: DELIM delimiter missing
new UNRESOLVED: gdb.base/shell.exp: SHELL_COMMAND missing
new UNRESOLVED: gdb.base/shell.exp: SHELL_COMMAND missing with delimiter
new UNRESOLVED: gdb.base/shell.exp: all missing
new UNRESOLVED: gdb.base/shell.exp: alternate 1char delim
new UNRESOLVED: gdb.base/shell.exp: alternate 1char delim, no space
new UNRESOLVED: gdb.base/shell.exp: alternate 3char delim
new UNRESOLVED: gdb.base/shell.exp: alternate 3char delim, no space
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe print 1 | "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| print 1 | "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|print 1 | "
new UNRESOLVED: gdb.base/shell.exp: define foo
new UNRESOLVED: gdb.base/shell.exp: delimiter missing due to missing space
new UNRESOLVED: gdb.base/shell.exp: double pipe
new UNRESOLVED: gdb.base/shell.exp: double pipe, pipe char
new UNRESOLVED: gdb.base/shell.exp: echo coucou
new UNRESOLVED: gdb.base/shell.exp: enter commands
new UNRESOLVED: gdb.base/shell.exp: no space around pipe char
new UNRESOLVED: gdb.base/shell.exp: pipe fail exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe fail exitsignal
new UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitsignal
new UNRESOLVED: gdb.base/shell.exp: pipe success exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe success exitsignal
new UNRESOLVED: gdb.base/shell.exp: repeat previous command
new UNRESOLVED: gdb.base/shell.exp: set max-completions 0
new UNRESOLVED: gdb.base/shell.exp: set max-completions 2
new UNRESOLVED: gdb.base/shell.exp: shell echo foo
new UNRESOLVED: gdb.base/shell.exp: shell fail exitcode
new UNRESOLVED: gdb.base/shell.exp: shell fail exitsignal
new UNRESOLVED: gdb.base/shell.exp: shell interrupt exitcode
new UNRESOLVED: gdb.base/shell.exp: shell interrupt exitsignal
new UNRESOLVED: gdb.base/shell.exp: shell success exitcode
new UNRESOLVED: gdb.base/shell.exp: shell success exitsignal
new UNRESOLVED: gdb.base/shell.exp: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
new UNRESOLVED: gdb.base/shell.exp: simple pipe
new UNRESOLVED: gdb.base/shell.exp: simple pipe with arg
new UNRESOLVED: gdb.base/shell.exp: | delimiter missing
new UNRESOLVED: gdb.base/shell.exp: |p 123| exit 0
new UNRESOLVED: gdb.base/shell.exp: |p 123| exit 1
new UNRESOLVED: gdb.base/shell.exp: |p 123| kill -2 $$
new UNRESOLVED: gdb.base/source-dir.exp: directory /nOtExStInG/a /nOtExStInG/b /nOtExStInG/c
new UNRESOLVED: gdb.base/source-dir.exp: directory /nOtExStInG/b /nOtExStInG/d /nOtExStInG/c
new UNRESOLVED: gdb.base/source.exp: script contains error
new UNRESOLVED: gdb.base/source.exp: set search directories
new UNRESOLVED: gdb.base/source.exp: source -s
new UNRESOLVED: gdb.base/source.exp: source -s -v
new UNRESOLVED: gdb.base/source.exp: source -v
new UNRESOLVED: gdb.base/source.exp: source -v -s
new UNRESOLVED: gdb.base/source.exp: source after -v
new UNRESOLVED: gdb.base/source.exp: source for-sure-nonexistant-file
new UNRESOLVED: gdb.base/source.exp: source source-nofile.gdb
new UNRESOLVED: gdb.base/step-over-syscall.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/step-over-syscall.exp: run to main
new UNRESOLVED: gdb.base/subst.exp: add depuis -> vers substitution rule
new UNRESOLVED: gdb.base/subst.exp: add from -> to substitution rule
new UNRESOLVED: gdb.base/subst.exp: add from1 -> to1 substitution rule
new UNRESOLVED: gdb.base/subst.exp: add source -> destination substitution rule
new UNRESOLVED: gdb.base/subst.exp: add substitution rule to empty string
new UNRESOLVED: gdb.base/subst.exp: deactivate GDB's confirmation interface
new UNRESOLVED: gdb.base/subst.exp: remove all remaining substitution rules
new UNRESOLVED: gdb.base/subst.exp: remove default substitution rules
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, first argument is empty string
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, too few arguments
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, too many arguments
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after all remaining rules removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after depuis rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after empty rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after from rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path depuis, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, after unsetting it
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from/path, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from_a_bad_path, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path garbage, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: show substitute-path, too many arguments
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path depuis
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path empty
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from after the rule was removed
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path, too many arguments
new UNRESOLVED: gdb.base/trace-commands.exp: define user command
new UNRESOLVED: gdb.base/trace-commands.exp: depth resets on error part 1
new UNRESOLVED: gdb.base/trace-commands.exp: depth resets on error part 2
new UNRESOLVED: gdb.base/trace-commands.exp: nested trace-commands test
new UNRESOLVED: gdb.base/trace-commands.exp: nested trace-commands test with source
new UNRESOLVED: gdb.base/trace-commands.exp: set trace-commands
new UNRESOLVED: gdb.base/trace-commands.exp: show trace-commands says off
new UNRESOLVED: gdb.base/trace-commands.exp: show trace-commands says on
new UNRESOLVED: gdb.base/trace-commands.exp: simple trace-commands test
new UNRESOLVED: gdb.base/trace-commands.exp: source -v
new UNRESOLVED: gdb.base/warning.exp: echo 23\n
new UNRESOLVED: gdb.btrace/cpu.exp: default cpu
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu auto
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/1
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0x0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo/bar
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu none
new UNRESOLVED: gdb.btrace/cpu.exp: set record
new UNRESOLVED: gdb.btrace/cpu.exp: set record btrace
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu auto
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/1
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0x0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo/bar
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu none
new UNRESOLVED: gdb.cp/debug-expr.exp: print dynamic_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: print reinterpret_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: print static_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: set debug expression 1
new UNRESOLVED: gdb.cp/debug-expr.exp: set language c++
new UNRESOLVED: gdb.cp/demangle.exp: auto: check demangling style
new UNRESOLVED: gdb.cp/demangle.exp: auto: set demangle-style
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c -- _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c++ -- _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c++ _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l garbage xyzdje
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z13BitPatterntoaOK10BitPatternccc
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z31DrawDestinationTransformedImageP7_XImageiiS0_iimjiijmmP4_XGCOK13ivTransformeriiii
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z3argOK7Complex
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN11RelateManip6EffectEO7ivEvent
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN20DisplayList_IteratorC4EO11DisplayList
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN3fooC4EOS_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN3fooC4EiOS_iS0_iS0_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE3PixC4EOKS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE7elementC2EOKS0_PS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE7elementC4EOKS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityEC4EOKS1_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4PixXI11VHDLLibrary14VHDLLibraryRep4ListI10VHDLEntityEEC2EOKS5_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN7ivWorldC2EPKcOiPPcPK12ivOptionDescPK14ivPropertyData
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN8TextCode14CoreConstDeclsEO7ostream
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic: gnu-v3: check demangling style
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic: gnu-v3: set demangle-style
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK11VHDLLibrary5nextEEO4PixXIS_14VHDLLibraryRep4ListI10VHDLEntityEE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK4ListI10VHDLEntityE4nextEONS1_3PixE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK4ListI10VHDLEntityEclEOKNS1_3PixE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOK10BitPattern
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOK12BitSubStringi
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOKS_
new UNRESOLVED: gdb.cp/demangle.exp: set language c++
new UNRESOLVED: gdb.cp/demangle.exp: set language unknown
new UNRESOLVED: gdb.cp/demangle.exp: set width 0
new UNRESOLVED: gdb.cp/maint.exp: help maint cp
new UNRESOLVED: gdb.cp/maint.exp: help maint cp first_component
new UNRESOLVED: gdb.cp/maint.exp: help maint cp namespace
new UNRESOLVED: gdb.cp/maint.exp: help maintenance cplus
new UNRESOLVED: gdb.cp/maint.exp: maint cp
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component C<A>::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component C<std::basic_streambuf<wchar_t,std::char_traits<wchar_t> > >::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component T<Cooperator>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component bool operator<<char>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo::bar::baz
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<&
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<&operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int operator<< <char>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator  ->
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator ->
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator>>
new UNRESOLVED: gdb.cp/maint.exp: maint cp namespace
new UNRESOLVED: gdb.cp/maint.exp: set complaints 1000
new UNRESOLVED: gdb.cp/punctuator.exp: print
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 1
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 2
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 3
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 1
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 2
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 3
new UNRESOLVED: gdb.cp/punctuator.exp: set lang c++
new UNRESOLVED: gdb.cp/ref-params.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/ref-params.exp: print value of Child& in f2
new UNRESOLVED: gdb.cp/ref-params.exp: print value of Parent& in f1
new UNRESOLVED: gdb.cp/ref-params.exp: print value of a Child in main
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on Child in main
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on Child& in f2
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f2 on
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f2 on Child in main
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print f1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print mf1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print mf2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Child&& in f2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Child&& in f2: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Parent&& in f1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Parent&& in f1: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f1 on
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f1 on Child&& in f2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f2 on
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char16_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char16_t is unsigned
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char32_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char32_t is unsigned
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p L"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p U"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p u"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: set language c++
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: sizeof
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: wchar_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: wchar_t sign
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: char16_t is not built-in
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: char32_t is not built-in
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p L"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p U"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p u"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: set language c
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: wchar_t is not built-in
new UNRESOLVED: gdb.disasm/disassembler-options.exp: set disassembler-options
new UNRESOLVED: gdb.disasm/disassembler-options.exp: set disassembler-options invalid_option_value
new UNRESOLVED: gdb.disasm/disassembler-options.exp: show NULL disassembler-options
new UNRESOLVED: gdb.dlang/debug-expr.exp: print *
new UNRESOLVED: gdb.dlang/debug-expr.exp: set debug expression 1
new UNRESOLVED: gdb.dlang/debug-expr.exp: set language d
new UNRESOLVED: gdb.dlang/demangle.exp: set language d
new UNRESOLVED: gdb.dlang/expression.exp: set language d
new UNRESOLVED: gdb.dlang/primitive-types.exp: set language d
new UNRESOLVED: gdb.dlang/properties.exp: set language d
new UNRESOLVED: gdb.dlang/watch-loc.exp: disassemble _Dmain
new UNRESOLVED: gdb.dlang/watch-loc.exp: p _Dmain_label - _Dmain
new UNRESOLVED: gdb.dlang/watch-loc.exp: x/2i _Dmain+
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: disassemble first
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: disassemble second
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p first_label - first
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p second_label - second
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: x/2i first+
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: x/2i second+
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p g_label - g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i g+
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: console: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: console: set print object on
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: disassemble func01
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: p func01_label - func01
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: x/2i func01+
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dwz.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dwz.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dwz.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: disassemble mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: p mymain_label - mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: x/2i mymain+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/var-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/var-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/var-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/void-type.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/void-type.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i main+
new UNRESOLVED: gdb.guile/guile.exp: collect help from uiout
new UNRESOLVED: gdb.guile/guile.exp: guile
new UNRESOLVED: gdb.guile/guile.exp: show guile command - define zzq
new UNRESOLVED: gdb.guile/guile.exp: source -s source2.scm
new UNRESOLVED: gdb.guile/guile.exp: source source2.scm
new UNRESOLVED: gdb.guile/guile.exp: verify guile support
new UNRESOLVED: gdb.guile/guile.exp: verify help to uiout
new UNRESOLVED: gdb.guile/scm-error.exp: backtrace printed
new UNRESOLVED: gdb.guile/scm-error.exp: error loading scm file caught
new UNRESOLVED: gdb.guile/scm-error.exp: error message printed
new UNRESOLVED: gdb.guile/scm-error.exp: guile
new UNRESOLVED: gdb.guile/scm-error.exp: no delayed error
new UNRESOLVED: gdb.guile/scm-error.exp: no error printed
new UNRESOLVED: gdb.guile/scm-error.exp: reset print-stack to default, post set/show tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to full, for backtrace test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error printing tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to none, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: source /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.guile/scm-error/scm-error-2.scm
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack full setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack none setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting of default
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to full
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to none
new UNRESOLVED: gdb.guile/scm-error.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-gsmob.exp: gu
new UNRESOLVED: gdb.guile/scm-gsmob.exp: guile
new UNRESOLVED: gdb.guile/scm-gsmob.exp: object-properties
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-parameter.exp: Simple gdb boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: enum gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: error registering existing parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: file gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously ambiguously named boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set print s on
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: restricted gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: enum parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set invalid enum parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set print test-enum-param two
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: initial parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: new parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param bar.txt
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set print test-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 10
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 42
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: show test-restricted-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set print test-undoc-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: undocumented gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: verify guile support
new UNRESOLVED: gdb.objc/print.exp: set language objective-c
new UNRESOLVED: gdb.pascal/print.exp: set language pascal
new UNRESOLVED: gdb.pascal/types.exp: set language pascal
new UNRESOLVED: gdb.python/py-completion.exp: check if python 3
new UNRESOLVED: gdb.python/py-completion.exp: discard #1
new UNRESOLVED: gdb.python/py-completion.exp: discard #2
new UNRESOLVED: gdb.python/py-completion.exp: discard #3
new UNRESOLVED: gdb.python/py-completion.exp: discard #4
new UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completel'
new UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit1 c'
new UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit2 c'
new UNRESOLVED: gdb.python/py-completion.exp: load python file
new UNRESOLVED: gdb.python/py-completion.exp: load python file again
new UNRESOLVED: gdb.python/py-completion.exp: show editing
new UNRESOLVED: gdb.python/py-completion.exp: verify python support
new UNRESOLVED: gdb.python/py-error.exp: check if python 3
new UNRESOLVED: gdb.python/py-error.exp: main reached
new UNRESOLVED: gdb.python/py-error.exp: no delayed error
new UNRESOLVED: gdb.python/py-error.exp: set host-charset IBM1047
new UNRESOLVED: gdb.python/py-error.exp: verify python support
new KFAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new UNRESOLVED: gdb.python/py-function.exp: Test GDBError - python
new UNRESOLVED: gdb.python/py-function.exp: Test GdbError.  There should not be a stack trace
new UNRESOLVED: gdb.python/py-function.exp: Test Normal Error - python
new UNRESOLVED: gdb.python/py-function.exp: Test a Runtime error.  There should be a stack trace.
new UNRESOLVED: gdb.python/py-function.exp: call function
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = ada
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = asm
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = auto
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = c
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = c++
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = d
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = fortran
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = go
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = minimal
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = modula-2
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = objective-c
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = opencl
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = pascal
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = rust
new UNRESOLVED: gdb.python/py-function.exp: call yes with &&
new UNRESOLVED: gdb.python/py-function.exp: call yes with ||
new UNRESOLVED: gdb.python/py-function.exp: check if python 3
new UNRESOLVED: gdb.python/py-function.exp: input command-calling function - python
new UNRESOLVED: gdb.python/py-function.exp: input convenience function - python
new UNRESOLVED: gdb.python/py-function.exp: input int-returning function - python
new UNRESOLVED: gdb.python/py-function.exp: input value-returning convenience function - python
new UNRESOLVED: gdb.python/py-function.exp: set language ada
new UNRESOLVED: gdb.python/py-function.exp: set language asm
new UNRESOLVED: gdb.python/py-function.exp: set language auto
new UNRESOLVED: gdb.python/py-function.exp: set language c
new UNRESOLVED: gdb.python/py-function.exp: set language c++
new UNRESOLVED: gdb.python/py-function.exp: set language d
new UNRESOLVED: gdb.python/py-function.exp: set language fortran
new UNRESOLVED: gdb.python/py-function.exp: set language go
new UNRESOLVED: gdb.python/py-function.exp: set language minimal
new UNRESOLVED: gdb.python/py-function.exp: set language modula-2
new UNRESOLVED: gdb.python/py-function.exp: set language objective-c
new UNRESOLVED: gdb.python/py-function.exp: set language opencl
new UNRESOLVED: gdb.python/py-function.exp: set language pascal
new UNRESOLVED: gdb.python/py-function.exp: set language rust
new UNRESOLVED: gdb.python/py-function.exp: set python print-stack full
new UNRESOLVED: gdb.python/py-function.exp: setting a value from a function which executes a command, again.
new UNRESOLVED: gdb.python/py-function.exp: setting a value from a function which executes a command.
new UNRESOLVED: gdb.python/py-function.exp: verify python support
new UNRESOLVED: gdb.python/py-lookup-type.exp: check if python 3
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type CARDINAL using language modula-2
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language c
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language objective-c
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language pascal
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type character using language ada
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type character using language fortran
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type int32 using language go
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type ucent using language d
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type ushort using language opencl
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language ada
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language c
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language d
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language fortran
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language go
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language modula-2
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language objective-c
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language opencl
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language pascal
new UNRESOLVED: gdb.python/py-lookup-type.exp: verify python support
new UNRESOLVED: gdb.python/py-nested-maps.exp: check if python 3
new UNRESOLVED: gdb.python/py-nested-maps.exp: verify python support
new UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER - python
new UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER_UNLIMITED - python
new UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb booleanparameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: Throwing gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: check if python 3
new UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value can be set to -1
new UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value is -1 after setting
new UNRESOLVED: gdb.python/py-parameter.exp: enum gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: file gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: gdb.GdbError does not show Python stack
new UNRESOLVED: gdb.python/py-parameter.exp: python print
new UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -1
new UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -5
new UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER_UNLIMITED.value = -5
new UNRESOLVED: gdb.python/py-parameter.exp: set enum to two
new UNRESOLVED: gdb.python/py-parameter.exp: set invalid enum parameter
new UNRESOLVED: gdb.python/py-parameter.exp: set new file parameter
new UNRESOLVED: gdb.python/py-parameter.exp: set test-file-param
new UNRESOLVED: gdb.python/py-parameter.exp: show initial file value
new UNRESOLVED: gdb.python/py-parameter.exp: show new file value
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter is initial value
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter is new value
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter off
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter on
new UNRESOLVED: gdb.python/py-parameter.exp: test enum parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test file parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test general help
new UNRESOLVED: gdb.python/py-parameter.exp: test new file parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test set help
new UNRESOLVED: gdb.python/py-parameter.exp: test show help
new UNRESOLVED: gdb.python/py-parameter.exp: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: verify python support
new UNRESOLVED: gdb.python/py-prettyprint.exp: check if python 3
new UNRESOLVED: gdb.python/py-prettyprint.exp: verify python support
new UNRESOLVED: gdb.python/py-prompt.exp: check if python 3
new UNRESOLVED: gdb.python/py-prompt.exp: verify python support
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sigall-precsave.exp
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sigall-reverse.exp
new UNRESOLVED: gdb.rust/expr.exp: set language rust
new UNRESOLVED: gdb.rust/expr.exp: set var $something = 27
new FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
new FAIL: gdb.server/unittest.exp: unit tests
new UNRESOLVED: gdb.trace/actions.exp: failed to compile
new UNRESOLVED: gdb.trace/ax.exp: failed to compile
new UNRESOLVED: gdb.trace/deltrace.exp: failed to compile
new UNRESOLVED: gdb.trace/infotrace.exp: failed to compile
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with missing argument
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with too many arguments
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with wrong option
new UNRESOLVED: gdb.trace/packetlen.exp: failed to compile
new UNRESOLVED: gdb.trace/passc-dyn.exp: failed to compile
new UNRESOLVED: gdb.trace/passcount.exp: failed to compile
new UNRESOLVED: gdb.trace/report.exp: failed to compile
new UNRESOLVED: gdb.trace/save-trace.exp: failed to compile
new UNRESOLVED: gdb.trace/tfind.exp: failed to compile
new UNRESOLVED: gdb.trace/tracecmd.exp: failed to compile
new UNRESOLVED: gdb.trace/tsv.exp: failed to compile
new UNRESOLVED: gdb.trace/while-dyn.exp: failed to compile
new UNRESOLVED: gdb.trace/while-stepping.exp: failed to compile
new UNRESOLVED: gdb.tui/completion.exp: verify tui support
new UNRESOLVED: gdb.tui/empty.exp: set tui border-kind ascii
new UNRESOLVED: gdb.tui/empty.exp: src: 80x24: box 1
new UNRESOLVED: gdb.tui/empty.exp: verify tui support
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: correct line breaks
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: set height 2000
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: set pagination on
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: tui enable
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: verify tui support
new UNRESOLVED: gdb.xml/maint_print_struct.exp: printing tdesc with a structure and a bitfield
new UNRESOLVED: gdb.xml/maint_print_struct.exp: setting a new tdesc having only a structure
new UNRESOLVED: gdb.xml/tdesc-arch.exp: architecture XML tests
new UNRESOLVED: gdb.xml/tdesc-arch.exp: read default architecture
new UNRESOLVED: gdb.xml/tdesc-arch.exp: read valid architectures
new UNRESOLVED: gdb.xml/tdesc-errors.exp: set tdesc filename gdb.xml/tdesc-bogus.xml
new UNRESOLVED: gdb.xml/tdesc-errors.exp: set tdesc filename gdb.xml/tdesc-unknown.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: cd to directory holding xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: maintenance print reggroups
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $bitfields
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $extrareg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $flags
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $mixed_flags
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $structreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $structreg.v4
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $uintreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $unionreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $unionreg.v4
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $vecreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc file single-reg.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc filename test-extra-regs.xml - from extra-regs.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc filename test-regs.xml - from core-only.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/bad-include.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/includes.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/loop.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-gdbserver-m64/14/14309bb6bfe31e5ad26035cd41a46bdbaec154b0//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/14/14309bb6bfe31e5ad26035cd41a46bdbaec154b0//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-02  6:43 [binutils-gdb] Don't create empty literal pieces gdb-buildbot
@ 2019-10-02  8:54 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-02  8:54 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/823

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        0dfe5bfbb7e7a3e55c57d1b59c265dc1a3cd9fc7

Subject of commit:
        Don't create empty literal pieces

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/0d/0dfe5bfbb7e7a3e55c57d1b59c265dc1a3cd9fc7/

*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/O2_float_param.exp: compilation foo.adb
new FAIL: gdb.ada/access_tagged_param.exp: compilation foo.adb
new FAIL: gdb.ada/access_to_unbounded_array.exp: compilation foo.adb
new FAIL: gdb.ada/addr_arith.exp: compilation foo_na07_019.adb
new FAIL: gdb.ada/aliased_array.exp: compilation foo.adb
new FAIL: gdb.ada/arr_acc_idx_w_gap.exp: compilation enum_with_gap_main.adb
new FAIL: gdb.ada/arr_arr.exp: compilation foo.adb
new FAIL: gdb.ada/arr_enum_idx_w_gap.exp: compilation foo_q418_043.adb
new FAIL: gdb.ada/array_bounds.exp: compilation bar.adb
new FAIL: gdb.ada/array_char_idx.exp: compilation foo.adb
new FAIL: gdb.ada/array_of_variable_length.exp: compilation foo.adb
new FAIL: gdb.ada/array_ptr_renaming.exp: compilation foo.adb
new FAIL: gdb.ada/array_return.exp: compilation p.adb
new FAIL: gdb.ada/array_subscript_addr.exp: compilation p.adb
new FAIL: gdb.ada/arraydim.exp: compilation foo.adb
new FAIL: gdb.ada/arrayidx.exp: compilation p.adb
new FAIL: gdb.ada/arrayparam.exp: compilation foo.adb
new FAIL: gdb.ada/arrayptr.exp: compilation foo.adb
new FAIL: gdb.ada/assign_arr.exp: compilation main_p324_051.adb
new FAIL: gdb.ada/atomic_enum.exp: compilation foo.adb
new FAIL: gdb.ada/attr_ref_and_charlit.exp: compilation foo.adb
new FAIL: gdb.ada/bad-task-bp-keyword.exp: compilation foo.adb
new FAIL: gdb.ada/big_packed_array.exp: compilation foo_ra24_010.adb
new FAIL: gdb.ada/bp_c_mixed_case.exp: compilation foo_h731_021.adb
new FAIL: gdb.ada/bp_enum_homonym.exp: compilation p.adb
new FAIL: gdb.ada/bp_fun_addr.exp: compilation bp_fun_addr.adb
new FAIL: gdb.ada/bp_inlined_func.exp: compilation foo.adb
new FAIL: gdb.ada/bp_on_var.exp: compilation foo.adb
new FAIL: gdb.ada/bp_range_type.exp: compilation foo.adb
new FAIL: gdb.ada/bp_reset.exp: compilation foo.adb
new FAIL: gdb.ada/byte_packed_arr.exp: compilation reprod_main.adb
new UNRESOLVED: gdb.ada/call_pn.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.ada/catch_assert_if.exp: compilation bla.adb
new FAIL: gdb.ada/catch_ex.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/char_enum.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/char_enum.exp: print Char_Enum_Type'
new UNRESOLVED: gdb.ada/char_enum.exp: print pck.Global_Enum_Type'
new UNRESOLVED: gdb.ada/char_enum.exp: ptype Char_Enum_Type
new UNRESOLVED: gdb.ada/char_enum.exp: ptype pck.Global_Enum_Type
new FAIL: gdb.ada/char_param.exp: compilation foo.adb
new FAIL: gdb.ada/complete.exp: compilation foo.adb
new FAIL: gdb.ada/cond_lang.exp: compilation a.adb
new FAIL: gdb.ada/dgopt.exp: compilation x.adb
new FAIL: gdb.ada/disc_arr_bound.exp: compilation foo_n612_026.adb
new FAIL: gdb.ada/display_nested.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/dot_all.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.ada/dyn_arrayidx.exp: compilation foo.adb
new FAIL: gdb.ada/dyn_loc.exp: compilation p.adb
new FAIL: gdb.ada/dyn_stride.exp: compilation foo.adb
new FAIL: gdb.ada/enum_idx_packed.exp: compilation foo.adb
new FAIL: gdb.ada/excep_handle.exp: compilation foo.adb
new FAIL: gdb.ada/expr_delims.exp: compilation foo.adb
new FAIL: gdb.ada/expr_with_funcall.exp: compilation expr_r821_013.adb
new FAIL: gdb.ada/exprs.exp: compilation p.adb
new FAIL: gdb.ada/fin_fun_out.exp: compilation foo_o525_013.adb
new FAIL: gdb.ada/fixed_cmp.exp: compilation fixed.adb
new FAIL: gdb.ada/fixed_points.exp: compilation fixed_points.adb
new FAIL: gdb.ada/float_param.exp: call set_double
new UNRESOLVED: gdb.ada/float_param.exp: call set_float
new FAIL: gdb.ada/float_param.exp: call set_long_double
new FAIL: gdb.ada/float_param.exp: print global_double
new FAIL: gdb.ada/float_param.exp: print global_float
new FAIL: gdb.ada/float_param.exp: print global_long_double
new FAIL: gdb.ada/formatted_ref.exp: compilation formatted_ref.adb
new FAIL: gdb.ada/frame_arg_lang.exp: compilation bla.adb
new FAIL: gdb.ada/frame_args.exp: compilation foo.adb
new FAIL: gdb.ada/fullname_bp.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/fun_addr.exp: print foo'address
new FAIL: gdb.ada/fun_in_declare.exp: compilation foo.adb
new FAIL: gdb.ada/fun_overload_menu.exp: compilation foo.adb
new FAIL: gdb.ada/fun_renaming.exp: compilation fun_renaming.adb
new FAIL: gdb.ada/funcall_param.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/funcall_ptr.exp: Check that initial value of GA is null
new FAIL: gdb.ada/funcall_ptr.exp: Check that value of GA is 0x1234
new FAIL: gdb.ada/funcall_ptr.exp: call pck.p
new FAIL: gdb.ada/funcall_ref.exp: compilation foo.adb
new FAIL: gdb.ada/homonym.exp: compilation homonym_main.adb
new FAIL: gdb.ada/info_addr_mixed_case.exp: compilation foo.adb
new FAIL: gdb.ada/info_exc.exp: compilation foo.adb
new FAIL: gdb.ada/info_locals_renaming.exp: compilation foo.adb
new FAIL: gdb.ada/int_deref.exp: compilation foo.adb
new FAIL: gdb.ada/interface.exp: compilation foo.adb
new FAIL: gdb.ada/iwide.exp: compilation p.adb
new FAIL: gdb.ada/lang_switch.exp: compilation lang_switch.adb
new FAIL: gdb.ada/length_cond.exp: compilation length_cond.adb
new FAIL: gdb.ada/maint_with_ada.exp: compilation var_arr_typedef.adb
new FAIL: gdb.ada/mi_catch_assert.exp: compilation bla.adb
new FAIL: gdb.ada/mi_catch_ex_hand.exp: compilation foo.adb
new FAIL: gdb.ada/mi_ex_cond.exp: compilation foo.adb
new FAIL: gdb.ada/mi_exc_info.exp: compilation foo.adb
new FAIL: gdb.ada/mi_interface.exp: compilation foo.adb
new FAIL: gdb.ada/mi_ref_changeable.exp: compilation foo_rb20_056.adb
new FAIL: gdb.ada/mi_string_access.exp: compilation bar.adb
new FAIL: gdb.ada/mi_task_arg.exp: compilation task_switch.adb
new FAIL: gdb.ada/mi_task_info.exp: compilation task_switch.adb
new FAIL: gdb.ada/mi_var_array.exp: compilation bar.adb
new FAIL: gdb.ada/mi_var_union.exp: compilation bar.adb
new FAIL: gdb.ada/mod_from_name.exp: compilation foo.adb
new FAIL: gdb.ada/n_arr_bound.exp: compilation foo.adb
new FAIL: gdb.ada/notcplusplus.exp: compilation foo.adb
new FAIL: gdb.ada/null_array.exp: compilation foo.adb
new FAIL: gdb.ada/null_record.exp: compilation null_record.adb
new FAIL: gdb.ada/operator_bp.exp: compilation ops_test.adb
new FAIL: gdb.ada/optim_drec.exp: compilation foo.adb
new FAIL: gdb.ada/out_of_line_in_inlined.exp: compilation foo_o224_021.adb
new FAIL: gdb.ada/packed_array.exp: compilation pa.adb
new FAIL: gdb.ada/packed_array_assign.exp: compilation tester.adb
new FAIL: gdb.ada/packed_tagged.exp: compilation comp_bug.adb
new FAIL: gdb.ada/pckd_arr_ren.exp: compilation foo.adb
new FAIL: gdb.ada/pckd_neg.exp: compilation foo_o508_021.adb
new FAIL: gdb.ada/pkd_arr_elem.exp: compilation failure.adb
new FAIL: gdb.ada/pp-rec-component.exp: compilation foo.adb
new FAIL: gdb.ada/print_chars.exp: compilation foo.adb
new FAIL: gdb.ada/print_pc.exp: compilation dummy.adb
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: ptype 3 * 2.0
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: ptype 3 / 2.0
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: set lang ada
new FAIL: gdb.ada/ptype_array.exp: compilation foo.adb
new FAIL: gdb.ada/ptype_field.exp: compilation foo.adb
new FAIL: gdb.ada/ptype_tagged_param.exp: compilation foo.adb
new FAIL: gdb.ada/py_range.exp: compilation foo.adb
new FAIL: gdb.ada/py_taft.exp: compilation main.adb
new FAIL: gdb.ada/rdv_wait.exp: compilation foo.adb
new FAIL: gdb.ada/rec_comp.exp: compilation bar_o203_012.adb
new FAIL: gdb.ada/rec_return.exp: compilation foo.adb
new FAIL: gdb.ada/ref_param.exp: compilation foo.adb
new FAIL: gdb.ada/ref_tick_size.exp: compilation p.adb
new FAIL: gdb.ada/repeat_dyn.exp: compilation foo_oc22_002.adb
new FAIL: gdb.ada/same_component_name.exp: compilation foo.adb
new FAIL: gdb.ada/same_enum.exp: compilation a.adb
new UNRESOLVED: gdb.ada/scoped_watch.exp: break foo_p708_025.adb:22
new UNRESOLVED: gdb.ada/scoped_watch.exp: break pck.increment
new UNRESOLVED: gdb.ada/scoped_watch.exp: continuing to breakpoint in pck.increment
new UNRESOLVED: gdb.ada/scoped_watch.exp: continuing to breakpoint on call to Do_Nothing
new UNRESOLVED: gdb.ada/scoped_watch.exp: continuing to watchpoint hit
new UNRESOLVED: gdb.ada/scoped_watch.exp: continuing until watchpoint automatic deletion
new UNRESOLVED: gdb.ada/scoped_watch.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/scoped_watch.exp: next to call to Call_Me
new UNRESOLVED: gdb.ada/scoped_watch.exp: watch result
new FAIL: gdb.ada/set_pckd_arr_elt.exp: compilation foo.adb
new FAIL: gdb.ada/set_wstr.exp: compilation a.adb
new FAIL: gdb.ada/small_reg_param.exp: compilation foo.adb
new FAIL: gdb.ada/str_binop_equal.exp: compilation foo_p211_061.adb
new FAIL: gdb.ada/str_uninit.exp: compilation parse.adb
new FAIL: gdb.ada/sym_print_name.exp: compilation foo.adb
new FAIL: gdb.ada/taft_type.exp: compilation p.adb
new FAIL: gdb.ada/tagged.exp: compilation foo.adb
new FAIL: gdb.ada/tagged_access.exp: compilation p.adb
new FAIL: gdb.ada/tagged_not_init.exp: compilation foo.adb
new FAIL: gdb.ada/task_bp.exp: compilation foo.adb
new FAIL: gdb.ada/task_switch_in_core.exp: compilation crash.adb
new FAIL: gdb.ada/tasks.exp: compilation foo.adb
new FAIL: gdb.ada/tick_length_array_enum_idx.exp: compilation foo_n207_004.adb
new FAIL: gdb.ada/type_coercion.exp: compilation assign.adb
new FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: compilation foo.adb
new FAIL: gdb.ada/var_arr_attrs.exp: compilation foo_o115_002.adb
new FAIL: gdb.ada/variant_record_packed_array.exp: compilation foo.adb
new FAIL: gdb.ada/varsize_limit.exp: compilation vsizelim.adb
new FAIL: gdb.ada/vla.exp: compilation vla.adb
new FAIL: gdb.ada/watch_minus_l.exp: compilation foo_ra10_006.adb
new FAIL: gdb.ada/whatis_array_val.exp: compilation foo.adb
new FAIL: gdb.ada/widewide.exp: compilation foo.adb
new FAIL: gdb.ada/win_fu_syms.exp: compilation foo.adb
new UNRESOLVED: gdb.arch/aarch64-fp.exp: could not run to main
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: set tdesc filename $srcdir/gdb.arch/arc-tdesc-cpu.xml
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: set tdesc filename /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.arch/arc-tdesc-cpu/trivial.xml
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: setting HS architecture
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: .text is readable
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: complete set architecture i386
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: complete set gnutarget
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: load core file
new UNRESOLVED: gdb.base/alias.exp: -a print elements 47
new UNRESOLVED: gdb.base/alias.exp: abbrev -a not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set2 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set3 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set4 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set5 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set6 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: alias -a -- -a = set
new UNRESOLVED: gdb.base/alias.exp: alias -a -- set6 = set
new UNRESOLVED: gdb.base/alias.exp: alias -a set2=set
new UNRESOLVED: gdb.base/alias.exp: alias -a set3= set
new UNRESOLVED: gdb.base/alias.exp: alias -a set4 =set
new UNRESOLVED: gdb.base/alias.exp: alias -a set5 = set
new UNRESOLVED: gdb.base/alias.exp: alias assigne
new UNRESOLVED: gdb.base/alias.exp: alias assigne imprime
new UNRESOLVED: gdb.base/alias.exp: alias assigne imprime limite-elements
new UNRESOLVED: gdb.base/alias.exp: alias foo=bar
new UNRESOLVED: gdb.base/alias.exp: alias set pr elms = set p elem
new UNRESOLVED: gdb.base/alias.exp: alias set print max-elements using assigne imprime
new UNRESOLVED: gdb.base/alias.exp: alias set2=set
new UNRESOLVED: gdb.base/alias.exp: alias spe = set p elem
new UNRESOLVED: gdb.base/alias.exp: assigne imprime elements 53
new UNRESOLVED: gdb.base/alias.exp: assigne imprime limite-elements 54
new UNRESOLVED: gdb.base/alias.exp: assigne imprime prefix not defined
new UNRESOLVED: gdb.base/alias.exp: assigne print elements 52
new UNRESOLVED: gdb.base/alias.exp: help set print
new UNRESOLVED: gdb.base/alias.exp: mismatched length
new UNRESOLVED: gdb.base/alias.exp: mismatched prefix
new UNRESOLVED: gdb.base/alias.exp: set imprime elements 55
new UNRESOLVED: gdb.base/alias.exp: set imprime prefix not defined
new UNRESOLVED: gdb.base/alias.exp: set pr elms 51
new UNRESOLVED: gdb.base/alias.exp: set print limite-elements 56
new UNRESOLVED: gdb.base/alias.exp: set print max-elements 57
new UNRESOLVED: gdb.base/alias.exp: set2 print elements 42
new UNRESOLVED: gdb.base/alias.exp: set3 print elements 43
new UNRESOLVED: gdb.base/alias.exp: set4 print elements 44
new UNRESOLVED: gdb.base/alias.exp: set5 print elements 45
new UNRESOLVED: gdb.base/alias.exp: set6 print elements 46
new UNRESOLVED: gdb.base/alias.exp: spe 50
new UNRESOLVED: gdb.base/alias.exp: verify -a
new UNRESOLVED: gdb.base/alias.exp: verify 52
new UNRESOLVED: gdb.base/alias.exp: verify 53
new UNRESOLVED: gdb.base/alias.exp: verify 54
new UNRESOLVED: gdb.base/alias.exp: verify 55
new UNRESOLVED: gdb.base/alias.exp: verify 56
new UNRESOLVED: gdb.base/alias.exp: verify 57
new UNRESOLVED: gdb.base/alias.exp: verify set pr elms
new UNRESOLVED: gdb.base/alias.exp: verify set2
new UNRESOLVED: gdb.base/alias.exp: verify set3
new UNRESOLVED: gdb.base/alias.exp: verify set4
new UNRESOLVED: gdb.base/alias.exp: verify set5
new UNRESOLVED: gdb.base/alias.exp: verify set6
new UNRESOLVED: gdb.base/alias.exp: verify spe
new FAIL: gdb.base/all-architectures-0.exp: all passed
new FAIL: gdb.base/all-architectures-0.exp: at least one architecture
new FAIL: gdb.base/all-architectures-0.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-0.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-0.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-0.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-1.exp: all passed
new FAIL: gdb.base/all-architectures-1.exp: at least one architecture
new FAIL: gdb.base/all-architectures-1.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-1.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-1.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-1.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-2.exp: all passed
new FAIL: gdb.base/all-architectures-2.exp: at least one architecture
new FAIL: gdb.base/all-architectures-2.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-2.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-2.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-2.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-3.exp: all passed
new FAIL: gdb.base/all-architectures-3.exp: at least one architecture
new FAIL: gdb.base/all-architectures-3.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-3.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-3.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-3.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-4.exp: all passed
new FAIL: gdb.base/all-architectures-4.exp: at least one architecture
new FAIL: gdb.base/all-architectures-4.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-4.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-4.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-4.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-5.exp: all passed
new FAIL: gdb.base/all-architectures-5.exp: at least one architecture
new FAIL: gdb.base/all-architectures-5.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-5.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-5.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-5.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-6.exp: all passed
new FAIL: gdb.base/all-architectures-6.exp: at least one architecture
new FAIL: gdb.base/all-architectures-6.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-6.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-7.exp: all passed
new FAIL: gdb.base/all-architectures-7.exp: at least one architecture
new FAIL: gdb.base/all-architectures-7.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-7.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-7.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-7.exp: set max-completions unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: break main
new UNRESOLVED: gdb.base/argv0-symlink.exp: p argc
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print elements 200
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print elements unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print repeats 200
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print repeats unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: show print elements
new UNRESOLVED: gdb.base/argv0-symlink.exp: show print repeats
new UNRESOLVED: gdb.base/bad-file.exp: directory
new UNRESOLVED: gdb.base/bad-file.exp: neither file nor directory
new UNRESOLVED: gdb.base/bad-file.exp: non-existent file
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "info source": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "set not-a-thing 4" -x good-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "set not-a-thing 4": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -jslkflsdjlkfjlksdjf: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x bad-commands -ex "info source": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x bad-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands -ex "set not-a-thing 4": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands -x bad-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch: spawn
new UNRESOLVED: gdb.base/bitops.exp: print value of !0
new UNRESOLVED: gdb.base/bitops.exp: print value of !1
new UNRESOLVED: gdb.base/bitops.exp: print value of !10
new UNRESOLVED: gdb.base/bitops.exp: print value of !100
new UNRESOLVED: gdb.base/bitops.exp: print value of !1000
new UNRESOLVED: gdb.base/bitops.exp: print value of !2
new UNRESOLVED: gdb.base/bitops.exp: print value of
new UNRESOLVED: gdb.base/bitops.exp: print value of -!0
new UNRESOLVED: gdb.base/bitops.exp: print value of -1 < 0 > 1
new UNRESOLVED: gdb.base/bitops.exp: print value of -3>4
new UNRESOLVED: gdb.base/bitops.exp: print value of 0 == 8 > 128 >> 1 + 2 * 2
new UNRESOLVED: gdb.base/bitops.exp: print value of 0 || 1 && 0 | 0 ^ 0 == 8
new UNRESOLVED: gdb.base/bitops.exp: print value of 0 || 1 && 0 | 0 ^ 0 == 8 > 128 >>1 +2 *2
new UNRESOLVED: gdb.base/bitops.exp: print value of 0.0 || 0
new UNRESOLVED: gdb.base/bitops.exp: print value of 0.0 || 1.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 1.0 || 0
new UNRESOLVED: gdb.base/bitops.exp: print value of 10 & 5
new UNRESOLVED: gdb.base/bitops.exp: print value of 10 ^ 5
new UNRESOLVED: gdb.base/bitops.exp: print value of 10 | 5
new UNRESOLVED: gdb.base/bitops.exp: print value of 15 ^ 10 ^ 5 ^ 7
new UNRESOLVED: gdb.base/bitops.exp: print value of 2 > -3
new UNRESOLVED: gdb.base/bitops.exp: print value of 3 * 2 / 4.0 * 2.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3!=3.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3!=5.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3.5 < -4.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3.5 < 4.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3==3.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3==4.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3>=2.5
new UNRESOLVED: gdb.base/bitops.exp: print value of 3>=4.5
new UNRESOLVED: gdb.base/bitops.exp: print value of 8 << 2 >> 4
new UNRESOLVED: gdb.base/bitops.exp: print value of ~-!0
new UNRESOLVED: gdb.base/command-line-input.exp: print 1\\n + 2
new UNRESOLVED: gdb.base/command-line-input.exp: print 1\\n2
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: cmd complete ""
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: set max-completions 1
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: show editing
new UNRESOLVED: gdb.base/complete-empty.exp: show editing
new UNRESOLVED: gdb.base/default.exp:
new UNRESOLVED: gdb.base/default.exp: add-symbol-file
new UNRESOLVED: gdb.base/default.exp: append
new UNRESOLVED: gdb.base/default.exp: append binary
new UNRESOLVED: gdb.base/default.exp: append binary memory
new UNRESOLVED: gdb.base/default.exp: append binary value
new UNRESOLVED: gdb.base/default.exp: append memory
new UNRESOLVED: gdb.base/default.exp: append value
new UNRESOLVED: gdb.base/default.exp: call
new UNRESOLVED: gdb.base/default.exp: catch
new UNRESOLVED: gdb.base/default.exp: cd
new UNRESOLVED: gdb.base/default.exp: check if python 3
new UNRESOLVED: gdb.base/default.exp: clear
new UNRESOLVED: gdb.base/default.exp: commands
new UNRESOLVED: gdb.base/default.exp: condition
new UNRESOLVED: gdb.base/default.exp: continue
new UNRESOLVED: gdb.base/default.exp: continue "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: core-file
new UNRESOLVED: gdb.base/default.exp: define
new UNRESOLVED: gdb.base/default.exp: delete
new UNRESOLVED: gdb.base/default.exp: delete "d" abbreviation
new UNRESOLVED: gdb.base/default.exp: delete breakpoints
new UNRESOLVED: gdb.base/default.exp: delete display prompt
new UNRESOLVED: gdb.base/default.exp: detach
new UNRESOLVED: gdb.base/default.exp: directory prompt
new UNRESOLVED: gdb.base/default.exp: disable
new UNRESOLVED: gdb.base/default.exp: disable "dis" abbreviation
new UNRESOLVED: gdb.base/default.exp: disable "disa" abbreviation
new UNRESOLVED: gdb.base/default.exp: disable breakpoints
new UNRESOLVED: gdb.base/default.exp: disable display
new UNRESOLVED: gdb.base/default.exp: disassemble
new UNRESOLVED: gdb.base/default.exp: display
new UNRESOLVED: gdb.base/default.exp: do
new UNRESOLVED: gdb.base/default.exp: document
new UNRESOLVED: gdb.base/default.exp: down
new UNRESOLVED: gdb.base/default.exp: down-silently
new UNRESOLVED: gdb.base/default.exp: dump
new UNRESOLVED: gdb.base/default.exp: dump binary
new UNRESOLVED: gdb.base/default.exp: dump binary memory
new UNRESOLVED: gdb.base/default.exp: dump binary value
new UNRESOLVED: gdb.base/default.exp: dump ihex
new UNRESOLVED: gdb.base/default.exp: dump ihex memory
new UNRESOLVED: gdb.base/default.exp: dump ihex value
new UNRESOLVED: gdb.base/default.exp: dump memory
new UNRESOLVED: gdb.base/default.exp: dump srec
new UNRESOLVED: gdb.base/default.exp: dump srec memory
new UNRESOLVED: gdb.base/default.exp: dump srec value
new UNRESOLVED: gdb.base/default.exp: dump tekhex
new UNRESOLVED: gdb.base/default.exp: dump tekhex memory
new UNRESOLVED: gdb.base/default.exp: dump tekhex value
new UNRESOLVED: gdb.base/default.exp: dump value
new UNRESOLVED: gdb.base/default.exp: echo
new UNRESOLVED: gdb.base/default.exp: enable
new UNRESOLVED: gdb.base/default.exp: enable breakpoints
new UNRESOLVED: gdb.base/default.exp: enable breakpoints delete
new UNRESOLVED: gdb.base/default.exp: enable breakpoints once
new UNRESOLVED: gdb.base/default.exp: enable delete
new UNRESOLVED: gdb.base/default.exp: enable display
new UNRESOLVED: gdb.base/default.exp: enable once
new UNRESOLVED: gdb.base/default.exp: fg
new UNRESOLVED: gdb.base/default.exp: finish
new UNRESOLVED: gdb.base/default.exp: forward-search
new UNRESOLVED: gdb.base/default.exp: frame
new UNRESOLVED: gdb.base/default.exp: frame "f" abbreviation
new UNRESOLVED: gdb.base/default.exp: gcore
new UNRESOLVED: gdb.base/default.exp: generate-core-file
new UNRESOLVED: gdb.base/default.exp: handle
new UNRESOLVED: gdb.base/default.exp: help
new UNRESOLVED: gdb.base/default.exp: help "h" abbreviation
new UNRESOLVED: gdb.base/default.exp: ignore
new UNRESOLVED: gdb.base/default.exp: info
new UNRESOLVED: gdb.base/default.exp: info "i" abbreviation
new UNRESOLVED: gdb.base/default.exp: info address
new UNRESOLVED: gdb.base/default.exp: info all-registers
new UNRESOLVED: gdb.base/default.exp: info args
new UNRESOLVED: gdb.base/default.exp: info bogus-gdb-command
new UNRESOLVED: gdb.base/default.exp: info breakpoints
new UNRESOLVED: gdb.base/default.exp: info copying
new UNRESOLVED: gdb.base/default.exp: info display
new UNRESOLVED: gdb.base/default.exp: info files
new UNRESOLVED: gdb.base/default.exp: info float
new UNRESOLVED: gdb.base/default.exp: info frame
new UNRESOLVED: gdb.base/default.exp: info frame "f" abbreviation
new UNRESOLVED: gdb.base/default.exp: info functions
new UNRESOLVED: gdb.base/default.exp: info locals
new UNRESOLVED: gdb.base/default.exp: info program
new UNRESOLVED: gdb.base/default.exp: info registers
new UNRESOLVED: gdb.base/default.exp: info set
new UNRESOLVED: gdb.base/default.exp: info source
new UNRESOLVED: gdb.base/default.exp: info sources
new UNRESOLVED: gdb.base/default.exp: info stack
new UNRESOLVED: gdb.base/default.exp: info stack "s" abbreviation
new UNRESOLVED: gdb.base/default.exp: info symbol
new UNRESOLVED: gdb.base/default.exp: info target
new UNRESOLVED: gdb.base/default.exp: info terminal
new UNRESOLVED: gdb.base/default.exp: info threads
new UNRESOLVED: gdb.base/default.exp: info types
new UNRESOLVED: gdb.base/default.exp: info variables
new UNRESOLVED: gdb.base/default.exp: info vector
new UNRESOLVED: gdb.base/default.exp: info warranty
new UNRESOLVED: gdb.base/default.exp: info watchpoints
new UNRESOLVED: gdb.base/default.exp: inspect
new UNRESOLVED: gdb.base/default.exp: jump
new UNRESOLVED: gdb.base/default.exp: kill
new UNRESOLVED: gdb.base/default.exp: list
new UNRESOLVED: gdb.base/default.exp: list "l" abbreviation
new UNRESOLVED: gdb.base/default.exp: load
new UNRESOLVED: gdb.base/default.exp: next
new UNRESOLVED: gdb.base/default.exp: next "n" abbreviation
new UNRESOLVED: gdb.base/default.exp: nexti
new UNRESOLVED: gdb.base/default.exp: nexti "ni" abbreviation
new UNRESOLVED: gdb.base/default.exp: output
new UNRESOLVED: gdb.base/default.exp: overlay
new UNRESOLVED: gdb.base/default.exp: overlay auto
new UNRESOLVED: gdb.base/default.exp: overlay list
new UNRESOLVED: gdb.base/default.exp: overlay manual #1
new UNRESOLVED: gdb.base/default.exp: overlay manual #2
new UNRESOLVED: gdb.base/default.exp: overlay map #1
new UNRESOLVED: gdb.base/default.exp: overlay map #2
new UNRESOLVED: gdb.base/default.exp: overlay off
new UNRESOLVED: gdb.base/default.exp: overlay on
new UNRESOLVED: gdb.base/default.exp: overlay unmap #1
new UNRESOLVED: gdb.base/default.exp: overlay unmap #2
new UNRESOLVED: gdb.base/default.exp: print
new UNRESOLVED: gdb.base/default.exp: print "p" abbreviation
new UNRESOLVED: gdb.base/default.exp: printf
new UNRESOLVED: gdb.base/default.exp: ptype
new UNRESOLVED: gdb.base/default.exp: pwd
new UNRESOLVED: gdb.base/default.exp: rbreak
new UNRESOLVED: gdb.base/default.exp: restore
new UNRESOLVED: gdb.base/default.exp: return
new UNRESOLVED: gdb.base/default.exp: reverse-search
new UNRESOLVED: gdb.base/default.exp: search
new UNRESOLVED: gdb.base/default.exp: section
new UNRESOLVED: gdb.base/default.exp: set
new UNRESOLVED: gdb.base/default.exp: set annotate
new UNRESOLVED: gdb.base/default.exp: set args
new UNRESOLVED: gdb.base/default.exp: set check "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check "ch" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check "check" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check range
new UNRESOLVED: gdb.base/default.exp: set check type
new UNRESOLVED: gdb.base/default.exp: set complaints
new UNRESOLVED: gdb.base/default.exp: set confirm
new UNRESOLVED: gdb.base/default.exp: set environment
new UNRESOLVED: gdb.base/default.exp: set height
new UNRESOLVED: gdb.base/default.exp: set history
new UNRESOLVED: gdb.base/default.exp: set history expansion
new UNRESOLVED: gdb.base/default.exp: set history filename
new UNRESOLVED: gdb.base/default.exp: set history save
new UNRESOLVED: gdb.base/default.exp: set history save off
new UNRESOLVED: gdb.base/default.exp: set history size
new UNRESOLVED: gdb.base/default.exp: set language
new UNRESOLVED: gdb.base/default.exp: set listsize
new UNRESOLVED: gdb.base/default.exp: set print
new UNRESOLVED: gdb.base/default.exp: set print "p" abbreviation
new UNRESOLVED: gdb.base/default.exp: set print "pr" abbreviation
new UNRESOLVED: gdb.base/default.exp: set print address
new UNRESOLVED: gdb.base/default.exp: set print array
new UNRESOLVED: gdb.base/default.exp: set print asm-demangle
new UNRESOLVED: gdb.base/default.exp: set print demangle
new UNRESOLVED: gdb.base/default.exp: set print elements
new UNRESOLVED: gdb.base/default.exp: set print object
new UNRESOLVED: gdb.base/default.exp: set print pretty
new UNRESOLVED: gdb.base/default.exp: set print sevenbit-strings
new UNRESOLVED: gdb.base/default.exp: set print union
new UNRESOLVED: gdb.base/default.exp: set print vtbl
new UNRESOLVED: gdb.base/default.exp: set radix
new UNRESOLVED: gdb.base/default.exp: set the history filename
new UNRESOLVED: gdb.base/default.exp: set variable
new UNRESOLVED: gdb.base/default.exp: set verbose
new UNRESOLVED: gdb.base/default.exp: set width
new UNRESOLVED: gdb.base/default.exp: set write
new UNRESOLVED: gdb.base/default.exp: shell echo Hi dad!
new UNRESOLVED: gdb.base/default.exp: show
new UNRESOLVED: gdb.base/default.exp: show annotate
new UNRESOLVED: gdb.base/default.exp: show args
new UNRESOLVED: gdb.base/default.exp: show check "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check "ch" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check "check" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check range
new UNRESOLVED: gdb.base/default.exp: show check type
new UNRESOLVED: gdb.base/default.exp: show commands
new UNRESOLVED: gdb.base/default.exp: show complaints
new UNRESOLVED: gdb.base/default.exp: show confirm
new UNRESOLVED: gdb.base/default.exp: show convenience
new UNRESOLVED: gdb.base/default.exp: show directories
new UNRESOLVED: gdb.base/default.exp: show editing
new UNRESOLVED: gdb.base/default.exp: show height
new UNRESOLVED: gdb.base/default.exp: show history
new UNRESOLVED: gdb.base/default.exp: show history expansion
new UNRESOLVED: gdb.base/default.exp: show history filename
new UNRESOLVED: gdb.base/default.exp: show history save
new UNRESOLVED: gdb.base/default.exp: show history size
new UNRESOLVED: gdb.base/default.exp: show language
new UNRESOLVED: gdb.base/default.exp: show listsize
new UNRESOLVED: gdb.base/default.exp: show p
new UNRESOLVED: gdb.base/default.exp: show paths
new UNRESOLVED: gdb.base/default.exp: show pr
new UNRESOLVED: gdb.base/default.exp: show print
new UNRESOLVED: gdb.base/default.exp: show print address
new UNRESOLVED: gdb.base/default.exp: show print array
new UNRESOLVED: gdb.base/default.exp: show print asm-demangle
new UNRESOLVED: gdb.base/default.exp: show print demangle
new UNRESOLVED: gdb.base/default.exp: show print elements
new UNRESOLVED: gdb.base/default.exp: show print object
new UNRESOLVED: gdb.base/default.exp: show print pretty
new UNRESOLVED: gdb.base/default.exp: show print sevenbit-strings
new UNRESOLVED: gdb.base/default.exp: show print union
new UNRESOLVED: gdb.base/default.exp: show print vtbl
new UNRESOLVED: gdb.base/default.exp: show prompt
new UNRESOLVED: gdb.base/default.exp: show radix
new UNRESOLVED: gdb.base/default.exp: show user
new UNRESOLVED: gdb.base/default.exp: show values
new UNRESOLVED: gdb.base/default.exp: show verbose
new UNRESOLVED: gdb.base/default.exp: show version
new UNRESOLVED: gdb.base/default.exp: show width
new UNRESOLVED: gdb.base/default.exp: show write
new UNRESOLVED: gdb.base/default.exp: signal
new UNRESOLVED: gdb.base/default.exp: source
new UNRESOLVED: gdb.base/default.exp: step "s" abbreviation #1
new UNRESOLVED: gdb.base/default.exp: step "s" abbreviation #2
new UNRESOLVED: gdb.base/default.exp: step #1
new UNRESOLVED: gdb.base/default.exp: step #2
new UNRESOLVED: gdb.base/default.exp: stepi
new UNRESOLVED: gdb.base/default.exp: stepi "si" abbreviation
new UNRESOLVED: gdb.base/default.exp: symbol-file
new UNRESOLVED: gdb.base/default.exp: target
new UNRESOLVED: gdb.base/default.exp: target native
new UNRESOLVED: gdb.base/default.exp: tbreak
new UNRESOLVED: gdb.base/default.exp: thread
new UNRESOLVED: gdb.base/default.exp: thread apply
new UNRESOLVED: gdb.base/default.exp: thread find
new UNRESOLVED: gdb.base/default.exp: thread name
new UNRESOLVED: gdb.base/default.exp: undisplay prompt
new UNRESOLVED: gdb.base/default.exp: unset
new UNRESOLVED: gdb.base/default.exp: unset environment prompt
new UNRESOLVED: gdb.base/default.exp: until
new UNRESOLVED: gdb.base/default.exp: until "u" abbreviation
new UNRESOLVED: gdb.base/default.exp: up-silently
new UNRESOLVED: gdb.base/default.exp: verify python support
new UNRESOLVED: gdb.base/default.exp: watch
new UNRESOLVED: gdb.base/default.exp: whatis
new UNRESOLVED: gdb.base/default.exp: where
new UNRESOLVED: gdb.base/default.exp: x
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567890123456789012345678901234dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567890123456dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567890123456.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567890123456789012345678901234.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567890123456789012345678901234dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567890123456dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E384dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E6144dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E96df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2147483648ll
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2147483648ull
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2ll
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 4294967296ull
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd < 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd < 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df + 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df + 1.2f
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df < 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df < 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df > 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl < 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl < 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl > 2
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd * 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd + 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd - 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd / 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df * 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df + 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df - 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df / 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl * 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl + 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl - 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl / 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567890123456.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567890123456789012345678901234.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 + 1.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 > 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 > 3.1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.1dd + 2.7df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.1df + 2.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.3dd + 2.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.3dl + 2.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.6df + 2.7dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.6dl + 2.7df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 3 + 2.1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 1.2df + 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2 + 1.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dd + 2.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dd + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dl + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 3 + 2.1dl
new UNRESOLVED: gdb.base/echo.exp: echo test
new UNRESOLVED: gdb.base/empty_exe.exp: file ''
new UNRESOLVED: gdb.base/empty_exe.exp: print 1
new UNRESOLVED: gdb.base/endian.exp: auto target endianness
new UNRESOLVED: gdb.base/endian.exp: auto target endianness big
new UNRESOLVED: gdb.base/endian.exp: auto target endianness little
new UNRESOLVED: gdb.base/endian.exp: default target endianness
new UNRESOLVED: gdb.base/endian.exp: get target endianness
new FAIL: gdb.base/endian.exp: override auto target endianness big
new FAIL: gdb.base/endian.exp: override auto target endianness little
new UNRESOLVED: gdb.base/endian.exp: override target endianness big
new FAIL: gdb.base/endian.exp: override target endianness little
new UNRESOLVED: gdb.base/endian.exp: previously big default executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously big default no executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously little default executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously little default no executable endianness
new UNRESOLVED: gdb.base/endian.exp: set target endianness
new UNRESOLVED: gdb.base/endian.exp: set target endianness big
new UNRESOLVED: gdb.base/endian.exp: set target endianness little
new UNRESOLVED: gdb.base/environ.exp: all environment variables have been unset
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable previously undefined
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable using = syntax
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable with trailing equals
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable with trailing whitespace
new UNRESOLVED: gdb.base/environ.exp: confirm unset environment variable worked
new UNRESOLVED: gdb.base/environ.exp: set environment variable
new UNRESOLVED: gdb.base/environ.exp: set environment variable previously undefined
new UNRESOLVED: gdb.base/environ.exp: set environment variable to null value
new UNRESOLVED: gdb.base/environ.exp: set environment variable using = syntax
new UNRESOLVED: gdb.base/environ.exp: set environment variable with trailing equals
new UNRESOLVED: gdb.base/environ.exp: set environment variable with trailing whitespace
new UNRESOLVED: gdb.base/environ.exp: set environment without arguments
new UNRESOLVED: gdb.base/environ.exp: set environment without variable name
new UNRESOLVED: gdb.base/environ.exp: set path works properly
new UNRESOLVED: gdb.base/environ.exp: show environment works
new UNRESOLVED: gdb.base/environ.exp: show non-existent environment variable
new UNRESOLVED: gdb.base/environ.exp: show null environment variable
new UNRESOLVED: gdb.base/environ.exp: show paths works properly
new UNRESOLVED: gdb.base/environ.exp: unset all environment variables
new UNRESOLVED: gdb.base/environ.exp: unset environment variable
new UNRESOLVED: gdb.base/eval.exp: first eval.
new UNRESOLVED: gdb.base/eval.exp: initialize $a.
new UNRESOLVED: gdb.base/eval.exp: second eval.
new UNRESOLVED: gdb.base/finish.exp: couldn't run to main
new UNRESOLVED: gdb.base/gdb1056.exp: print 1/0
new UNRESOLVED: gdb.base/gdb1056.exp: test unsigned division by zero
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize= 20 : show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize= 20 : show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5ab: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5ab: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=0: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=0: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=10zab: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=10zab: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=20: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=20: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=50: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=50: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=99999999999999999999999999999999999: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=99999999999999999999999999999999999: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=not_an_integer: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=not_an_integer: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=1000: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=1000: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=foo: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=foo: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/zero: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/zero: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: appending: server show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: creating: server show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: print 1
new UNRESOLVED: gdb.base/help.exp: apropos \
new UNRESOLVED: gdb.base/help.exp: apropos apropos
new UNRESOLVED: gdb.base/help.exp: apropos handle signal
new UNRESOLVED: gdb.base/help.exp: disable pagination
new UNRESOLVED: gdb.base/help.exp: help aliases
new UNRESOLVED: gdb.base/help.exp: help backtrace
new UNRESOLVED: gdb.base/help.exp: help backtrace "bt" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "b" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "br" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "bre" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "brea" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "break" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoints
new UNRESOLVED: gdb.base/help.exp: help commands
new UNRESOLVED: gdb.base/help.exp: help data
new UNRESOLVED: gdb.base/help.exp: help delete
new UNRESOLVED: gdb.base/help.exp: help delete "d" abbreviation
new UNRESOLVED: gdb.base/help.exp: help files
new UNRESOLVED: gdb.base/help.exp: help gotcha
new UNRESOLVED: gdb.base/help.exp: help help
new UNRESOLVED: gdb.base/help.exp: help help "h" abbreviation
new UNRESOLVED: gdb.base/help.exp: help info bogus-gdb-command
new UNRESOLVED: gdb.base/help.exp: help internals
new UNRESOLVED: gdb.base/help.exp: help obscure
new UNRESOLVED: gdb.base/help.exp: help running
new UNRESOLVED: gdb.base/help.exp: help show commands
new UNRESOLVED: gdb.base/help.exp: help show confirm
new UNRESOLVED: gdb.base/help.exp: help show copying
new UNRESOLVED: gdb.base/help.exp: help show warranty
new UNRESOLVED: gdb.base/help.exp: help stack
new UNRESOLVED: gdb.base/help.exp: help status
new UNRESOLVED: gdb.base/help.exp: help support
new UNRESOLVED: gdb.base/help.exp: help tracepoints
new UNRESOLVED: gdb.base/help.exp: help user-defined
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: set history remove-duplicates 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: set history remove-duplicates 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: set history remove-duplicates 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 3
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 4
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 3
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 4
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: set history remove-duplicates unlimited
new UNRESOLVED: gdb.base/history-duplicates.exp: show editing
new UNRESOLVED: gdb.base/history-duplicates.exp: show history remove-duplicates
new UNRESOLVED: gdb.base/ifelse.exp: call original define
new UNRESOLVED: gdb.base/ifelse.exp: call replacement define
new UNRESOLVED: gdb.base/ifelse.exp: create define with empty else
new UNRESOLVED: gdb.base/ifelse.exp: if 0 .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 0 with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 1 .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 1 with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #1
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #2
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #3
new UNRESOLVED: gdb.base/ifelse.exp: replace define with if .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: set confirm off
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tc-td: 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-tc-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ts: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tf: 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-tf-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-ts: 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-ti-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tl-td: 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-tl-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-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-td: 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-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tld: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tll-tf: 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-td: 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-ts-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ts: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tc-td: 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-tc-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-ts: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tf: 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-tf-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-ts: 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-ti-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tl-td: 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-tl-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-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-td: 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-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tld: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tll-tf: 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-td: 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-ts-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ts: failed to compile
new UNRESOLVED: gdb.base/infnan.exp: print a
new FAIL: gdb.base/info-os.exp: cannot compile test program
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode on
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode on
new UNRESOLVED: gdb.base/interact.exp: show interactive-mode
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode on
new UNRESOLVED: gdb.base/multi-line-starts-subshell.exp: gdb input still works
new UNRESOLVED: gdb.base/multi-line-starts-subshell.exp: spawn subshell from multi-line
new UNRESOLVED: gdb.base/osabi.exp: set debug arch 1
new UNRESOLVED: gdb.base/osabi.exp: set osabi none
new UNRESOLVED: gdb.base/page.exp: paged count
new UNRESOLVED: gdb.base/page.exp: paged count for interrupt
new UNRESOLVED: gdb.base/page.exp: paged count remainder
new UNRESOLVED: gdb.base/page.exp: paged help
new UNRESOLVED: gdb.base/page.exp: pagination is off
new UNRESOLVED: gdb.base/page.exp: pagination is on
new UNRESOLVED: gdb.base/page.exp: q
new UNRESOLVED: gdb.base/page.exp: quit while paging
new UNRESOLVED: gdb.base/page.exp: set editing off
new UNRESOLVED: gdb.base/page.exp: set height -1
new UNRESOLVED: gdb.base/page.exp: set height 10
new UNRESOLVED: gdb.base/page.exp: set height 5
new UNRESOLVED: gdb.base/page.exp: set pagination off
new UNRESOLVED: gdb.base/page.exp: set pagination on
new UNRESOLVED: gdb.base/page.exp: set width -1
new UNRESOLVED: gdb.base/page.exp: set width 30
new UNRESOLVED: gdb.base/page.exp: size=0: set height 0
new UNRESOLVED: gdb.base/page.exp: size=0: set height 200
new UNRESOLVED: gdb.base/page.exp: size=0: set width 0
new UNRESOLVED: gdb.base/page.exp: size=0: set width 200
new UNRESOLVED: gdb.base/page.exp: size=0: show height
new UNRESOLVED: gdb.base/page.exp: size=0: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=0: show width
new UNRESOLVED: gdb.base/page.exp: size=0: show width unlimited
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set height 0x80000000
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set height 200
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set width 0x80000000
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set width 200
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show height
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show width
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show width unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set height 200
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set height unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set width 200
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set width unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show height
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show width
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show width unlimited
new UNRESOLVED: gdb.base/page.exp: unpaged help
new UNRESOLVED: gdb.base/quit.exp: quit with expression
new UNRESOLVED: gdb.base/quit.exp: quit with syntax error
new UNRESOLVED: gdb.base/radix.exp: Output radix unchanged after rejecting 0
new UNRESOLVED: gdb.base/radix.exp: Reject input-radix 0
new UNRESOLVED: gdb.base/radix.exp: Reject input-radix 1
new UNRESOLVED: gdb.base/radix.exp: Reject output-radix 0
new UNRESOLVED: gdb.base/radix.exp: Reject output-radix 1
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 10
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 16
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 2
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 3
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 8
new UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 10
new UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 16
new UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 8
new UNRESOLVED: gdb.base/radix.exp: input radix unchanged after rejecting 0
new UNRESOLVED: gdb.base/radix.exp: input radix unchanged after rejecting 1
new UNRESOLVED: gdb.base/radix.exp: output radix unchanged after rejecting 1
new UNRESOLVED: gdb.base/radix.exp: output radix unchanged after rejection through set radix command
new UNRESOLVED: gdb.base/radix.exp: print
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -100; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -256; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -4; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -64; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -9; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -101; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -10; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -257; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -5; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -65; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -10; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -16; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -2; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -3; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -8; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -11; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -17; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -3; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -4; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -9; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -12; expect -12; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -20; expect -16; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -2; expect Invalid number "2"\.; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -9; expect Invalid number "9".; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 010; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 17; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect f; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 100; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 100; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 144; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 256; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 4; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 64; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 64; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 9; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 10101; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 21; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 4161; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 65793; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 91; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 101; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 10; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 257; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 5; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 65; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 10; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 10; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 12; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 16; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 2; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 3; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 8; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10; expect a; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 11; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 17; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 3; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 4; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 9; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 14; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 24; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20; expect 16; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20; expect 6; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 2; expect 2; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 30; expect Invalid number "30"\.; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 3; expect Invalid number "3"\.; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 4; expect Invalid number "4"\.; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 8; expect Invalid number "8".; input radix 8
new UNRESOLVED: gdb.base/radix.exp: reset radices
new UNRESOLVED: gdb.base/radix.exp: set input-radix 10
new UNRESOLVED: gdb.base/radix.exp: set input-radix 16
new UNRESOLVED: gdb.base/radix.exp: set input-radix 2
new UNRESOLVED: gdb.base/radix.exp: set input-radix 3
new UNRESOLVED: gdb.base/radix.exp: set input-radix 8
new UNRESOLVED: gdb.base/radix.exp: set output-radix 10
new UNRESOLVED: gdb.base/radix.exp: set output-radix 16
new UNRESOLVED: gdb.base/radix.exp: set output-radix 8
new UNRESOLVED: gdb.base/radix.exp: set radix 7 rejected
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 10
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 16
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 2
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 3
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 8
new UNRESOLVED: gdb.base/radix.exp: show radix, output radix 10
new UNRESOLVED: gdb.base/radix.exp: show radix, output radix 16
new UNRESOLVED: gdb.base/radix.exp: show radix, output radix 8
new UNRESOLVED: gdb.base/readline.exp: Simple operate-and-get-next - send p 1
new UNRESOLVED: gdb.base/readline.exp: arrow keys with secondary prompt
new UNRESOLVED: gdb.base/readline.exp: operate-and-get-next with secondary prompt - send if 1 > 0
new UNRESOLVED: gdb.base/readline.exp: print 42
new UNRESOLVED: gdb.base/readline.exp: show editing
new UNRESOLVED: gdb.base/remotetimeout.exp: correct remotetimeout printed
new UNRESOLVED: gdb.base/shell.exp: ! echo foo
new UNRESOLVED: gdb.base/shell.exp: ! exit 0
new UNRESOLVED: gdb.base/shell.exp: ! exit 1
new UNRESOLVED: gdb.base/shell.exp: ! kill -2 $$
new UNRESOLVED: gdb.base/shell.exp: !echo foo
new UNRESOLVED: gdb.base/shell.exp: -d spaces value missing
new UNRESOLVED: gdb.base/shell.exp: -d value missing
new UNRESOLVED: gdb.base/shell.exp: DELIM delimiter missing
new UNRESOLVED: gdb.base/shell.exp: SHELL_COMMAND missing
new UNRESOLVED: gdb.base/shell.exp: SHELL_COMMAND missing with delimiter
new UNRESOLVED: gdb.base/shell.exp: all missing
new UNRESOLVED: gdb.base/shell.exp: alternate 1char delim
new UNRESOLVED: gdb.base/shell.exp: alternate 1char delim, no space
new UNRESOLVED: gdb.base/shell.exp: alternate 3char delim
new UNRESOLVED: gdb.base/shell.exp: alternate 3char delim, no space
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe print 1 | "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| print 1 | "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|print 1 | "
new UNRESOLVED: gdb.base/shell.exp: define foo
new UNRESOLVED: gdb.base/shell.exp: delimiter missing due to missing space
new UNRESOLVED: gdb.base/shell.exp: double pipe
new UNRESOLVED: gdb.base/shell.exp: double pipe, pipe char
new UNRESOLVED: gdb.base/shell.exp: echo coucou
new UNRESOLVED: gdb.base/shell.exp: enter commands
new UNRESOLVED: gdb.base/shell.exp: no space around pipe char
new UNRESOLVED: gdb.base/shell.exp: pipe fail exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe fail exitsignal
new UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitsignal
new UNRESOLVED: gdb.base/shell.exp: pipe success exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe success exitsignal
new UNRESOLVED: gdb.base/shell.exp: repeat previous command
new UNRESOLVED: gdb.base/shell.exp: set max-completions 0
new UNRESOLVED: gdb.base/shell.exp: set max-completions 2
new UNRESOLVED: gdb.base/shell.exp: shell echo foo
new UNRESOLVED: gdb.base/shell.exp: shell fail exitcode
new UNRESOLVED: gdb.base/shell.exp: shell fail exitsignal
new UNRESOLVED: gdb.base/shell.exp: shell interrupt exitcode
new UNRESOLVED: gdb.base/shell.exp: shell interrupt exitsignal
new UNRESOLVED: gdb.base/shell.exp: shell success exitcode
new UNRESOLVED: gdb.base/shell.exp: shell success exitsignal
new UNRESOLVED: gdb.base/shell.exp: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
new UNRESOLVED: gdb.base/shell.exp: simple pipe
new UNRESOLVED: gdb.base/shell.exp: simple pipe with arg
new UNRESOLVED: gdb.base/shell.exp: | delimiter missing
new UNRESOLVED: gdb.base/shell.exp: |p 123| exit 0
new UNRESOLVED: gdb.base/shell.exp: |p 123| exit 1
new UNRESOLVED: gdb.base/shell.exp: |p 123| kill -2 $$
new UNRESOLVED: gdb.base/source-dir.exp: directory /nOtExStInG/a /nOtExStInG/b /nOtExStInG/c
new UNRESOLVED: gdb.base/source-dir.exp: directory /nOtExStInG/b /nOtExStInG/d /nOtExStInG/c
new UNRESOLVED: gdb.base/source.exp: script contains error
new UNRESOLVED: gdb.base/source.exp: set search directories
new UNRESOLVED: gdb.base/source.exp: source -s
new UNRESOLVED: gdb.base/source.exp: source -s -v
new UNRESOLVED: gdb.base/source.exp: source -v
new UNRESOLVED: gdb.base/source.exp: source -v -s
new UNRESOLVED: gdb.base/source.exp: source after -v
new UNRESOLVED: gdb.base/source.exp: source for-sure-nonexistant-file
new UNRESOLVED: gdb.base/source.exp: source source-nofile.gdb
new UNRESOLVED: gdb.base/step-over-syscall.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/step-over-syscall.exp: run to main
new UNRESOLVED: gdb.base/subst.exp: add depuis -> vers substitution rule
new UNRESOLVED: gdb.base/subst.exp: add from -> to substitution rule
new UNRESOLVED: gdb.base/subst.exp: add from1 -> to1 substitution rule
new UNRESOLVED: gdb.base/subst.exp: add source -> destination substitution rule
new UNRESOLVED: gdb.base/subst.exp: add substitution rule to empty string
new UNRESOLVED: gdb.base/subst.exp: deactivate GDB's confirmation interface
new UNRESOLVED: gdb.base/subst.exp: remove all remaining substitution rules
new UNRESOLVED: gdb.base/subst.exp: remove default substitution rules
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, first argument is empty string
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, too few arguments
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, too many arguments
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after all remaining rules removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after depuis rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after empty rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after from rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path depuis, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, after unsetting it
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from/path, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from_a_bad_path, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path garbage, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: show substitute-path, too many arguments
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path depuis
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path empty
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from after the rule was removed
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path, too many arguments
new UNRESOLVED: gdb.base/trace-commands.exp: define user command
new UNRESOLVED: gdb.base/trace-commands.exp: depth resets on error part 1
new UNRESOLVED: gdb.base/trace-commands.exp: depth resets on error part 2
new UNRESOLVED: gdb.base/trace-commands.exp: nested trace-commands test
new UNRESOLVED: gdb.base/trace-commands.exp: nested trace-commands test with source
new UNRESOLVED: gdb.base/trace-commands.exp: set trace-commands
new UNRESOLVED: gdb.base/trace-commands.exp: show trace-commands says off
new UNRESOLVED: gdb.base/trace-commands.exp: show trace-commands says on
new UNRESOLVED: gdb.base/trace-commands.exp: simple trace-commands test
new UNRESOLVED: gdb.base/trace-commands.exp: source -v
new UNRESOLVED: gdb.base/warning.exp: echo 23\n
new UNRESOLVED: gdb.btrace/cpu.exp: default cpu
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu auto
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/1
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0x0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo/bar
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu none
new UNRESOLVED: gdb.btrace/cpu.exp: set record
new UNRESOLVED: gdb.btrace/cpu.exp: set record btrace
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu auto
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/1
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0x0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo/bar
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu none
new UNRESOLVED: gdb.cp/debug-expr.exp: print dynamic_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: print reinterpret_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: print static_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: set debug expression 1
new UNRESOLVED: gdb.cp/debug-expr.exp: set language c++
new UNRESOLVED: gdb.cp/demangle.exp: auto: check demangling style
new UNRESOLVED: gdb.cp/demangle.exp: auto: set demangle-style
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c -- _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c++ -- _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c++ _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l garbage xyzdje
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z13BitPatterntoaOK10BitPatternccc
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z31DrawDestinationTransformedImageP7_XImageiiS0_iimjiijmmP4_XGCOK13ivTransformeriiii
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z3argOK7Complex
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN11RelateManip6EffectEO7ivEvent
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN20DisplayList_IteratorC4EO11DisplayList
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN3fooC4EOS_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN3fooC4EiOS_iS0_iS0_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE3PixC4EOKS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE7elementC2EOKS0_PS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE7elementC4EOKS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityEC4EOKS1_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4PixXI11VHDLLibrary14VHDLLibraryRep4ListI10VHDLEntityEEC2EOKS5_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN7ivWorldC2EPKcOiPPcPK12ivOptionDescPK14ivPropertyData
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN8TextCode14CoreConstDeclsEO7ostream
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic: gnu-v3: check demangling style
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic: gnu-v3: set demangle-style
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK11VHDLLibrary5nextEEO4PixXIS_14VHDLLibraryRep4ListI10VHDLEntityEE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK4ListI10VHDLEntityE4nextEONS1_3PixE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK4ListI10VHDLEntityEclEOKNS1_3PixE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOK10BitPattern
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOK12BitSubStringi
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOKS_
new UNRESOLVED: gdb.cp/demangle.exp: set language c++
new UNRESOLVED: gdb.cp/demangle.exp: set language unknown
new UNRESOLVED: gdb.cp/demangle.exp: set width 0
new UNRESOLVED: gdb.cp/maint.exp: help maint cp
new UNRESOLVED: gdb.cp/maint.exp: help maint cp first_component
new UNRESOLVED: gdb.cp/maint.exp: help maint cp namespace
new UNRESOLVED: gdb.cp/maint.exp: help maintenance cplus
new UNRESOLVED: gdb.cp/maint.exp: maint cp
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component C<A>::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component C<std::basic_streambuf<wchar_t,std::char_traits<wchar_t> > >::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component T<Cooperator>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component bool operator<<char>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo::bar::baz
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<&
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<&operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int operator<< <char>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator  ->
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator ->
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator>>
new UNRESOLVED: gdb.cp/maint.exp: maint cp namespace
new UNRESOLVED: gdb.cp/maint.exp: set complaints 1000
new UNRESOLVED: gdb.cp/punctuator.exp: print
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 1
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 2
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 3
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 1
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 2
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 3
new UNRESOLVED: gdb.cp/punctuator.exp: set lang c++
new UNRESOLVED: gdb.cp/ref-params.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/ref-params.exp: print value of Child& in f2
new UNRESOLVED: gdb.cp/ref-params.exp: print value of Parent& in f1
new UNRESOLVED: gdb.cp/ref-params.exp: print value of a Child in main
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on Child in main
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on Child& in f2
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f2 on
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f2 on Child in main
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print f1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print mf1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print mf2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Child&& in f2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Parent&& in f1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f1 on
new FAIL: gdb.cp/rvalue-ref-params.exp: print value of f1 on Child&& in f2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f2 on
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char16_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char16_t is unsigned
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char32_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char32_t is unsigned
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p L"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p U"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p u"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: set language c++
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: sizeof
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: wchar_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: wchar_t sign
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: char16_t is not built-in
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: char32_t is not built-in
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p L"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p U"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p u"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: set language c
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: wchar_t is not built-in
new UNRESOLVED: gdb.disasm/disassembler-options.exp: set disassembler-options
new UNRESOLVED: gdb.disasm/disassembler-options.exp: set disassembler-options invalid_option_value
new UNRESOLVED: gdb.disasm/disassembler-options.exp: show NULL disassembler-options
new UNRESOLVED: gdb.dlang/debug-expr.exp: print *
new UNRESOLVED: gdb.dlang/debug-expr.exp: set debug expression 1
new UNRESOLVED: gdb.dlang/debug-expr.exp: set language d
new UNRESOLVED: gdb.dlang/demangle.exp: set language d
new UNRESOLVED: gdb.dlang/expression.exp: set language d
new UNRESOLVED: gdb.dlang/primitive-types.exp: set language d
new UNRESOLVED: gdb.dlang/properties.exp: set language d
new UNRESOLVED: gdb.dlang/watch-loc.exp: disassemble _Dmain
new UNRESOLVED: gdb.dlang/watch-loc.exp: p _Dmain_label - _Dmain
new UNRESOLVED: gdb.dlang/watch-loc.exp: x/2i _Dmain+
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: disassemble first
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: disassemble second
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p first_label - first
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p second_label - second
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: x/2i first+
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: x/2i second+
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p g_label - g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i g+
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: console: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: console: set print object on
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: disassemble func01
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: p func01_label - func01
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: x/2i func01+
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dwz.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dwz.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dwz.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: disassemble mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: p mymain_label - mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: x/2i mymain+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/var-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/var-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/var-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/void-type.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/void-type.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i main+
new UNRESOLVED: gdb.guile/scm-gsmob.exp: gu
new UNRESOLVED: gdb.guile/scm-gsmob.exp: guile
new UNRESOLVED: gdb.guile/scm-gsmob.exp: object-properties
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: verify guile support
new UNRESOLVED: gdb.objc/print.exp: set language objective-c
new UNRESOLVED: gdb.pascal/print.exp: set language pascal
new UNRESOLVED: gdb.pascal/types.exp: set language pascal
new UNRESOLVED: gdb.python/py-completion.exp: check if python 3
new UNRESOLVED: gdb.python/py-completion.exp: discard #1
new UNRESOLVED: gdb.python/py-completion.exp: discard #2
new UNRESOLVED: gdb.python/py-completion.exp: discard #3
new UNRESOLVED: gdb.python/py-completion.exp: discard #4
new UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completel'
new UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit1 c'
new UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit2 c'
new UNRESOLVED: gdb.python/py-completion.exp: load python file
new UNRESOLVED: gdb.python/py-completion.exp: load python file again
new UNRESOLVED: gdb.python/py-completion.exp: show editing
new UNRESOLVED: gdb.python/py-completion.exp: verify python support
new UNRESOLVED: gdb.python/py-error.exp: check if python 3
new UNRESOLVED: gdb.python/py-error.exp: main reached
new UNRESOLVED: gdb.python/py-error.exp: no delayed error
new UNRESOLVED: gdb.python/py-error.exp: set host-charset IBM1047
new UNRESOLVED: gdb.python/py-error.exp: verify python support
new KFAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new UNRESOLVED: gdb.python/py-function.exp: Test GDBError - python
new UNRESOLVED: gdb.python/py-function.exp: Test GdbError.  There should not be a stack trace
new UNRESOLVED: gdb.python/py-function.exp: Test Normal Error - python
new UNRESOLVED: gdb.python/py-function.exp: Test a Runtime error.  There should be a stack trace.
new UNRESOLVED: gdb.python/py-function.exp: call function
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = ada
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = asm
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = auto
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = c
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = c++
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = d
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = fortran
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = go
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = minimal
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = modula-2
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = objective-c
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = opencl
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = pascal
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = rust
new UNRESOLVED: gdb.python/py-function.exp: call yes with &&
new UNRESOLVED: gdb.python/py-function.exp: call yes with ||
new UNRESOLVED: gdb.python/py-function.exp: check if python 3
new UNRESOLVED: gdb.python/py-function.exp: input command-calling function - python
new UNRESOLVED: gdb.python/py-function.exp: input convenience function - python
new UNRESOLVED: gdb.python/py-function.exp: input int-returning function - python
new UNRESOLVED: gdb.python/py-function.exp: input value-returning convenience function - python
new UNRESOLVED: gdb.python/py-function.exp: set language ada
new UNRESOLVED: gdb.python/py-function.exp: set language asm
new UNRESOLVED: gdb.python/py-function.exp: set language auto
new UNRESOLVED: gdb.python/py-function.exp: set language c
new UNRESOLVED: gdb.python/py-function.exp: set language c++
new UNRESOLVED: gdb.python/py-function.exp: set language d
new UNRESOLVED: gdb.python/py-function.exp: set language fortran
new UNRESOLVED: gdb.python/py-function.exp: set language go
new UNRESOLVED: gdb.python/py-function.exp: set language minimal
new UNRESOLVED: gdb.python/py-function.exp: set language modula-2
new UNRESOLVED: gdb.python/py-function.exp: set language objective-c
new UNRESOLVED: gdb.python/py-function.exp: set language opencl
new UNRESOLVED: gdb.python/py-function.exp: set language pascal
new UNRESOLVED: gdb.python/py-function.exp: set language rust
new UNRESOLVED: gdb.python/py-function.exp: set python print-stack full
new UNRESOLVED: gdb.python/py-function.exp: setting a value from a function which executes a command, again.
new UNRESOLVED: gdb.python/py-function.exp: setting a value from a function which executes a command.
new UNRESOLVED: gdb.python/py-function.exp: verify python support
new UNRESOLVED: gdb.python/py-lookup-type.exp: check if python 3
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type CARDINAL using language modula-2
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language c
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language objective-c
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language pascal
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type character using language ada
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type character using language fortran
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type int32 using language go
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type ucent using language d
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type ushort using language opencl
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language ada
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language c
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language d
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language fortran
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language go
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language modula-2
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language objective-c
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language opencl
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language pascal
new UNRESOLVED: gdb.python/py-lookup-type.exp: verify python support
new UNRESOLVED: gdb.python/py-nested-maps.exp: check if python 3
new UNRESOLVED: gdb.python/py-nested-maps.exp: verify python support
new UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER - python
new UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER_UNLIMITED - python
new UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb booleanparameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: Throwing gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: check if python 3
new UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value can be set to -1
new UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value is -1 after setting
new UNRESOLVED: gdb.python/py-parameter.exp: enum gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: file gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: gdb.GdbError does not show Python stack
new UNRESOLVED: gdb.python/py-parameter.exp: python print
new UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -1
new UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -5
new UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER_UNLIMITED.value = -5
new UNRESOLVED: gdb.python/py-parameter.exp: set enum to two
new UNRESOLVED: gdb.python/py-parameter.exp: set invalid enum parameter
new UNRESOLVED: gdb.python/py-parameter.exp: set new file parameter
new UNRESOLVED: gdb.python/py-parameter.exp: set test-file-param
new UNRESOLVED: gdb.python/py-parameter.exp: show initial file value
new UNRESOLVED: gdb.python/py-parameter.exp: show new file value
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter is initial value
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter is new value
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter off
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter on
new UNRESOLVED: gdb.python/py-parameter.exp: test enum parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test file parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test general help
new UNRESOLVED: gdb.python/py-parameter.exp: test new file parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test set help
new UNRESOLVED: gdb.python/py-parameter.exp: test show help
new UNRESOLVED: gdb.python/py-parameter.exp: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: verify python support
new UNRESOLVED: gdb.python/py-prettyprint.exp: check if python 3
new UNRESOLVED: gdb.python/py-prettyprint.exp: verify python support
new UNRESOLVED: gdb.python/py-prompt.exp: check if python 3
new UNRESOLVED: gdb.python/py-prompt.exp: verify python support
new FAIL: gdb.reverse/getresuid-reverse.exp: continue to breakpoint: marker2
new FAIL: gdb.reverse/getresuid-reverse.exp: reverse to marker1
new UNRESOLVED: gdb.reverse/getresuid-reverse.exp: turn on process record
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sigall-precsave.exp
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sigall-reverse.exp
new UNRESOLVED: gdb.rust/expr.exp: set language rust
new UNRESOLVED: gdb.rust/expr.exp: set var $something = 27
new FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
new FAIL: gdb.server/unittest.exp: unit tests
new UNRESOLVED: gdb.trace/actions.exp: failed to compile
new UNRESOLVED: gdb.trace/ax.exp: failed to compile
new UNRESOLVED: gdb.trace/deltrace.exp: failed to compile
new UNRESOLVED: gdb.trace/infotrace.exp: failed to compile
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with missing argument
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with too many arguments
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with wrong option
new UNRESOLVED: gdb.trace/packetlen.exp: failed to compile
new UNRESOLVED: gdb.trace/passc-dyn.exp: failed to compile
new UNRESOLVED: gdb.trace/passcount.exp: failed to compile
new UNRESOLVED: gdb.trace/report.exp: failed to compile
new UNRESOLVED: gdb.trace/save-trace.exp: failed to compile
new UNRESOLVED: gdb.trace/tfind.exp: failed to compile
new UNRESOLVED: gdb.trace/tracecmd.exp: failed to compile
new UNRESOLVED: gdb.trace/tsv.exp: failed to compile
new UNRESOLVED: gdb.trace/while-dyn.exp: failed to compile
new UNRESOLVED: gdb.trace/while-stepping.exp: failed to compile
new UNRESOLVED: gdb.tui/completion.exp: verify tui support
new UNRESOLVED: gdb.tui/empty.exp: set tui border-kind ascii
new UNRESOLVED: gdb.tui/empty.exp: src: 80x24: box 1
new UNRESOLVED: gdb.tui/empty.exp: verify tui support
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: correct line breaks
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: set height 2000
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: set pagination on
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: tui enable
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: verify tui support
new UNRESOLVED: gdb.xml/maint_print_struct.exp: printing tdesc with a structure and a bitfield
new UNRESOLVED: gdb.xml/maint_print_struct.exp: setting a new tdesc having only a structure
new UNRESOLVED: gdb.xml/tdesc-arch.exp: architecture XML tests
new UNRESOLVED: gdb.xml/tdesc-arch.exp: read default architecture
new UNRESOLVED: gdb.xml/tdesc-arch.exp: read valid architectures
new UNRESOLVED: gdb.xml/tdesc-errors.exp: set tdesc filename gdb.xml/tdesc-bogus.xml
new UNRESOLVED: gdb.xml/tdesc-errors.exp: set tdesc filename gdb.xml/tdesc-unknown.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: cd to directory holding xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: maintenance print reggroups
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $bitfields
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $extrareg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $flags
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $mixed_flags
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $structreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $structreg.v4
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $uintreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $unionreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $unionreg.v4
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $vecreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc file single-reg.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc filename test-extra-regs.xml - from extra-regs.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc filename test-regs.xml - from core-only.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/bad-include.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/includes.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/loop.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-gdbserver-m64/0d/0dfe5bfbb7e7a3e55c57d1b59c265dc1a3cd9fc7//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/0d/0dfe5bfbb7e7a3e55c57d1b59c265dc1a3cd9fc7//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-01 21:17 [binutils-gdb] Fix leak due to assigning a xstrdup-ed string to the std::string gdb_datadir gdb-buildbot
@ 2019-10-01 23:42 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-01 23:42 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/820

Author:
        Philippe Waroquiers <philippe.waroquiers@skynet.be>

Commit tested:
        cd7c32c36ae53c00e9b0731c58de37dc28b88fb6

Subject of commit:
        Fix leak due to assigning a xstrdup-ed string to the std::string gdb_datadir

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/cd/cd7c32c36ae53c00e9b0731c58de37dc28b88fb6/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.ada/assign_arr.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/assign_arr.exp: print assign_arr_input.u2 :=
PASS -> FAIL: gdb.ada/bad-task-bp-keyword.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/bp_reset.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/frame_arg_lang.exp: compilation bla.adb
PASS -> FAIL: gdb.ada/fun_overload_menu.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/funcall_param.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/funcall_param.exp: p ident
new UNRESOLVED: gdb.ada/minsyms.exp: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.ada/null_array.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/optim_drec.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/pckd_neg.exp: compilation foo_o508_021.adb
PASS -> FAIL: gdb.ada/ref_param.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/var_arr_typedef.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/var_arr_typedef.exp: print a
new UNRESOLVED: gdb.ada/var_arr_typedef.exp: print va
new UNRESOLVED: gdb.ada/var_arr_typedef.exp: print vb
PASS -> FAIL: gdb.ada/win_fu_syms.exp: compilation foo.adb
new UNRESOLVED: gdb.base/dprintf-non-stop.exp: can't run to main
new UNRESOLVED: gdb.base/frameapply.exp: can't run to setup_done
new UNRESOLVED: gdb.base/infnan.exp: print a
new UNRESOLVED: gdb.base/interp.exp: run to main
new UNRESOLVED: gdb.base/noreturn-finish.exp: could not run to main
new UNRESOLVED: gdb.base/vla-optimized-out.exp: o1: can't run to f1
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p g_label - g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i g+
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/implref-array.exp: p main_label - main
new UNRESOLVED: gdb.linespec/keywords.exp: can't run to main
new UNRESOLVED: gdb.python/py-completion.exp: check if python 3
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #1
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #2
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #3
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #4
PASS -> UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completel'
PASS -> UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit1 c'
PASS -> UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit2 c'
PASS -> UNRESOLVED: gdb.python/py-completion.exp: load python file
PASS -> UNRESOLVED: gdb.python/py-completion.exp: load python file again
new UNRESOLVED: gdb.python/py-completion.exp: show editing
new UNRESOLVED: gdb.python/py-completion.exp: verify python support
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER_UNLIMITED - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb booleanparameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Throwing gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: check if python 3
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value can be set to -1
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value is -1 after setting
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum gdb parameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file gdb parameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: gdb.GdbError does not show Python stack
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python print
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -1
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -5
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER_UNLIMITED.value = -5
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: set enum to two
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: set invalid enum parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: set new file parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: set test-file-param
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show initial file value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show new file value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show parameter is initial value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show parameter is new value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show parameter off
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show parameter on
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test enum parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test file parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test general help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test new file parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test set help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test show help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: verify python support
new UNRESOLVED: gdb.python/py-prettyprint.exp: check if python 3
new UNRESOLVED: gdb.python/py-prettyprint.exp: verify python support
new UNRESOLVED: gdb.python/py-shared.exp: can't run to main
new UNRESOLVED: gdb.python/py-value.exp: can't run to main
new UNRESOLVED: gdb.reverse/fstatat-reverse.exp: turn on process record
new UNRESOLVED: gdb.reverse/recvmsg-reverse.exp: turn on process record
==============================================

*** 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/cd/cd7c32c36ae53c00e9b0731c58de37dc28b88fb6//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/cd/cd7c32c36ae53c00e9b0731c58de37dc28b88fb6//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-01 18:10 [binutils-gdb] [PATCH v2 2/4] DWARF 5 support: Handle DW_FORM_strx gdb-buildbot
@ 2019-10-01 20:34 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-01 20:34 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/819

Author:
        Ali Tamur <tamur@google.com>

Commit tested:
        8fe0f950f4c0438e684a532add46dc99ee32165c

Subject of commit:
        [PATCH v2 2/4] DWARF 5 support: Handle DW_FORM_strx

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/8f/8fe0f950f4c0438e684a532add46dc99ee32165c/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/arraydim.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/bad-task-bp-keyword.exp: break *break_me'address TASK 2
new UNRESOLVED: gdb.ada/bad-task-bp-keyword.exp: break *break_me'address TASK Task TaSK 2
new UNRESOLVED: gdb.ada/bad-task-bp-keyword.exp: break *break_me'address TASK if
new UNRESOLVED: gdb.ada/bad-task-bp-keyword.exp: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.ada/char_enum.exp: compilation foo.adb
new FAIL: gdb.ada/frame_arg_lang.exp: backtrace with auto: c
new FAIL: gdb.ada/frame_arg_lang.exp: backtrace with language back to 'auto; c'
new FAIL: gdb.ada/frame_arg_lang.exp: backtrace with language forced to 'c'
new UNRESOLVED: gdb.ada/frame_arg_lang.exp: set print frame-arguments all
new FAIL: gdb.ada/frame_arg_lang.exp: show language when set back to 'auto; c'
new FAIL: gdb.ada/frame_arg_lang.exp: show language when set to 'auto; c'
new UNRESOLVED: gdb.ada/fun_overload_menu.exp: 1
new UNRESOLVED: gdb.ada/fun_overload_menu.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/fun_overload_menu.exp: multiple matches for f
new UNRESOLVED: gdb.ada/fun_overload_menu.exp: multiple matches for p
new UNRESOLVED: gdb.ada/fun_overload_menu.exp: set ada print-signatures off
PASS -> FAIL: gdb.ada/homonym.exp: compilation homonym_main.adb
new UNRESOLVED: gdb.ada/info_auto_lang.exp: can't run to some_c.c STOP location
PASS -> FAIL: gdb.ada/notcplusplus.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/null_array.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/null_array.exp: print my_matrix
new UNRESOLVED: gdb.ada/null_array.exp: print my_table
new UNRESOLVED: gdb.ada/null_array.exp: ptype my_table
new UNRESOLVED: gdb.ada/optim_drec.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/pckd_neg.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/pckd_neg.exp: print SSA
new UNRESOLVED: gdb.ada/ref_param.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/catch-follow-exec.exp: could not run to main
new FAIL: gdb.base/multi-forks.exp: detach 2
new FAIL: gdb.base/multi-forks.exp: detach 3
new FAIL: gdb.base/multi-forks.exp: detach 4
new FAIL: gdb.base/multi-forks.exp: detach 5
new FAIL: gdb.base/multi-forks.exp: did kill 10
new FAIL: gdb.base/multi-forks.exp: did kill 11
new FAIL: gdb.base/multi-forks.exp: did kill 12
new FAIL: gdb.base/multi-forks.exp: did kill 13
new FAIL: gdb.base/multi-forks.exp: did kill 14
new FAIL: gdb.base/multi-forks.exp: did kill 15
new FAIL: gdb.base/multi-forks.exp: did kill 16
new FAIL: gdb.base/multi-forks.exp: did kill 6
new FAIL: gdb.base/multi-forks.exp: did kill 7
new FAIL: gdb.base/multi-forks.exp: did kill 8
new FAIL: gdb.base/multi-forks.exp: did kill 9
new FAIL: gdb.base/multi-forks.exp: follow child, print pids
new FAIL: gdb.base/multi-forks.exp: follow parent, print pids
new UNRESOLVED: gdb.base/multi-forks.exp: help set detach
new FAIL: gdb.base/multi-forks.exp: inferior 1
new FAIL: gdb.base/multi-forks.exp: inferior 10
new FAIL: gdb.base/multi-forks.exp: inferior 11
new FAIL: gdb.base/multi-forks.exp: inferior 12
new FAIL: gdb.base/multi-forks.exp: inferior 13
new FAIL: gdb.base/multi-forks.exp: inferior 14
new FAIL: gdb.base/multi-forks.exp: inferior 15
new FAIL: gdb.base/multi-forks.exp: inferior 2
new FAIL: gdb.base/multi-forks.exp: inferior 3
new FAIL: gdb.base/multi-forks.exp: inferior 4
new FAIL: gdb.base/multi-forks.exp: inferior 5
new FAIL: gdb.base/multi-forks.exp: inferior 6
new FAIL: gdb.base/multi-forks.exp: inferior 7
new FAIL: gdb.base/multi-forks.exp: inferior 8
new FAIL: gdb.base/multi-forks.exp: inferior 9
new FAIL: gdb.base/multi-forks.exp: info inferior 1
new FAIL: gdb.base/multi-forks.exp: info inferior 10
new FAIL: gdb.base/multi-forks.exp: info inferior 11
new FAIL: gdb.base/multi-forks.exp: info inferior 12
new FAIL: gdb.base/multi-forks.exp: info inferior 13
new FAIL: gdb.base/multi-forks.exp: info inferior 14
new FAIL: gdb.base/multi-forks.exp: info inferior 15
new FAIL: gdb.base/multi-forks.exp: info inferior 16
new FAIL: gdb.base/multi-forks.exp: info inferior 2
new FAIL: gdb.base/multi-forks.exp: info inferior 3
new FAIL: gdb.base/multi-forks.exp: info inferior 4
new FAIL: gdb.base/multi-forks.exp: info inferior 5
new FAIL: gdb.base/multi-forks.exp: info inferior 6
new FAIL: gdb.base/multi-forks.exp: info inferior 7
new FAIL: gdb.base/multi-forks.exp: info inferior 8
new FAIL: gdb.base/multi-forks.exp: info inferior 9
new FAIL: gdb.base/multi-forks.exp: kill 10
new FAIL: gdb.base/multi-forks.exp: kill 11
new FAIL: gdb.base/multi-forks.exp: kill 12
new FAIL: gdb.base/multi-forks.exp: kill 13
new FAIL: gdb.base/multi-forks.exp: kill 14
new FAIL: gdb.base/multi-forks.exp: kill 15
new FAIL: gdb.base/multi-forks.exp: kill 16
new FAIL: gdb.base/multi-forks.exp: kill 6
new FAIL: gdb.base/multi-forks.exp: kill 7
new FAIL: gdb.base/multi-forks.exp: kill 8
new FAIL: gdb.base/multi-forks.exp: kill 9
new FAIL: gdb.base/multi-forks.exp: restart final
new FAIL: gdb.base/multi-forks.exp: run to exit 1
new FAIL: gdb.base/multi-forks.exp: run to exit 10
new FAIL: gdb.base/multi-forks.exp: run to exit 11
new FAIL: gdb.base/multi-forks.exp: run to exit 12
new FAIL: gdb.base/multi-forks.exp: run to exit 13
new FAIL: gdb.base/multi-forks.exp: run to exit 14
new FAIL: gdb.base/multi-forks.exp: run to exit 15
new FAIL: gdb.base/multi-forks.exp: run to exit 16
new UNRESOLVED: gdb.base/multi-forks.exp: run to exit 2
new FAIL: gdb.base/multi-forks.exp: run to exit 3
new FAIL: gdb.base/multi-forks.exp: run to exit 4
new FAIL: gdb.base/multi-forks.exp: run to exit 5
new FAIL: gdb.base/multi-forks.exp: run to exit 6
new FAIL: gdb.base/multi-forks.exp: run to exit 7
new FAIL: gdb.base/multi-forks.exp: run to exit 8
new FAIL: gdb.base/multi-forks.exp: run to exit 9
new UNRESOLVED: gdb.base/multi-forks.exp: set follow-fork child
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: continue to func01
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: create varobj for ptr
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: get children of var1
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: mi: run to main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: mi: set print object on
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access array member
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access integer member
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access pointer member
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble bar
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble baz
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble foo
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble foo_low
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p bar_label - bar
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p baz_label - baz
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p foo_label - foo
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p foo_low_label - foo_low
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i bar+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i baz+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i foo+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i foo_low+
new UNRESOLVED: gdb.dwarf2/implref-const.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/implref-const.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/implref-const.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/void-type.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/void-type.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i main+
new UNRESOLVED: gdb.python/py-symtab.exp: can't run to main
==============================================

*** 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/8f/8fe0f950f4c0438e684a532add46dc99ee32165c//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/8f/8fe0f950f4c0438e684a532add46dc99ee32165c//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-01 15:00 [binutils-gdb] Remove extra whitespaces at the end of lines gdb-buildbot
@ 2019-10-01 17:26 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-01 17:26 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/818

Author:
        Ali Tamur <tamur@google.com>

Commit tested:
        5f48f8f3c34c8036ffa3acaad4b9b72058b904cf

Subject of commit:
        Remove extra whitespaces at the end of lines.

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/5f/5f48f8f3c34c8036ffa3acaad4b9b72058b904cf/

*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/arraydim.exp: print m'first
new FAIL: gdb.ada/arraydim.exp: print m'last
new FAIL: gdb.ada/arraydim.exp: print m'length
new UNRESOLVED: gdb.ada/arraydim.exp: ptype m
new UNRESOLVED: gdb.ada/char_enum.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/char_enum.exp: print Char_Enum_Type'
new UNRESOLVED: gdb.ada/char_enum.exp: print pck.Global_Enum_Type'
new UNRESOLVED: gdb.ada/char_enum.exp: ptype Char_Enum_Type
new UNRESOLVED: gdb.ada/char_enum.exp: ptype pck.Global_Enum_Type
new UNRESOLVED: gdb.ada/homonym.exp: break at BREAK_2
new UNRESOLVED: gdb.ada/homonym.exp: continue until BREAK_2
new UNRESOLVED: gdb.ada/homonym.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/homonym.exp: print lcl at BREAK_1
new UNRESOLVED: gdb.ada/homonym.exp: print lcl at BREAK_2
new UNRESOLVED: gdb.ada/homonym.exp: ptype int_type at BREAK_1
new UNRESOLVED: gdb.ada/homonym.exp: ptype lcl at BREAK_1
new UNRESOLVED: gdb.ada/homonym.exp: ptype lcl at BREAK_2
new UNRESOLVED: gdb.ada/homonym.exp: ptype local_type at BREAK_1
new UNRESOLVED: gdb.ada/homonym.exp: ptype local_type at BREAK_2
new UNRESOLVED: gdb.ada/homonym.exp: ptype local_type_subtype at BREAK_1
new UNRESOLVED: gdb.ada/homonym.exp: ptype local_type_subtype at BREAK_2
new UNRESOLVED: gdb.ada/homonym.exp: set breakpoint at <homonym__get_value>
new UNRESOLVED: gdb.ada/homonym.exp: set breakpoint at Get_Value
new UNRESOLVED: gdb.ada/homonym.exp: set breakpoint at homonym.adb:Get_Value
new UNRESOLVED: gdb.ada/mi_catch_ex.exp: cannot run to main, testcase aborted
new UNRESOLVED: gdb.ada/notcplusplus.exp: list ver.ads:16
new UNRESOLVED: gdb.ada/notcplusplus.exp: print <symada__cS> after loading symbols from ver.ads
new UNRESOLVED: gdb.ada/notcplusplus.exp: print <symada__cS> before loading symbols from ver.ads
new UNRESOLVED: gdb.base/dump.exp: couldn't run to checkpoint
new UNRESOLVED: gdb.base/examine-backward.exp: could not run to main
new UNRESOLVED: gdb.base/info-fun.exp: n_flag=0: NO: can't run to main
new UNRESOLVED: gdb.base/info-types.exp: l=c: can't run to main
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p bar_label - bar
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p baz_label - baz
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_cold_label - foo_cold
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_label - foo
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p main_label - main
new UNRESOLVED: gdb.dwarf2/implref-struct.exp: p main_label - main
new UNRESOLVED: gdb.python/py-recurse-unwind.exp: can't run to main
==============================================

*** 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/5f/5f48f8f3c34c8036ffa3acaad4b9b72058b904cf//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/5f/5f48f8f3c34c8036ffa3acaad4b9b72058b904cf//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-01 11:52 [binutils-gdb] Use std::sort instead of qsort in minsyms.c gdb-buildbot
@ 2019-10-01 14:08 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-01 14:08 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/817

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        6fb08628e0f894f01e3e4834d5262629ca8f1920

Subject of commit:
        Use std::sort instead of qsort in minsyms.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/6f/6fb08628e0f894f01e3e4834d5262629ca8f1920/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.python/py-completion.exp: check if python 3
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #1
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #2
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #3
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #4
PASS -> UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completel'
PASS -> UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit1 c'
PASS -> UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit2 c'
PASS -> UNRESOLVED: gdb.python/py-completion.exp: load python file
PASS -> UNRESOLVED: gdb.python/py-completion.exp: load python file again
new UNRESOLVED: gdb.python/py-completion.exp: show editing
new UNRESOLVED: gdb.python/py-completion.exp: verify python support
new UNRESOLVED: gdb.python/py-pp-maint.exp: can't run to main
new UNRESOLVED: gdb.python/py-prettyprint.exp: check if python 3
new UNRESOLVED: gdb.python/py-prettyprint.exp: verify python support
new UNRESOLVED: gdb.trace/tfind.exp: failed to compile
==============================================

*** 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/6f/6fb08628e0f894f01e3e4834d5262629ca8f1920//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/6f/6fb08628e0f894f01e3e4834d5262629ca8f1920//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-01 11:03 [binutils-gdb] Disable all warnings in gdb.rust/traits.rs gdb-buildbot
@ 2019-10-01 11:03 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-01 11: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/816

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        4a56a5200793f7476991952afa61be11a6d2ed41

Subject of commit:
        Disable all warnings in gdb.rust/traits.rs

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/4a/4a56a5200793f7476991952afa61be11a6d2ed41/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/aliased_array.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/assign_arr.exp: compilation main_p324_051.adb
PASS -> FAIL: gdb.ada/funcall_param.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/mi_string_access.exp: compilation bar.adb
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: console: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: disassemble func01
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: p func01_label - func01
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: x/2i func01+
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dwz.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dwz.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dwz.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/void-type.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/void-type.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i main+
new UNRESOLVED: gdb.python/py-recurse-unwind.exp: can't run to main
==============================================

*** 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/4a/4a56a5200793f7476991952afa61be11a6d2ed41//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/4a/4a56a5200793f7476991952afa61be11a6d2ed41//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-01  5:24 [binutils-gdb] Improve some comments about msymbol handling gdb-buildbot
@ 2019-10-01  7:53 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-01  7:53 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/815

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        c7ee338a2dc3570c830e6897940f3955c5f632b2

Subject of commit:
        Improve some comments about msymbol handling

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/c7/c7ee338a2dc3570c830e6897940f3955c5f632b2/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.ada/aliased_array.exp: print bt
new UNRESOLVED: gdb.ada/assign_arr.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/assign_arr.exp: print assign_arr_input.u2 :=
new UNRESOLVED: gdb.ada/funcall_param.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/funcall_param.exp: p ident
new FAIL: gdb.ada/mi_string_access.exp: Create var1 varobj
new FAIL: gdb.ada/mi_string_access.exp: Print var1
new FAIL: gdb.ada/mi_string_access.exp: Print var1 first child
new FAIL: gdb.ada/mi_string_access.exp: Print var1 second child
new FAIL: gdb.ada/mi_string_access.exp: list var1's children
new UNRESOLVED: gdb.ada/mi_string_access.exp: run to bar.adb:23
new FAIL: gdb.ada/mi_string_access.exp: wait for stop
new UNRESOLVED: gdb.ada/nested.exp: break on nested function First
new UNRESOLVED: gdb.ada/var_arr_typedef.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/var_arr_typedef.exp: print a
new UNRESOLVED: gdb.ada/var_arr_typedef.exp: print va
new UNRESOLVED: gdb.ada/var_arr_typedef.exp: print vb
new UNRESOLVED: gdb.arch/aarch64-fp.exp: could not run to main
new UNRESOLVED: gdb.base/breakpoint-shadow.exp: start
new UNRESOLVED: gdb.base/finish.exp: couldn't run to main
new UNRESOLVED: gdb.base/line-symtabs.exp: can't run to main
new UNRESOLVED: gdb.base/multi-forks.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/multi-forks.exp: detach 2
new UNRESOLVED: gdb.base/multi-forks.exp: detach 3
new UNRESOLVED: gdb.base/multi-forks.exp: detach 4
new UNRESOLVED: gdb.base/multi-forks.exp: detach 5
new UNRESOLVED: gdb.base/multi-forks.exp: did kill 10
new UNRESOLVED: gdb.base/multi-forks.exp: did kill 11
new UNRESOLVED: gdb.base/multi-forks.exp: did kill 12
new UNRESOLVED: gdb.base/multi-forks.exp: did kill 13
new UNRESOLVED: gdb.base/multi-forks.exp: did kill 14
new UNRESOLVED: gdb.base/multi-forks.exp: did kill 15
new UNRESOLVED: gdb.base/multi-forks.exp: did kill 16
new UNRESOLVED: gdb.base/multi-forks.exp: did kill 6
new UNRESOLVED: gdb.base/multi-forks.exp: did kill 7
new UNRESOLVED: gdb.base/multi-forks.exp: did kill 8
new UNRESOLVED: gdb.base/multi-forks.exp: did kill 9
new UNRESOLVED: gdb.base/multi-forks.exp: follow child, print pids
new UNRESOLVED: gdb.base/multi-forks.exp: follow parent, print pids
new UNRESOLVED: gdb.base/multi-forks.exp: help set detach
new UNRESOLVED: gdb.base/multi-forks.exp: inferior 1
new UNRESOLVED: gdb.base/multi-forks.exp: inferior 10
new UNRESOLVED: gdb.base/multi-forks.exp: inferior 11
new UNRESOLVED: gdb.base/multi-forks.exp: inferior 12
new UNRESOLVED: gdb.base/multi-forks.exp: inferior 13
new UNRESOLVED: gdb.base/multi-forks.exp: inferior 14
new UNRESOLVED: gdb.base/multi-forks.exp: inferior 15
new UNRESOLVED: gdb.base/multi-forks.exp: inferior 2
new UNRESOLVED: gdb.base/multi-forks.exp: inferior 3
new UNRESOLVED: gdb.base/multi-forks.exp: inferior 4
new UNRESOLVED: gdb.base/multi-forks.exp: inferior 5
new UNRESOLVED: gdb.base/multi-forks.exp: inferior 6
new UNRESOLVED: gdb.base/multi-forks.exp: inferior 7
new UNRESOLVED: gdb.base/multi-forks.exp: inferior 8
new UNRESOLVED: gdb.base/multi-forks.exp: inferior 9
new UNRESOLVED: gdb.base/multi-forks.exp: info inferior 1
new UNRESOLVED: gdb.base/multi-forks.exp: info inferior 10
new UNRESOLVED: gdb.base/multi-forks.exp: info inferior 11
new UNRESOLVED: gdb.base/multi-forks.exp: info inferior 12
new UNRESOLVED: gdb.base/multi-forks.exp: info inferior 13
new UNRESOLVED: gdb.base/multi-forks.exp: info inferior 14
new UNRESOLVED: gdb.base/multi-forks.exp: info inferior 15
new UNRESOLVED: gdb.base/multi-forks.exp: info inferior 16
new UNRESOLVED: gdb.base/multi-forks.exp: info inferior 2
new UNRESOLVED: gdb.base/multi-forks.exp: info inferior 3
new UNRESOLVED: gdb.base/multi-forks.exp: info inferior 4
new UNRESOLVED: gdb.base/multi-forks.exp: info inferior 5
new UNRESOLVED: gdb.base/multi-forks.exp: info inferior 6
new UNRESOLVED: gdb.base/multi-forks.exp: info inferior 7
new UNRESOLVED: gdb.base/multi-forks.exp: info inferior 8
new UNRESOLVED: gdb.base/multi-forks.exp: info inferior 9
new UNRESOLVED: gdb.base/multi-forks.exp: kill 10
new UNRESOLVED: gdb.base/multi-forks.exp: kill 11
new UNRESOLVED: gdb.base/multi-forks.exp: kill 12
new UNRESOLVED: gdb.base/multi-forks.exp: kill 13
new UNRESOLVED: gdb.base/multi-forks.exp: kill 14
new UNRESOLVED: gdb.base/multi-forks.exp: kill 15
new UNRESOLVED: gdb.base/multi-forks.exp: kill 16
new UNRESOLVED: gdb.base/multi-forks.exp: kill 6
new UNRESOLVED: gdb.base/multi-forks.exp: kill 7
new UNRESOLVED: gdb.base/multi-forks.exp: kill 8
new UNRESOLVED: gdb.base/multi-forks.exp: kill 9
new UNRESOLVED: gdb.base/multi-forks.exp: restart final
new UNRESOLVED: gdb.base/multi-forks.exp: run to exit 1
new UNRESOLVED: gdb.base/multi-forks.exp: run to exit 10
new UNRESOLVED: gdb.base/multi-forks.exp: run to exit 11
new UNRESOLVED: gdb.base/multi-forks.exp: run to exit 12
new UNRESOLVED: gdb.base/multi-forks.exp: run to exit 13
new UNRESOLVED: gdb.base/multi-forks.exp: run to exit 14
new UNRESOLVED: gdb.base/multi-forks.exp: run to exit 15
new UNRESOLVED: gdb.base/multi-forks.exp: run to exit 16
new UNRESOLVED: gdb.base/multi-forks.exp: run to exit 2
new UNRESOLVED: gdb.base/multi-forks.exp: run to exit 3
new UNRESOLVED: gdb.base/multi-forks.exp: run to exit 4
new UNRESOLVED: gdb.base/multi-forks.exp: run to exit 5
new UNRESOLVED: gdb.base/multi-forks.exp: run to exit 6
new UNRESOLVED: gdb.base/multi-forks.exp: run to exit 7
new UNRESOLVED: gdb.base/multi-forks.exp: run to exit 8
new UNRESOLVED: gdb.base/multi-forks.exp: run to exit 9
new UNRESOLVED: gdb.base/multi-forks.exp: set detach off
new UNRESOLVED: gdb.base/multi-forks.exp: set follow-fork child
new UNRESOLVED: gdb.base/multi-forks.exp: set follow-fork parent
new UNRESOLVED: gdb.base/multi-forks.exp: setting breakpoint at 40
new UNRESOLVED: gdb.base/multi-forks.exp: show detach default on
PASS -> UNRESOLVED: gdb.base/readline.exp: Simple operate-and-get-next - send p 1
PASS -> UNRESOLVED: gdb.base/readline.exp: arrow keys with secondary prompt
PASS -> UNRESOLVED: gdb.base/readline.exp: operate-and-get-next with secondary prompt - send if 1 > 0
PASS -> UNRESOLVED: gdb.base/readline.exp: print 42
new UNRESOLVED: gdb.base/readline.exp: show editing
new UNRESOLVED: gdb.base/step-break.exp: can't run to main
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble bar
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble baz
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble foo
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble foo_low
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p bar_label - bar
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p baz_label - baz
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p foo_label - foo
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p foo_low_label - foo_low
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i bar+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i baz+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i foo+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i foo_low+
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i main+
new UNRESOLVED: gdb.guile/guile.exp: collect help from uiout
new UNRESOLVED: gdb.guile/guile.exp: guile
new UNRESOLVED: gdb.guile/guile.exp: show guile command - define zzq
new UNRESOLVED: gdb.guile/guile.exp: source -s source2.scm
new UNRESOLVED: gdb.guile/guile.exp: source source2.scm
new UNRESOLVED: gdb.guile/guile.exp: verify guile support
new UNRESOLVED: gdb.guile/guile.exp: verify help to uiout
new UNRESOLVED: gdb.guile/scm-error.exp: backtrace printed
new UNRESOLVED: gdb.guile/scm-error.exp: error loading scm file caught
new UNRESOLVED: gdb.guile/scm-error.exp: error message printed
new UNRESOLVED: gdb.guile/scm-error.exp: guile
new UNRESOLVED: gdb.guile/scm-error.exp: no delayed error
new UNRESOLVED: gdb.guile/scm-error.exp: no error printed
new UNRESOLVED: gdb.guile/scm-error.exp: reset print-stack to default, post set/show tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to full, for backtrace test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error printing tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to none, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: source /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.guile/scm-error/scm-error-2.scm
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack full setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack none setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting of default
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to full
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to none
new UNRESOLVED: gdb.guile/scm-error.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-gsmob.exp: gu
new UNRESOLVED: gdb.guile/scm-gsmob.exp: guile
new UNRESOLVED: gdb.guile/scm-gsmob.exp: object-properties
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-parameter.exp: Simple gdb boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: enum gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: error registering existing parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: file gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously ambiguously named boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set print s on
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: restricted gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: enum parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set invalid enum parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set print test-enum-param two
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: initial parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: new parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param bar.txt
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set print test-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 10
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 42
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: show test-restricted-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set print test-undoc-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: undocumented gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: verify guile support
==============================================

*** 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/c7/c7ee338a2dc3570c830e6897940f3955c5f632b2//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/c7/c7ee338a2dc3570c830e6897940f3955c5f632b2//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
       [not found] <703a86c2fa74e6c998ed24a8823658119f176b2d@gdb-build>
@ 2019-10-01  3:42 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-10-01  3:42 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/814

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        703a86c2fa74e6c998ed24a8823658119f176b2d

Subject of commit:
        gdb: re-write add_psymbol_to_list doc, move it to header file

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/70/703a86c2fa74e6c998ed24a8823658119f176b2d/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/char_enum.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/expr_delims.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/homonym.exp: compilation homonym_main.adb
PASS -> FAIL: gdb.ada/print_pc.exp: compilation dummy.adb
PASS -> FAIL: gdb.ada/scoped_watch.exp: compilation foo_p708_025.adb
PASS -> FAIL: gdb.ada/tick_last_segv.exp: compilation foo.adb
new UNRESOLVED: gdb.base/argv0-symlink.exp: could not run to main
new FAIL: gdb.base/index-cache.exp: couldn't create temporary cache dir
new UNRESOLVED: gdb.base/infnan.exp: print a
new UNRESOLVED: gdb.base/recpar.exp: could not run to main
new UNRESOLVED: gdb.base/signull.exp: can't run to main
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Child&& in f2: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Parent&& in f1: delete all breakpoints in delete_breakpoints
FAIL -> UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f1 on Child&& in f2
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dw2-linkage-name-trust.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: continue to func01
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: create varobj for ptr
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: get children of var1
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: mi: run to main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: mi: set print object on
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access array member
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access integer member
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access pointer member
new UNRESOLVED: gdb.dwarf2/dwz.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dwz.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dwz.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: disassemble mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: p mymain_label - mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: x/2i mymain+
new UNRESOLVED: gdb.dwarf2/var-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/var-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/var-access.exp: x/2i main+
new UNRESOLVED: gdb.linespec/keywords.exp: can't run to main
new UNRESOLVED: gdb.python/py-completion.exp: check if python 3
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #1
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #2
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #3
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #4
PASS -> UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completel'
PASS -> UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit1 c'
PASS -> UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit2 c'
PASS -> UNRESOLVED: gdb.python/py-completion.exp: load python file
PASS -> UNRESOLVED: gdb.python/py-completion.exp: load python file again
new UNRESOLVED: gdb.python/py-completion.exp: show editing
new UNRESOLVED: gdb.python/py-completion.exp: verify python support
new UNRESOLVED: gdb.python/py-prettyprint.exp: check if python 3
new UNRESOLVED: gdb.python/py-prettyprint.exp: verify python support
new UNRESOLVED: gdb.python/py-value.exp: can't run to main
new FAIL: gdb.reverse/getresuid-reverse.exp: continue to breakpoint: marker2
new FAIL: gdb.reverse/getresuid-reverse.exp: reverse to marker1
new UNRESOLVED: gdb.reverse/getresuid-reverse.exp: turn on process record
==============================================

*** 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/70/703a86c2fa74e6c998ed24a8823658119f176b2d//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/70/703a86c2fa74e6c998ed24a8823658119f176b2d//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-09-30 17:53 [binutils-gdb] [gdb/contrib] cc-with-tweaks.sh: Create .dwz file in .tmp subdir gdb-buildbot
@ 2019-09-30 21:24 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-09-30 21:24 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/810

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        0df0352ad0b64e884977d8251cf1b88b6640600f

Subject of commit:
        [gdb/contrib] cc-with-tweaks.sh: Create .dwz file in .tmp subdir

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/0d/0df0352ad0b64e884977d8251cf1b88b6640600f/

*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/O2_float_param.exp: compilation foo.adb
new FAIL: gdb.ada/access_tagged_param.exp: compilation foo.adb
new FAIL: gdb.ada/access_to_unbounded_array.exp: compilation foo.adb
new FAIL: gdb.ada/addr_arith.exp: compilation foo_na07_019.adb
new FAIL: gdb.ada/aliased_array.exp: compilation foo.adb
new FAIL: gdb.ada/arr_acc_idx_w_gap.exp: compilation enum_with_gap_main.adb
new FAIL: gdb.ada/arr_arr.exp: compilation foo.adb
new FAIL: gdb.ada/arr_enum_idx_w_gap.exp: compilation foo_q418_043.adb
new FAIL: gdb.ada/array_bounds.exp: compilation bar.adb
new FAIL: gdb.ada/array_char_idx.exp: compilation foo.adb
new FAIL: gdb.ada/array_of_variable_length.exp: compilation foo.adb
new FAIL: gdb.ada/array_ptr_renaming.exp: compilation foo.adb
new FAIL: gdb.ada/array_return.exp: compilation p.adb
new FAIL: gdb.ada/array_subscript_addr.exp: compilation p.adb
new FAIL: gdb.ada/arraydim.exp: compilation foo.adb
new FAIL: gdb.ada/arrayidx.exp: compilation p.adb
new FAIL: gdb.ada/arrayparam.exp: compilation foo.adb
new FAIL: gdb.ada/arrayptr.exp: compilation foo.adb
new FAIL: gdb.ada/assign_arr.exp: compilation main_p324_051.adb
new FAIL: gdb.ada/atomic_enum.exp: compilation foo.adb
new FAIL: gdb.ada/attr_ref_and_charlit.exp: compilation foo.adb
new FAIL: gdb.ada/bad-task-bp-keyword.exp: compilation foo.adb
new FAIL: gdb.ada/big_packed_array.exp: compilation foo_ra24_010.adb
new FAIL: gdb.ada/bp_c_mixed_case.exp: compilation foo_h731_021.adb
new FAIL: gdb.ada/bp_enum_homonym.exp: compilation p.adb
new FAIL: gdb.ada/bp_fun_addr.exp: compilation bp_fun_addr.adb
new FAIL: gdb.ada/bp_inlined_func.exp: compilation foo.adb
new FAIL: gdb.ada/bp_on_var.exp: compilation foo.adb
new FAIL: gdb.ada/bp_range_type.exp: compilation foo.adb
new FAIL: gdb.ada/bp_reset.exp: compilation foo.adb
new FAIL: gdb.ada/byte_packed_arr.exp: compilation reprod_main.adb
new FAIL: gdb.ada/catch_assert_if.exp: compilation bla.adb
new FAIL: gdb.ada/catch_ex.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/char_enum.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/char_enum.exp: print Char_Enum_Type'
new UNRESOLVED: gdb.ada/char_enum.exp: print pck.Global_Enum_Type'
new UNRESOLVED: gdb.ada/char_enum.exp: ptype Char_Enum_Type
new UNRESOLVED: gdb.ada/char_enum.exp: ptype pck.Global_Enum_Type
new FAIL: gdb.ada/char_param.exp: compilation foo.adb
new FAIL: gdb.ada/complete.exp: compilation foo.adb
new FAIL: gdb.ada/cond_lang.exp: compilation a.adb
new FAIL: gdb.ada/dgopt.exp: compilation x.adb
new FAIL: gdb.ada/disc_arr_bound.exp: compilation foo_n612_026.adb
new FAIL: gdb.ada/display_nested.exp: compilation foo.adb
new FAIL: gdb.ada/dyn_arrayidx.exp: compilation foo.adb
new FAIL: gdb.ada/dyn_loc.exp: compilation p.adb
new FAIL: gdb.ada/dyn_stride.exp: compilation foo.adb
new FAIL: gdb.ada/enum_idx_packed.exp: compilation foo.adb
new FAIL: gdb.ada/excep_handle.exp: compilation foo.adb
new FAIL: gdb.ada/expr_delims.exp: check that watchpoint is set correctly.
new UNRESOLVED: gdb.ada/expr_delims.exp: continue
new FAIL: gdb.ada/expr_delims.exp: print variable 'thread'
new FAIL: gdb.ada/expr_delims.exp: set conditional watchpoint.
new FAIL: gdb.ada/expr_delims.exp: set plain watchpoint on variable 'thread'
new FAIL: gdb.ada/expr_with_funcall.exp: compilation expr_r821_013.adb
new FAIL: gdb.ada/exprs.exp: compilation p.adb
new FAIL: gdb.ada/fin_fun_out.exp: compilation foo_o525_013.adb
new FAIL: gdb.ada/fixed_cmp.exp: compilation fixed.adb
new FAIL: gdb.ada/fixed_points.exp: compilation fixed_points.adb
new FAIL: gdb.ada/float_param.exp: compilation foo.adb
new FAIL: gdb.ada/formatted_ref.exp: compilation formatted_ref.adb
new FAIL: gdb.ada/frame_arg_lang.exp: compilation bla.adb
new FAIL: gdb.ada/frame_args.exp: compilation foo.adb
new FAIL: gdb.ada/fullname_bp.exp: compilation foo.adb
new FAIL: gdb.ada/fun_addr.exp: compilation foo.adb
new FAIL: gdb.ada/fun_in_declare.exp: compilation foo.adb
new FAIL: gdb.ada/fun_overload_menu.exp: compilation foo.adb
new FAIL: gdb.ada/fun_renaming.exp: compilation fun_renaming.adb
new FAIL: gdb.ada/funcall_param.exp: compilation foo.adb
new FAIL: gdb.ada/funcall_ptr.exp: compilation foo.adb
new FAIL: gdb.ada/funcall_ref.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/homonym.exp: break at BREAK_2
new UNRESOLVED: gdb.ada/homonym.exp: continue until BREAK_2
new UNRESOLVED: gdb.ada/homonym.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/homonym.exp: print lcl at BREAK_1
new UNRESOLVED: gdb.ada/homonym.exp: print lcl at BREAK_2
new UNRESOLVED: gdb.ada/homonym.exp: ptype int_type at BREAK_1
new UNRESOLVED: gdb.ada/homonym.exp: ptype lcl at BREAK_1
new UNRESOLVED: gdb.ada/homonym.exp: ptype lcl at BREAK_2
new UNRESOLVED: gdb.ada/homonym.exp: ptype local_type at BREAK_1
new UNRESOLVED: gdb.ada/homonym.exp: ptype local_type at BREAK_2
new UNRESOLVED: gdb.ada/homonym.exp: ptype local_type_subtype at BREAK_1
new UNRESOLVED: gdb.ada/homonym.exp: ptype local_type_subtype at BREAK_2
new UNRESOLVED: gdb.ada/homonym.exp: set breakpoint at <homonym__get_value>
new UNRESOLVED: gdb.ada/homonym.exp: set breakpoint at Get_Value
new UNRESOLVED: gdb.ada/homonym.exp: set breakpoint at homonym.adb:Get_Value
new FAIL: gdb.ada/info_addr_mixed_case.exp: compilation foo.adb
new FAIL: gdb.ada/info_exc.exp: compilation foo.adb
new FAIL: gdb.ada/info_locals_renaming.exp: compilation foo.adb
new FAIL: gdb.ada/int_deref.exp: compilation foo.adb
new FAIL: gdb.ada/interface.exp: compilation foo.adb
new FAIL: gdb.ada/iwide.exp: compilation p.adb
new FAIL: gdb.ada/lang_switch.exp: compilation lang_switch.adb
new FAIL: gdb.ada/length_cond.exp: compilation length_cond.adb
new FAIL: gdb.ada/maint_with_ada.exp: compilation var_arr_typedef.adb
new FAIL: gdb.ada/mi_catch_assert.exp: compilation bla.adb
new FAIL: gdb.ada/mi_catch_ex_hand.exp: compilation foo.adb
new FAIL: gdb.ada/mi_ex_cond.exp: compilation foo.adb
new FAIL: gdb.ada/mi_exc_info.exp: compilation foo.adb
new FAIL: gdb.ada/mi_interface.exp: compilation foo.adb
new FAIL: gdb.ada/mi_ref_changeable.exp: compilation foo_rb20_056.adb
new FAIL: gdb.ada/mi_string_access.exp: compilation bar.adb
new FAIL: gdb.ada/mi_task_arg.exp: compilation task_switch.adb
new FAIL: gdb.ada/mi_task_info.exp: compilation task_switch.adb
new FAIL: gdb.ada/mi_var_array.exp: compilation bar.adb
new FAIL: gdb.ada/mi_var_union.exp: compilation bar.adb
new FAIL: gdb.ada/mod_from_name.exp: compilation foo.adb
new FAIL: gdb.ada/n_arr_bound.exp: compilation foo.adb
new FAIL: gdb.ada/notcplusplus.exp: compilation foo.adb
new FAIL: gdb.ada/null_array.exp: compilation foo.adb
new FAIL: gdb.ada/null_record.exp: compilation null_record.adb
new FAIL: gdb.ada/operator_bp.exp: compilation ops_test.adb
new FAIL: gdb.ada/optim_drec.exp: compilation foo.adb
new FAIL: gdb.ada/out_of_line_in_inlined.exp: compilation foo_o224_021.adb
new FAIL: gdb.ada/packed_array.exp: compilation pa.adb
new FAIL: gdb.ada/packed_array_assign.exp: compilation tester.adb
new FAIL: gdb.ada/packed_tagged.exp: compilation comp_bug.adb
new FAIL: gdb.ada/pckd_arr_ren.exp: compilation foo.adb
new FAIL: gdb.ada/pckd_neg.exp: compilation foo_o508_021.adb
new FAIL: gdb.ada/pkd_arr_elem.exp: compilation failure.adb
new FAIL: gdb.ada/pp-rec-component.exp: compilation foo.adb
new FAIL: gdb.ada/print_chars.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/print_pc.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/print_pc.exp: p /x $pc
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: ptype 3 * 2.0
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: ptype 3 / 2.0
new UNRESOLVED: gdb.ada/ptype_arith_binop.exp: set lang ada
new FAIL: gdb.ada/ptype_array.exp: compilation foo.adb
new FAIL: gdb.ada/ptype_field.exp: compilation foo.adb
new FAIL: gdb.ada/ptype_tagged_param.exp: compilation foo.adb
new FAIL: gdb.ada/py_range.exp: compilation foo.adb
new FAIL: gdb.ada/py_taft.exp: compilation main.adb
new FAIL: gdb.ada/rdv_wait.exp: compilation foo.adb
new FAIL: gdb.ada/rec_comp.exp: compilation bar_o203_012.adb
new FAIL: gdb.ada/rec_return.exp: compilation foo.adb
new FAIL: gdb.ada/ref_param.exp: compilation foo.adb
new FAIL: gdb.ada/ref_tick_size.exp: compilation p.adb
new FAIL: gdb.ada/repeat_dyn.exp: compilation foo_oc22_002.adb
new FAIL: gdb.ada/same_component_name.exp: compilation foo.adb
new FAIL: gdb.ada/same_enum.exp: compilation a.adb
new UNRESOLVED: gdb.ada/scoped_watch.exp: break foo_p708_025.adb:22
new UNRESOLVED: gdb.ada/scoped_watch.exp: break pck.increment
new UNRESOLVED: gdb.ada/scoped_watch.exp: continuing to breakpoint in pck.increment
new UNRESOLVED: gdb.ada/scoped_watch.exp: continuing to breakpoint on call to Do_Nothing
new UNRESOLVED: gdb.ada/scoped_watch.exp: continuing to watchpoint hit
new UNRESOLVED: gdb.ada/scoped_watch.exp: continuing until watchpoint automatic deletion
new UNRESOLVED: gdb.ada/scoped_watch.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/scoped_watch.exp: next to call to Call_Me
new UNRESOLVED: gdb.ada/scoped_watch.exp: watch result
new FAIL: gdb.ada/set_pckd_arr_elt.exp: compilation foo.adb
new FAIL: gdb.ada/set_wstr.exp: compilation a.adb
new FAIL: gdb.ada/small_reg_param.exp: compilation foo.adb
new FAIL: gdb.ada/str_binop_equal.exp: compilation foo_p211_061.adb
new FAIL: gdb.ada/str_uninit.exp: compilation parse.adb
new FAIL: gdb.ada/sym_print_name.exp: compilation foo.adb
new FAIL: gdb.ada/taft_type.exp: compilation p.adb
new FAIL: gdb.ada/tagged.exp: compilation foo.adb
new FAIL: gdb.ada/tagged_access.exp: compilation p.adb
new FAIL: gdb.ada/tagged_not_init.exp: compilation foo.adb
new FAIL: gdb.ada/task_bp.exp: compilation foo.adb
new FAIL: gdb.ada/task_switch_in_core.exp: compilation crash.adb
new FAIL: gdb.ada/tasks.exp: compilation foo.adb
new FAIL: gdb.ada/tick_length_array_enum_idx.exp: compilation foo_n207_004.adb
new FAIL: gdb.ada/type_coercion.exp: compilation assign.adb
new FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/uninitialized_vars.exp: info locals
new FAIL: gdb.ada/var_arr_attrs.exp: compilation foo_o115_002.adb
new UNRESOLVED: gdb.ada/var_rec_arr.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/var_rec_arr.exp: print a1
new UNRESOLVED: gdb.ada/var_rec_arr.exp: print a2
new UNRESOLVED: gdb.ada/var_rec_arr.exp: ptype a1
new FAIL: gdb.ada/variant_record_packed_array.exp: compilation foo.adb
new FAIL: gdb.ada/varsize_limit.exp: compilation vsizelim.adb
new FAIL: gdb.ada/vla.exp: compilation vla.adb
new FAIL: gdb.ada/watch_minus_l.exp: compilation foo_ra10_006.adb
new FAIL: gdb.ada/whatis_array_val.exp: compilation foo.adb
new FAIL: gdb.ada/widewide.exp: compilation foo.adb
new FAIL: gdb.ada/win_fu_syms.exp: compilation foo.adb
new UNRESOLVED: gdb.arch/aarch64-fp.exp: could not run to main
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: set tdesc filename $srcdir/gdb.arch/arc-tdesc-cpu.xml
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: set tdesc filename /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.arch/arc-tdesc-cpu/trivial.xml
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: setting HS architecture
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: .text is readable
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: complete set architecture i386
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: complete set gnutarget
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: load core file
new UNRESOLVED: gdb.base/alias.exp: -a print elements 47
new UNRESOLVED: gdb.base/alias.exp: abbrev -a not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set2 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set3 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set4 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set5 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: abbrev set6 not present in help command list
new UNRESOLVED: gdb.base/alias.exp: alias -a -- -a = set
new UNRESOLVED: gdb.base/alias.exp: alias -a -- set6 = set
new UNRESOLVED: gdb.base/alias.exp: alias -a set2=set
new UNRESOLVED: gdb.base/alias.exp: alias -a set3= set
new UNRESOLVED: gdb.base/alias.exp: alias -a set4 =set
new UNRESOLVED: gdb.base/alias.exp: alias -a set5 = set
new UNRESOLVED: gdb.base/alias.exp: alias assigne
new UNRESOLVED: gdb.base/alias.exp: alias assigne imprime
new UNRESOLVED: gdb.base/alias.exp: alias assigne imprime limite-elements
new UNRESOLVED: gdb.base/alias.exp: alias foo=bar
new UNRESOLVED: gdb.base/alias.exp: alias set pr elms = set p elem
new UNRESOLVED: gdb.base/alias.exp: alias set print max-elements using assigne imprime
new UNRESOLVED: gdb.base/alias.exp: alias set2=set
new UNRESOLVED: gdb.base/alias.exp: alias spe = set p elem
new UNRESOLVED: gdb.base/alias.exp: assigne imprime elements 53
new UNRESOLVED: gdb.base/alias.exp: assigne imprime limite-elements 54
new UNRESOLVED: gdb.base/alias.exp: assigne imprime prefix not defined
new UNRESOLVED: gdb.base/alias.exp: assigne print elements 52
new UNRESOLVED: gdb.base/alias.exp: help set print
new UNRESOLVED: gdb.base/alias.exp: mismatched length
new UNRESOLVED: gdb.base/alias.exp: mismatched prefix
new UNRESOLVED: gdb.base/alias.exp: set imprime elements 55
new UNRESOLVED: gdb.base/alias.exp: set imprime prefix not defined
new UNRESOLVED: gdb.base/alias.exp: set pr elms 51
new UNRESOLVED: gdb.base/alias.exp: set print limite-elements 56
new UNRESOLVED: gdb.base/alias.exp: set print max-elements 57
new UNRESOLVED: gdb.base/alias.exp: set2 print elements 42
new UNRESOLVED: gdb.base/alias.exp: set3 print elements 43
new UNRESOLVED: gdb.base/alias.exp: set4 print elements 44
new UNRESOLVED: gdb.base/alias.exp: set5 print elements 45
new UNRESOLVED: gdb.base/alias.exp: set6 print elements 46
new UNRESOLVED: gdb.base/alias.exp: spe 50
new UNRESOLVED: gdb.base/alias.exp: verify -a
new UNRESOLVED: gdb.base/alias.exp: verify 52
new UNRESOLVED: gdb.base/alias.exp: verify 53
new UNRESOLVED: gdb.base/alias.exp: verify 54
new UNRESOLVED: gdb.base/alias.exp: verify 55
new UNRESOLVED: gdb.base/alias.exp: verify 56
new UNRESOLVED: gdb.base/alias.exp: verify 57
new UNRESOLVED: gdb.base/alias.exp: verify set pr elms
new UNRESOLVED: gdb.base/alias.exp: verify set2
new UNRESOLVED: gdb.base/alias.exp: verify set3
new UNRESOLVED: gdb.base/alias.exp: verify set4
new UNRESOLVED: gdb.base/alias.exp: verify set5
new UNRESOLVED: gdb.base/alias.exp: verify set6
new UNRESOLVED: gdb.base/alias.exp: verify spe
new FAIL: gdb.base/all-architectures-0.exp: all passed
new FAIL: gdb.base/all-architectures-0.exp: at least one architecture
new FAIL: gdb.base/all-architectures-0.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-0.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-0.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-0.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-1.exp: all passed
new FAIL: gdb.base/all-architectures-1.exp: at least one architecture
new FAIL: gdb.base/all-architectures-1.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-1.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-1.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-1.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-2.exp: all passed
new FAIL: gdb.base/all-architectures-2.exp: at least one architecture
new FAIL: gdb.base/all-architectures-2.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-2.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-2.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-2.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-3.exp: all passed
new FAIL: gdb.base/all-architectures-3.exp: at least one architecture
new FAIL: gdb.base/all-architectures-3.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-3.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-3.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-3.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-4.exp: all passed
new FAIL: gdb.base/all-architectures-4.exp: at least one architecture
new FAIL: gdb.base/all-architectures-4.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-4.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-4.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-4.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-5.exp: all passed
new FAIL: gdb.base/all-architectures-5.exp: at least one architecture
new FAIL: gdb.base/all-architectures-5.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-5.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-5.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-5.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-6.exp: all passed
new FAIL: gdb.base/all-architectures-6.exp: at least one architecture
new FAIL: gdb.base/all-architectures-6.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-6.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: set max-completions unlimited
new FAIL: gdb.base/all-architectures-7.exp: all passed
new FAIL: gdb.base/all-architectures-7.exp: at least one architecture
new FAIL: gdb.base/all-architectures-7.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-7.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-7.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-7.exp: set max-completions unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: break main
new UNRESOLVED: gdb.base/argv0-symlink.exp: p argc
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print elements 200
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print elements unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print repeats 200
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print repeats unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: show print elements
new UNRESOLVED: gdb.base/argv0-symlink.exp: show print repeats
new UNRESOLVED: gdb.base/bad-file.exp: directory
new UNRESOLVED: gdb.base/bad-file.exp: neither file nor directory
new UNRESOLVED: gdb.base/bad-file.exp: non-existent file
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "info source": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "set not-a-thing 4" -x good-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "set not-a-thing 4": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -jslkflsdjlkfjlksdjf: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x bad-commands -ex "info source": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x bad-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands -ex "set not-a-thing 4": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands -x bad-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch: spawn
new UNRESOLVED: gdb.base/bitops.exp: print value of !0
new UNRESOLVED: gdb.base/bitops.exp: print value of !1
new UNRESOLVED: gdb.base/bitops.exp: print value of !10
new UNRESOLVED: gdb.base/bitops.exp: print value of !100
new UNRESOLVED: gdb.base/bitops.exp: print value of !1000
new UNRESOLVED: gdb.base/bitops.exp: print value of !2
new UNRESOLVED: gdb.base/bitops.exp: print value of
new UNRESOLVED: gdb.base/bitops.exp: print value of -!0
new UNRESOLVED: gdb.base/bitops.exp: print value of -1 < 0 > 1
new UNRESOLVED: gdb.base/bitops.exp: print value of -3>4
new UNRESOLVED: gdb.base/bitops.exp: print value of 0 == 8 > 128 >> 1 + 2 * 2
new UNRESOLVED: gdb.base/bitops.exp: print value of 0 || 1 && 0 | 0 ^ 0 == 8
new UNRESOLVED: gdb.base/bitops.exp: print value of 0 || 1 && 0 | 0 ^ 0 == 8 > 128 >>1 +2 *2
new UNRESOLVED: gdb.base/bitops.exp: print value of 0.0 || 0
new UNRESOLVED: gdb.base/bitops.exp: print value of 0.0 || 1.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 1.0 || 0
new UNRESOLVED: gdb.base/bitops.exp: print value of 10 & 5
new UNRESOLVED: gdb.base/bitops.exp: print value of 10 ^ 5
new UNRESOLVED: gdb.base/bitops.exp: print value of 10 | 5
new UNRESOLVED: gdb.base/bitops.exp: print value of 15 ^ 10 ^ 5 ^ 7
new UNRESOLVED: gdb.base/bitops.exp: print value of 2 > -3
new UNRESOLVED: gdb.base/bitops.exp: print value of 3 * 2 / 4.0 * 2.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3!=3.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3!=5.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3.5 < -4.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3.5 < 4.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3==3.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3==4.0
new UNRESOLVED: gdb.base/bitops.exp: print value of 3>=2.5
new UNRESOLVED: gdb.base/bitops.exp: print value of 3>=4.5
new UNRESOLVED: gdb.base/bitops.exp: print value of 8 << 2 >> 4
new UNRESOLVED: gdb.base/bitops.exp: print value of ~-!0
new UNRESOLVED: gdb.base/command-line-input.exp: print 1\\n + 2
new UNRESOLVED: gdb.base/command-line-input.exp: print 1\\n2
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: cmd complete ""
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: set max-completions 1
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: show editing
new UNRESOLVED: gdb.base/complete-empty.exp: show editing
new UNRESOLVED: gdb.base/default.exp:
new UNRESOLVED: gdb.base/default.exp: add-symbol-file
new UNRESOLVED: gdb.base/default.exp: append
new UNRESOLVED: gdb.base/default.exp: append binary
new UNRESOLVED: gdb.base/default.exp: append binary memory
new UNRESOLVED: gdb.base/default.exp: append binary value
new UNRESOLVED: gdb.base/default.exp: append memory
new UNRESOLVED: gdb.base/default.exp: append value
new UNRESOLVED: gdb.base/default.exp: call
new UNRESOLVED: gdb.base/default.exp: catch
new UNRESOLVED: gdb.base/default.exp: cd
new UNRESOLVED: gdb.base/default.exp: check if python 3
new UNRESOLVED: gdb.base/default.exp: clear
new UNRESOLVED: gdb.base/default.exp: commands
new UNRESOLVED: gdb.base/default.exp: condition
new UNRESOLVED: gdb.base/default.exp: continue
new UNRESOLVED: gdb.base/default.exp: continue "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: core-file
new UNRESOLVED: gdb.base/default.exp: define
new UNRESOLVED: gdb.base/default.exp: delete
new UNRESOLVED: gdb.base/default.exp: delete "d" abbreviation
new UNRESOLVED: gdb.base/default.exp: delete breakpoints
new UNRESOLVED: gdb.base/default.exp: delete display prompt
new UNRESOLVED: gdb.base/default.exp: detach
new UNRESOLVED: gdb.base/default.exp: directory prompt
new UNRESOLVED: gdb.base/default.exp: disable
new UNRESOLVED: gdb.base/default.exp: disable "dis" abbreviation
new UNRESOLVED: gdb.base/default.exp: disable "disa" abbreviation
new UNRESOLVED: gdb.base/default.exp: disable breakpoints
new UNRESOLVED: gdb.base/default.exp: disable display
new UNRESOLVED: gdb.base/default.exp: disassemble
new UNRESOLVED: gdb.base/default.exp: display
new UNRESOLVED: gdb.base/default.exp: do
new UNRESOLVED: gdb.base/default.exp: document
new UNRESOLVED: gdb.base/default.exp: down
new UNRESOLVED: gdb.base/default.exp: down-silently
new UNRESOLVED: gdb.base/default.exp: dump
new UNRESOLVED: gdb.base/default.exp: dump binary
new UNRESOLVED: gdb.base/default.exp: dump binary memory
new UNRESOLVED: gdb.base/default.exp: dump binary value
new UNRESOLVED: gdb.base/default.exp: dump ihex
new UNRESOLVED: gdb.base/default.exp: dump ihex memory
new UNRESOLVED: gdb.base/default.exp: dump ihex value
new UNRESOLVED: gdb.base/default.exp: dump memory
new UNRESOLVED: gdb.base/default.exp: dump srec
new UNRESOLVED: gdb.base/default.exp: dump srec memory
new UNRESOLVED: gdb.base/default.exp: dump srec value
new UNRESOLVED: gdb.base/default.exp: dump tekhex
new UNRESOLVED: gdb.base/default.exp: dump tekhex memory
new UNRESOLVED: gdb.base/default.exp: dump tekhex value
new UNRESOLVED: gdb.base/default.exp: dump value
new UNRESOLVED: gdb.base/default.exp: echo
new UNRESOLVED: gdb.base/default.exp: enable
new UNRESOLVED: gdb.base/default.exp: enable breakpoints
new UNRESOLVED: gdb.base/default.exp: enable breakpoints delete
new UNRESOLVED: gdb.base/default.exp: enable breakpoints once
new UNRESOLVED: gdb.base/default.exp: enable delete
new UNRESOLVED: gdb.base/default.exp: enable display
new UNRESOLVED: gdb.base/default.exp: enable once
new UNRESOLVED: gdb.base/default.exp: fg
new UNRESOLVED: gdb.base/default.exp: finish
new UNRESOLVED: gdb.base/default.exp: forward-search
new UNRESOLVED: gdb.base/default.exp: frame
new UNRESOLVED: gdb.base/default.exp: frame "f" abbreviation
new UNRESOLVED: gdb.base/default.exp: gcore
new UNRESOLVED: gdb.base/default.exp: generate-core-file
new UNRESOLVED: gdb.base/default.exp: handle
new UNRESOLVED: gdb.base/default.exp: help
new UNRESOLVED: gdb.base/default.exp: help "h" abbreviation
new UNRESOLVED: gdb.base/default.exp: ignore
new UNRESOLVED: gdb.base/default.exp: info
new UNRESOLVED: gdb.base/default.exp: info "i" abbreviation
new UNRESOLVED: gdb.base/default.exp: info address
new UNRESOLVED: gdb.base/default.exp: info all-registers
new UNRESOLVED: gdb.base/default.exp: info args
new UNRESOLVED: gdb.base/default.exp: info bogus-gdb-command
new UNRESOLVED: gdb.base/default.exp: info breakpoints
new UNRESOLVED: gdb.base/default.exp: info copying
new UNRESOLVED: gdb.base/default.exp: info display
new UNRESOLVED: gdb.base/default.exp: info files
new UNRESOLVED: gdb.base/default.exp: info float
new UNRESOLVED: gdb.base/default.exp: info frame
new UNRESOLVED: gdb.base/default.exp: info frame "f" abbreviation
new UNRESOLVED: gdb.base/default.exp: info functions
new UNRESOLVED: gdb.base/default.exp: info locals
new UNRESOLVED: gdb.base/default.exp: info program
new UNRESOLVED: gdb.base/default.exp: info registers
new UNRESOLVED: gdb.base/default.exp: info set
new UNRESOLVED: gdb.base/default.exp: info source
new UNRESOLVED: gdb.base/default.exp: info sources
new UNRESOLVED: gdb.base/default.exp: info stack
new UNRESOLVED: gdb.base/default.exp: info stack "s" abbreviation
new UNRESOLVED: gdb.base/default.exp: info symbol
new UNRESOLVED: gdb.base/default.exp: info target
new UNRESOLVED: gdb.base/default.exp: info terminal
new UNRESOLVED: gdb.base/default.exp: info threads
new UNRESOLVED: gdb.base/default.exp: info types
new UNRESOLVED: gdb.base/default.exp: info variables
new UNRESOLVED: gdb.base/default.exp: info vector
new UNRESOLVED: gdb.base/default.exp: info warranty
new UNRESOLVED: gdb.base/default.exp: info watchpoints
new UNRESOLVED: gdb.base/default.exp: inspect
new UNRESOLVED: gdb.base/default.exp: jump
new UNRESOLVED: gdb.base/default.exp: kill
new UNRESOLVED: gdb.base/default.exp: list
new UNRESOLVED: gdb.base/default.exp: list "l" abbreviation
new UNRESOLVED: gdb.base/default.exp: load
new UNRESOLVED: gdb.base/default.exp: next
new UNRESOLVED: gdb.base/default.exp: next "n" abbreviation
new UNRESOLVED: gdb.base/default.exp: nexti
new UNRESOLVED: gdb.base/default.exp: nexti "ni" abbreviation
new UNRESOLVED: gdb.base/default.exp: output
new UNRESOLVED: gdb.base/default.exp: overlay
new UNRESOLVED: gdb.base/default.exp: overlay auto
new UNRESOLVED: gdb.base/default.exp: overlay list
new UNRESOLVED: gdb.base/default.exp: overlay manual #1
new UNRESOLVED: gdb.base/default.exp: overlay manual #2
new UNRESOLVED: gdb.base/default.exp: overlay map #1
new UNRESOLVED: gdb.base/default.exp: overlay map #2
new UNRESOLVED: gdb.base/default.exp: overlay off
new UNRESOLVED: gdb.base/default.exp: overlay on
new UNRESOLVED: gdb.base/default.exp: overlay unmap #1
new UNRESOLVED: gdb.base/default.exp: overlay unmap #2
new UNRESOLVED: gdb.base/default.exp: print
new UNRESOLVED: gdb.base/default.exp: print "p" abbreviation
new UNRESOLVED: gdb.base/default.exp: printf
new UNRESOLVED: gdb.base/default.exp: ptype
new UNRESOLVED: gdb.base/default.exp: pwd
new UNRESOLVED: gdb.base/default.exp: rbreak
new UNRESOLVED: gdb.base/default.exp: restore
new UNRESOLVED: gdb.base/default.exp: return
new UNRESOLVED: gdb.base/default.exp: reverse-search
new UNRESOLVED: gdb.base/default.exp: search
new UNRESOLVED: gdb.base/default.exp: section
new UNRESOLVED: gdb.base/default.exp: set
new UNRESOLVED: gdb.base/default.exp: set annotate
new UNRESOLVED: gdb.base/default.exp: set args
new UNRESOLVED: gdb.base/default.exp: set check "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check "ch" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check "check" abbreviation
new UNRESOLVED: gdb.base/default.exp: set check range
new UNRESOLVED: gdb.base/default.exp: set check type
new UNRESOLVED: gdb.base/default.exp: set complaints
new UNRESOLVED: gdb.base/default.exp: set confirm
new UNRESOLVED: gdb.base/default.exp: set environment
new UNRESOLVED: gdb.base/default.exp: set height
new UNRESOLVED: gdb.base/default.exp: set history
new UNRESOLVED: gdb.base/default.exp: set history expansion
new UNRESOLVED: gdb.base/default.exp: set history filename
new UNRESOLVED: gdb.base/default.exp: set history save
new UNRESOLVED: gdb.base/default.exp: set history save off
new UNRESOLVED: gdb.base/default.exp: set history size
new UNRESOLVED: gdb.base/default.exp: set language
new UNRESOLVED: gdb.base/default.exp: set listsize
new UNRESOLVED: gdb.base/default.exp: set print
new UNRESOLVED: gdb.base/default.exp: set print "p" abbreviation
new UNRESOLVED: gdb.base/default.exp: set print "pr" abbreviation
new UNRESOLVED: gdb.base/default.exp: set print address
new UNRESOLVED: gdb.base/default.exp: set print array
new UNRESOLVED: gdb.base/default.exp: set print asm-demangle
new UNRESOLVED: gdb.base/default.exp: set print demangle
new UNRESOLVED: gdb.base/default.exp: set print elements
new UNRESOLVED: gdb.base/default.exp: set print object
new UNRESOLVED: gdb.base/default.exp: set print pretty
new UNRESOLVED: gdb.base/default.exp: set print sevenbit-strings
new UNRESOLVED: gdb.base/default.exp: set print union
new UNRESOLVED: gdb.base/default.exp: set print vtbl
new UNRESOLVED: gdb.base/default.exp: set radix
new UNRESOLVED: gdb.base/default.exp: set the history filename
new UNRESOLVED: gdb.base/default.exp: set variable
new UNRESOLVED: gdb.base/default.exp: set verbose
new UNRESOLVED: gdb.base/default.exp: set width
new UNRESOLVED: gdb.base/default.exp: set write
new UNRESOLVED: gdb.base/default.exp: shell echo Hi dad!
new UNRESOLVED: gdb.base/default.exp: show
new UNRESOLVED: gdb.base/default.exp: show annotate
new UNRESOLVED: gdb.base/default.exp: show args
new UNRESOLVED: gdb.base/default.exp: show check "c" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check "ch" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check "check" abbreviation
new UNRESOLVED: gdb.base/default.exp: show check range
new UNRESOLVED: gdb.base/default.exp: show check type
new UNRESOLVED: gdb.base/default.exp: show commands
new UNRESOLVED: gdb.base/default.exp: show complaints
new UNRESOLVED: gdb.base/default.exp: show confirm
new UNRESOLVED: gdb.base/default.exp: show convenience
new UNRESOLVED: gdb.base/default.exp: show directories
new UNRESOLVED: gdb.base/default.exp: show editing
new UNRESOLVED: gdb.base/default.exp: show height
new UNRESOLVED: gdb.base/default.exp: show history
new UNRESOLVED: gdb.base/default.exp: show history expansion
new UNRESOLVED: gdb.base/default.exp: show history filename
new UNRESOLVED: gdb.base/default.exp: show history save
new UNRESOLVED: gdb.base/default.exp: show history size
new UNRESOLVED: gdb.base/default.exp: show language
new UNRESOLVED: gdb.base/default.exp: show listsize
new UNRESOLVED: gdb.base/default.exp: show p
new UNRESOLVED: gdb.base/default.exp: show paths
new UNRESOLVED: gdb.base/default.exp: show pr
new UNRESOLVED: gdb.base/default.exp: show print
new UNRESOLVED: gdb.base/default.exp: show print address
new UNRESOLVED: gdb.base/default.exp: show print array
new UNRESOLVED: gdb.base/default.exp: show print asm-demangle
new UNRESOLVED: gdb.base/default.exp: show print demangle
new UNRESOLVED: gdb.base/default.exp: show print elements
new UNRESOLVED: gdb.base/default.exp: show print object
new UNRESOLVED: gdb.base/default.exp: show print pretty
new UNRESOLVED: gdb.base/default.exp: show print sevenbit-strings
new UNRESOLVED: gdb.base/default.exp: show print union
new UNRESOLVED: gdb.base/default.exp: show print vtbl
new UNRESOLVED: gdb.base/default.exp: show prompt
new UNRESOLVED: gdb.base/default.exp: show radix
new UNRESOLVED: gdb.base/default.exp: show user
new UNRESOLVED: gdb.base/default.exp: show values
new UNRESOLVED: gdb.base/default.exp: show verbose
new UNRESOLVED: gdb.base/default.exp: show version
new UNRESOLVED: gdb.base/default.exp: show width
new UNRESOLVED: gdb.base/default.exp: show write
new UNRESOLVED: gdb.base/default.exp: signal
new UNRESOLVED: gdb.base/default.exp: source
new UNRESOLVED: gdb.base/default.exp: step "s" abbreviation #1
new UNRESOLVED: gdb.base/default.exp: step "s" abbreviation #2
new UNRESOLVED: gdb.base/default.exp: step #1
new UNRESOLVED: gdb.base/default.exp: step #2
new UNRESOLVED: gdb.base/default.exp: stepi
new UNRESOLVED: gdb.base/default.exp: stepi "si" abbreviation
new UNRESOLVED: gdb.base/default.exp: symbol-file
new UNRESOLVED: gdb.base/default.exp: target
new UNRESOLVED: gdb.base/default.exp: target native
new UNRESOLVED: gdb.base/default.exp: tbreak
new UNRESOLVED: gdb.base/default.exp: thread
new UNRESOLVED: gdb.base/default.exp: thread apply
new UNRESOLVED: gdb.base/default.exp: thread find
new UNRESOLVED: gdb.base/default.exp: thread name
new UNRESOLVED: gdb.base/default.exp: undisplay prompt
new UNRESOLVED: gdb.base/default.exp: unset
new UNRESOLVED: gdb.base/default.exp: unset environment prompt
new UNRESOLVED: gdb.base/default.exp: until
new UNRESOLVED: gdb.base/default.exp: until "u" abbreviation
new UNRESOLVED: gdb.base/default.exp: up-silently
new UNRESOLVED: gdb.base/default.exp: verify python support
new UNRESOLVED: gdb.base/default.exp: watch
new UNRESOLVED: gdb.base/default.exp: whatis
new UNRESOLVED: gdb.base/default.exp: where
new UNRESOLVED: gdb.base/default.exp: x
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567890123456789012345678901234dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567890123456dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567890123456.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567890123456789012345678901234.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567890123456789012345678901234dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567890123456dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E384dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E6144dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E96df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2147483648ll
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2147483648ull
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2ll
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 4294967296ull
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd < 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd < 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df + 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df + 1.2f
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df < 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df < 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df > 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl < 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl < 1.3dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.3dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.3df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl > 2
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd * 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd + 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd - 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd / 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df * 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df + 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df - 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df / 1.2df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl * 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl + 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl - 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl / 1.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567890123456.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567890123456789012345678901234.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 + 1.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 > 1.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 > 3.1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.1dd + 2.7df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.1df + 2.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.3dd + 2.2dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.3dl + 2.2dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.6df + 2.7dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.6dl + 2.7df
new UNRESOLVED: gdb.base/dfp-exprs.exp: p 3 + 2.1dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 1.2df + 1
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2 + 1.7dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dd + 2.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dd + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.dd
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.df
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dl + 2.dl
new UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 3 + 2.1dl
new UNRESOLVED: gdb.base/echo.exp: echo test
new UNRESOLVED: gdb.base/empty_exe.exp: file ''
new UNRESOLVED: gdb.base/empty_exe.exp: print 1
new UNRESOLVED: gdb.base/endian.exp: auto target endianness
new UNRESOLVED: gdb.base/endian.exp: auto target endianness big
new UNRESOLVED: gdb.base/endian.exp: auto target endianness little
new UNRESOLVED: gdb.base/endian.exp: default target endianness
new UNRESOLVED: gdb.base/endian.exp: get target endianness
new FAIL: gdb.base/endian.exp: override auto target endianness big
new FAIL: gdb.base/endian.exp: override auto target endianness little
new UNRESOLVED: gdb.base/endian.exp: override target endianness big
new FAIL: gdb.base/endian.exp: override target endianness little
new UNRESOLVED: gdb.base/endian.exp: previously big default executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously big default no executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously little default executable endianness
new UNRESOLVED: gdb.base/endian.exp: previously little default no executable endianness
new UNRESOLVED: gdb.base/endian.exp: set target endianness
new UNRESOLVED: gdb.base/endian.exp: set target endianness big
new UNRESOLVED: gdb.base/endian.exp: set target endianness little
new UNRESOLVED: gdb.base/environ.exp: all environment variables have been unset
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable previously undefined
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable using = syntax
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable with trailing equals
new UNRESOLVED: gdb.base/environ.exp: confirm set environment variable with trailing whitespace
new UNRESOLVED: gdb.base/environ.exp: confirm unset environment variable worked
new UNRESOLVED: gdb.base/environ.exp: set environment variable
new UNRESOLVED: gdb.base/environ.exp: set environment variable previously undefined
new UNRESOLVED: gdb.base/environ.exp: set environment variable to null value
new UNRESOLVED: gdb.base/environ.exp: set environment variable using = syntax
new UNRESOLVED: gdb.base/environ.exp: set environment variable with trailing equals
new UNRESOLVED: gdb.base/environ.exp: set environment variable with trailing whitespace
new UNRESOLVED: gdb.base/environ.exp: set environment without arguments
new UNRESOLVED: gdb.base/environ.exp: set environment without variable name
new UNRESOLVED: gdb.base/environ.exp: set path works properly
new UNRESOLVED: gdb.base/environ.exp: show environment works
new UNRESOLVED: gdb.base/environ.exp: show non-existent environment variable
new UNRESOLVED: gdb.base/environ.exp: show null environment variable
new UNRESOLVED: gdb.base/environ.exp: show paths works properly
new UNRESOLVED: gdb.base/environ.exp: unset all environment variables
new UNRESOLVED: gdb.base/environ.exp: unset environment variable
new UNRESOLVED: gdb.base/eval.exp: first eval.
new UNRESOLVED: gdb.base/eval.exp: initialize $a.
new UNRESOLVED: gdb.base/eval.exp: second eval.
new UNRESOLVED: gdb.base/finish-pretty.exp: can't run to foo
new UNRESOLVED: gdb.base/frameapply.exp: can't run to setup_done
new UNRESOLVED: gdb.base/gdb1056.exp: print 1/0
new UNRESOLVED: gdb.base/gdb1056.exp: test unsigned division by zero
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize= 20 : show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize= 20 : show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5ab: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5ab: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=0: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=0: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=10zab: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=10zab: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=20: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=20: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=50: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=50: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=99999999999999999999999999999999999: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=99999999999999999999999999999999999: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=: show history size
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=not_an_integer: show commands
new UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=not_an_integer: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=1000: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=1000: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=foo: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=foo: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/zero: show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/zero: show history size
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: appending: server show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: creating: server show commands
new UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: print 1
new UNRESOLVED: gdb.base/help.exp: apropos \
new UNRESOLVED: gdb.base/help.exp: apropos apropos
new UNRESOLVED: gdb.base/help.exp: apropos handle signal
new UNRESOLVED: gdb.base/help.exp: disable pagination
new UNRESOLVED: gdb.base/help.exp: help aliases
new UNRESOLVED: gdb.base/help.exp: help backtrace
new UNRESOLVED: gdb.base/help.exp: help backtrace "bt" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "b" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "br" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "bre" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "brea" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoint "break" abbreviation
new UNRESOLVED: gdb.base/help.exp: help breakpoints
new UNRESOLVED: gdb.base/help.exp: help commands
new UNRESOLVED: gdb.base/help.exp: help data
new UNRESOLVED: gdb.base/help.exp: help delete
new UNRESOLVED: gdb.base/help.exp: help delete "d" abbreviation
new UNRESOLVED: gdb.base/help.exp: help files
new UNRESOLVED: gdb.base/help.exp: help gotcha
new UNRESOLVED: gdb.base/help.exp: help help
new UNRESOLVED: gdb.base/help.exp: help help "h" abbreviation
new UNRESOLVED: gdb.base/help.exp: help info bogus-gdb-command
new UNRESOLVED: gdb.base/help.exp: help internals
new UNRESOLVED: gdb.base/help.exp: help obscure
new UNRESOLVED: gdb.base/help.exp: help running
new UNRESOLVED: gdb.base/help.exp: help show commands
new UNRESOLVED: gdb.base/help.exp: help show confirm
new UNRESOLVED: gdb.base/help.exp: help show copying
new UNRESOLVED: gdb.base/help.exp: help show warranty
new UNRESOLVED: gdb.base/help.exp: help stack
new UNRESOLVED: gdb.base/help.exp: help status
new UNRESOLVED: gdb.base/help.exp: help support
new UNRESOLVED: gdb.base/help.exp: help tracepoints
new UNRESOLVED: gdb.base/help.exp: help user-defined
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: set history remove-duplicates 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: set history remove-duplicates 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: set history remove-duplicates 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 3
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 4
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 0
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 1
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 2
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 3
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 4
new UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: set history remove-duplicates unlimited
new UNRESOLVED: gdb.base/history-duplicates.exp: show editing
new UNRESOLVED: gdb.base/history-duplicates.exp: show history remove-duplicates
new UNRESOLVED: gdb.base/ifelse.exp: call original define
new UNRESOLVED: gdb.base/ifelse.exp: call replacement define
new UNRESOLVED: gdb.base/ifelse.exp: create define with empty else
new UNRESOLVED: gdb.base/ifelse.exp: if 0 .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 0 with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 1 .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if 1 with empty body
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #1
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #2
new UNRESOLVED: gdb.base/ifelse.exp: if true else false #3
new UNRESOLVED: gdb.base/ifelse.exp: replace define with if .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: set confirm off
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tc-td: 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-tc-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ts: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tf: 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-tf-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-ts: 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-ti-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tl-td: 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-tl-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-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-td: 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-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tld: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tll-tf: 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-td: 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-ts-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ts: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tc-td: 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-tc-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-ts: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tf: 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-tf-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-ts: 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-ti-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tl-td: 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-tl-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-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-td: 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-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tld: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tll-tf: 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-td: 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-ts-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ts: failed to compile
new FAIL: gdb.base/info-os.exp: cannot compile test program
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode on
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: set interactive-mode on
new UNRESOLVED: gdb.base/interact.exp: show interactive-mode
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode auto
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode off
new UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode on
new UNRESOLVED: gdb.base/multi-line-starts-subshell.exp: gdb input still works
new UNRESOLVED: gdb.base/multi-line-starts-subshell.exp: spawn subshell from multi-line
new UNRESOLVED: gdb.base/osabi.exp: set debug arch 1
new UNRESOLVED: gdb.base/osabi.exp: set osabi none
new UNRESOLVED: gdb.base/page.exp: paged count
new UNRESOLVED: gdb.base/page.exp: paged count for interrupt
new UNRESOLVED: gdb.base/page.exp: paged count remainder
new UNRESOLVED: gdb.base/page.exp: paged help
new UNRESOLVED: gdb.base/page.exp: pagination is off
new UNRESOLVED: gdb.base/page.exp: pagination is on
new UNRESOLVED: gdb.base/page.exp: q
new UNRESOLVED: gdb.base/page.exp: quit while paging
new UNRESOLVED: gdb.base/page.exp: set editing off
new UNRESOLVED: gdb.base/page.exp: set height -1
new UNRESOLVED: gdb.base/page.exp: set height 10
new UNRESOLVED: gdb.base/page.exp: set height 5
new UNRESOLVED: gdb.base/page.exp: set pagination off
new UNRESOLVED: gdb.base/page.exp: set pagination on
new UNRESOLVED: gdb.base/page.exp: set width -1
new UNRESOLVED: gdb.base/page.exp: set width 30
new UNRESOLVED: gdb.base/page.exp: size=0: set height 0
new UNRESOLVED: gdb.base/page.exp: size=0: set height 200
new UNRESOLVED: gdb.base/page.exp: size=0: set width 0
new UNRESOLVED: gdb.base/page.exp: size=0: set width 200
new UNRESOLVED: gdb.base/page.exp: size=0: show height
new UNRESOLVED: gdb.base/page.exp: size=0: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=0: show width
new UNRESOLVED: gdb.base/page.exp: size=0: show width unlimited
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set height 0x80000000
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set height 200
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set width 0x80000000
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: set width 200
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show height
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show width
new UNRESOLVED: gdb.base/page.exp: size=0x80000000: show width unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set height 200
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set height unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set width 200
new UNRESOLVED: gdb.base/page.exp: size=unlimited: set width unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show height
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show height unlimited
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show width
new UNRESOLVED: gdb.base/page.exp: size=unlimited: show width unlimited
new UNRESOLVED: gdb.base/page.exp: unpaged help
new UNRESOLVED: gdb.base/quit.exp: quit with expression
new UNRESOLVED: gdb.base/quit.exp: quit with syntax error
new UNRESOLVED: gdb.base/radix.exp: Output radix unchanged after rejecting 0
new UNRESOLVED: gdb.base/radix.exp: Reject input-radix 0
new UNRESOLVED: gdb.base/radix.exp: Reject input-radix 1
new UNRESOLVED: gdb.base/radix.exp: Reject output-radix 0
new UNRESOLVED: gdb.base/radix.exp: Reject output-radix 1
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 10
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 16
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 2
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 3
new UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 8
new UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 10
new UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 16
new UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 8
new UNRESOLVED: gdb.base/radix.exp: input radix unchanged after rejecting 0
new UNRESOLVED: gdb.base/radix.exp: input radix unchanged after rejecting 1
new UNRESOLVED: gdb.base/radix.exp: output radix unchanged after rejecting 1
new UNRESOLVED: gdb.base/radix.exp: output radix unchanged after rejection through set radix command
new UNRESOLVED: gdb.base/radix.exp: print
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -100; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -256; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -4; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -64; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -100; expect -9; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -101; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -10; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -257; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -5; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -101; expect -65; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -10; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -16; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -2; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -3; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -10; expect -8; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -11; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -17; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -3; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -4; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -11; expect -9; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -12; expect -12; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -20; expect -16; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print -2; expect Invalid number "2"\.; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print -9; expect Invalid number "9".; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 010; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 17; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 0xf; expect f; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 100; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 100; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 144; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 256; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 4; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 64; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 64; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 100; expect 9; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 10101; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 21; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 4161; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 65793; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 10101; expect 91; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 101; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 10; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 257; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 5; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 101; expect 65; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 10; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 10; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 12; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 16; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 2; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 3; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 10; expect 8; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 10; expect a; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 11; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 17; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 3; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 4; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 11; expect 9; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 14; output radix 16
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 10
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 16
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; output radix 10
new UNRESOLVED: gdb.base/radix.exp: print 20.; expect 24; output radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20; expect 16; input radix 8
new UNRESOLVED: gdb.base/radix.exp: print 20; expect 6; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 2; expect 2; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 30; expect Invalid number "30"\.; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 3; expect Invalid number "3"\.; input radix 3
new UNRESOLVED: gdb.base/radix.exp: print 4; expect Invalid number "4"\.; input radix 2
new UNRESOLVED: gdb.base/radix.exp: print 8; expect Invalid number "8".; input radix 8
new UNRESOLVED: gdb.base/radix.exp: reset radices
new UNRESOLVED: gdb.base/radix.exp: set input-radix 10
new UNRESOLVED: gdb.base/radix.exp: set input-radix 16
new UNRESOLVED: gdb.base/radix.exp: set input-radix 2
new UNRESOLVED: gdb.base/radix.exp: set input-radix 3
new UNRESOLVED: gdb.base/radix.exp: set input-radix 8
new UNRESOLVED: gdb.base/radix.exp: set output-radix 10
new UNRESOLVED: gdb.base/radix.exp: set output-radix 16
new UNRESOLVED: gdb.base/radix.exp: set output-radix 8
new UNRESOLVED: gdb.base/radix.exp: set radix 7 rejected
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 10
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 16
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 2
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 3
new UNRESOLVED: gdb.base/radix.exp: show radix, input radix 8
new UNRESOLVED: gdb.base/radix.exp: show radix, output radix 10
new UNRESOLVED: gdb.base/radix.exp: show radix, output radix 16
new UNRESOLVED: gdb.base/radix.exp: show radix, output radix 8
new UNRESOLVED: gdb.base/readline.exp: Simple operate-and-get-next - send p 1
new UNRESOLVED: gdb.base/readline.exp: arrow keys with secondary prompt
new UNRESOLVED: gdb.base/readline.exp: operate-and-get-next with secondary prompt - send if 1 > 0
new UNRESOLVED: gdb.base/readline.exp: print 42
new UNRESOLVED: gdb.base/readline.exp: show editing
new UNRESOLVED: gdb.base/remotetimeout.exp: correct remotetimeout printed
new UNRESOLVED: gdb.base/shell.exp: ! echo foo
new UNRESOLVED: gdb.base/shell.exp: ! exit 0
new UNRESOLVED: gdb.base/shell.exp: ! exit 1
new UNRESOLVED: gdb.base/shell.exp: ! kill -2 $$
new UNRESOLVED: gdb.base/shell.exp: !echo foo
new UNRESOLVED: gdb.base/shell.exp: -d spaces value missing
new UNRESOLVED: gdb.base/shell.exp: -d value missing
new UNRESOLVED: gdb.base/shell.exp: DELIM delimiter missing
new UNRESOLVED: gdb.base/shell.exp: SHELL_COMMAND missing
new UNRESOLVED: gdb.base/shell.exp: SHELL_COMMAND missing with delimiter
new UNRESOLVED: gdb.base/shell.exp: all missing
new UNRESOLVED: gdb.base/shell.exp: alternate 1char delim
new UNRESOLVED: gdb.base/shell.exp: alternate 1char delim, no space
new UNRESOLVED: gdb.base/shell.exp: alternate 3char delim
new UNRESOLVED: gdb.base/shell.exp: alternate 3char delim, no space
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe print 1 | "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "| print 1 | "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d XXX maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d XXX maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d main"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d set maint set "
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d set maint set"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|maint set test-se"
new UNRESOLVED: gdb.base/shell.exp: cmd complete "|print 1 | "
new UNRESOLVED: gdb.base/shell.exp: define foo
new UNRESOLVED: gdb.base/shell.exp: delimiter missing due to missing space
new UNRESOLVED: gdb.base/shell.exp: double pipe
new UNRESOLVED: gdb.base/shell.exp: double pipe, pipe char
new UNRESOLVED: gdb.base/shell.exp: echo coucou
new UNRESOLVED: gdb.base/shell.exp: enter commands
new UNRESOLVED: gdb.base/shell.exp: no space around pipe char
new UNRESOLVED: gdb.base/shell.exp: pipe fail exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe fail exitsignal
new UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitsignal
new UNRESOLVED: gdb.base/shell.exp: pipe success exitcode
new UNRESOLVED: gdb.base/shell.exp: pipe success exitsignal
new UNRESOLVED: gdb.base/shell.exp: repeat previous command
new UNRESOLVED: gdb.base/shell.exp: set max-completions 0
new UNRESOLVED: gdb.base/shell.exp: set max-completions 2
new UNRESOLVED: gdb.base/shell.exp: shell echo foo
new UNRESOLVED: gdb.base/shell.exp: shell fail exitcode
new UNRESOLVED: gdb.base/shell.exp: shell fail exitsignal
new UNRESOLVED: gdb.base/shell.exp: shell interrupt exitcode
new UNRESOLVED: gdb.base/shell.exp: shell interrupt exitsignal
new UNRESOLVED: gdb.base/shell.exp: shell success exitcode
new UNRESOLVED: gdb.base/shell.exp: shell success exitsignal
new UNRESOLVED: gdb.base/shell.exp: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
new UNRESOLVED: gdb.base/shell.exp: simple pipe
new UNRESOLVED: gdb.base/shell.exp: simple pipe with arg
new UNRESOLVED: gdb.base/shell.exp: | delimiter missing
new UNRESOLVED: gdb.base/shell.exp: |p 123| exit 0
new UNRESOLVED: gdb.base/shell.exp: |p 123| exit 1
new UNRESOLVED: gdb.base/shell.exp: |p 123| kill -2 $$
new UNRESOLVED: gdb.base/source-dir.exp: directory /nOtExStInG/a /nOtExStInG/b /nOtExStInG/c
new UNRESOLVED: gdb.base/source-dir.exp: directory /nOtExStInG/b /nOtExStInG/d /nOtExStInG/c
new UNRESOLVED: gdb.base/source.exp: script contains error
new UNRESOLVED: gdb.base/source.exp: set search directories
new UNRESOLVED: gdb.base/source.exp: source -s
new UNRESOLVED: gdb.base/source.exp: source -s -v
new UNRESOLVED: gdb.base/source.exp: source -v
new UNRESOLVED: gdb.base/source.exp: source -v -s
new UNRESOLVED: gdb.base/source.exp: source after -v
new UNRESOLVED: gdb.base/source.exp: source for-sure-nonexistant-file
new UNRESOLVED: gdb.base/source.exp: source source-nofile.gdb
new UNRESOLVED: gdb.base/step-over-syscall.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/step-over-syscall.exp: run to main
new UNRESOLVED: gdb.base/subst.exp: add depuis -> vers substitution rule
new UNRESOLVED: gdb.base/subst.exp: add from -> to substitution rule
new UNRESOLVED: gdb.base/subst.exp: add from1 -> to1 substitution rule
new UNRESOLVED: gdb.base/subst.exp: add source -> destination substitution rule
new UNRESOLVED: gdb.base/subst.exp: add substitution rule to empty string
new UNRESOLVED: gdb.base/subst.exp: deactivate GDB's confirmation interface
new UNRESOLVED: gdb.base/subst.exp: remove all remaining substitution rules
new UNRESOLVED: gdb.base/subst.exp: remove default substitution rules
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, first argument is empty string
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, too few arguments
new UNRESOLVED: gdb.base/subst.exp: set substitute-path, too many arguments
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after all remaining rules removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after depuis rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after empty rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path after from rule removed
new UNRESOLVED: gdb.base/subst.exp: show substitute-path depuis, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, after unsetting it
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from/path, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path from_a_bad_path, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path garbage, after all paths added
new UNRESOLVED: gdb.base/subst.exp: show substitute-path, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: show substitute-path, too many arguments
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path depuis
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path empty
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from after the rule was removed
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path from, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path, no rule entered yet
new UNRESOLVED: gdb.base/subst.exp: unset substitute-path, too many arguments
new UNRESOLVED: gdb.base/trace-commands.exp: define user command
new UNRESOLVED: gdb.base/trace-commands.exp: depth resets on error part 1
new UNRESOLVED: gdb.base/trace-commands.exp: depth resets on error part 2
new UNRESOLVED: gdb.base/trace-commands.exp: nested trace-commands test
new UNRESOLVED: gdb.base/trace-commands.exp: nested trace-commands test with source
new UNRESOLVED: gdb.base/trace-commands.exp: set trace-commands
new UNRESOLVED: gdb.base/trace-commands.exp: show trace-commands says off
new UNRESOLVED: gdb.base/trace-commands.exp: show trace-commands says on
new UNRESOLVED: gdb.base/trace-commands.exp: simple trace-commands test
new UNRESOLVED: gdb.base/trace-commands.exp: source -v
new UNRESOLVED: gdb.base/vla-optimized-out.exp: o1: can't run to f1
new UNRESOLVED: gdb.base/warning.exp: echo 23\n
new UNRESOLVED: gdb.btrace/cpu.exp: default cpu
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu auto
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/1
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0x0/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo/0
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo/bar
new UNRESOLVED: gdb.btrace/cpu.exp: set cpu none
new UNRESOLVED: gdb.btrace/cpu.exp: set record
new UNRESOLVED: gdb.btrace/cpu.exp: set record btrace
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu auto
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0 foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/1
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0x0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0x0/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo/0
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo/bar
new UNRESOLVED: gdb.btrace/cpu.exp: show cpu none
new UNRESOLVED: gdb.cp/debug-expr.exp: print dynamic_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: print reinterpret_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: print static_cast<void*>
new UNRESOLVED: gdb.cp/debug-expr.exp: set debug expression 1
new UNRESOLVED: gdb.cp/debug-expr.exp: set language c++
new UNRESOLVED: gdb.cp/demangle.exp: auto: check demangling style
new UNRESOLVED: gdb.cp/demangle.exp: auto: set demangle-style
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c -- _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c++ -- _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l c++ _ZSt4cout
new UNRESOLVED: gdb.cp/demangle.exp: demangle -l garbage xyzdje
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z13BitPatterntoaOK10BitPatternccc
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z31DrawDestinationTransformedImageP7_XImageiiS0_iimjiijmmP4_XGCOK13ivTransformeriiii
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z3argOK7Complex
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN11RelateManip6EffectEO7ivEvent
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN20DisplayList_IteratorC4EO11DisplayList
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN3fooC4EOS_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN3fooC4EiOS_iS0_iS0_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE3PixC4EOKS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE7elementC2EOKS0_PS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE7elementC4EOKS2_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityEC4EOKS1_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4PixXI11VHDLLibrary14VHDLLibraryRep4ListI10VHDLEntityEEC2EOKS5_
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN7ivWorldC2EPKcOiPPcPK12ivOptionDescPK14ivPropertyData
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN8TextCode14CoreConstDeclsEO7ostream
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic: gnu-v3: check demangling style
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic: gnu-v3: set demangle-style
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK11VHDLLibrary5nextEEO4PixXIS_14VHDLLibraryRep4ListI10VHDLEntityEE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK4ListI10VHDLEntityE4nextEONS1_3PixE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK4ListI10VHDLEntityEclEOKNS1_3PixE
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOK10BitPattern
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOK12BitSubStringi
new UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOKS_
new UNRESOLVED: gdb.cp/demangle.exp: set language c++
new UNRESOLVED: gdb.cp/demangle.exp: set language unknown
new UNRESOLVED: gdb.cp/demangle.exp: set width 0
new UNRESOLVED: gdb.cp/maint.exp: help maint cp
new UNRESOLVED: gdb.cp/maint.exp: help maint cp first_component
new UNRESOLVED: gdb.cp/maint.exp: help maint cp namespace
new UNRESOLVED: gdb.cp/maint.exp: help maintenance cplus
new UNRESOLVED: gdb.cp/maint.exp: maint cp
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component C<A>::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component C<std::basic_streambuf<wchar_t,std::char_traits<wchar_t> > >::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component T<Cooperator>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component bool operator<<char>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo::bar
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo::bar::baz
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<&
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<&operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int operator<< <char>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator  ->
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator ->
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator<<
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator>
new UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator>>
new UNRESOLVED: gdb.cp/maint.exp: maint cp namespace
new UNRESOLVED: gdb.cp/maint.exp: set complaints 1000
new UNRESOLVED: gdb.cp/punctuator.exp: print
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 1
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 2
new UNRESOLVED: gdb.cp/punctuator.exp: set $u 3
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 1
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 2
new UNRESOLVED: gdb.cp/punctuator.exp: set $v 3
new UNRESOLVED: gdb.cp/punctuator.exp: set lang c++
new UNRESOLVED: gdb.cp/ref-params.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/ref-params.exp: print value of Child& in f2
new UNRESOLVED: gdb.cp/ref-params.exp: print value of Parent& in f1
new UNRESOLVED: gdb.cp/ref-params.exp: print value of a Child in main
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on Child in main
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on Child& in f2
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f2 on
new UNRESOLVED: gdb.cp/ref-params.exp: print value of f2 on Child in main
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print f1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print mf1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print mf2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Child&& in f2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Parent&& in f1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f1 on
new FAIL: gdb.cp/rvalue-ref-params.exp: print value of f1 on Child&& in f2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f2 on
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char16_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char16_t is unsigned
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char32_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char32_t is unsigned
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p L"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p U"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p u"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: set language c++
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: sizeof
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: wchar_t is distinct
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: wchar_t sign
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: char16_t is not built-in
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: char32_t is not built-in
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p L"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p U"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p u"hello"
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: set language c
new UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: wchar_t is not built-in
new UNRESOLVED: gdb.disasm/disassembler-options.exp: set disassembler-options
new UNRESOLVED: gdb.disasm/disassembler-options.exp: set disassembler-options invalid_option_value
new UNRESOLVED: gdb.disasm/disassembler-options.exp: show NULL disassembler-options
new UNRESOLVED: gdb.dlang/debug-expr.exp: print *
new UNRESOLVED: gdb.dlang/debug-expr.exp: set debug expression 1
new UNRESOLVED: gdb.dlang/debug-expr.exp: set language d
new UNRESOLVED: gdb.dlang/demangle.exp: set language d
new UNRESOLVED: gdb.dlang/expression.exp: set language d
new UNRESOLVED: gdb.dlang/primitive-types.exp: set language d
new UNRESOLVED: gdb.dlang/properties.exp: set language d
new UNRESOLVED: gdb.dlang/watch-loc.exp: disassemble _Dmain
new UNRESOLVED: gdb.dlang/watch-loc.exp: p _Dmain_label - _Dmain
new UNRESOLVED: gdb.dlang/watch-loc.exp: x/2i _Dmain+
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: disassemble first
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: disassemble second
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p first_label - first
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p second_label - second
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: x/2i first+
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: x/2i second+
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p g_label - g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i g+
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: console: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: console: set print object on
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: disassemble func01
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: p func01_label - func01
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: x/2i func01+
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p bar_label - bar
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p baz_label - baz
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_cold_label - foo_cold
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_label - foo
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p main_label - main
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble bar
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble baz
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble foo
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble foo_low
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p bar_label - bar
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p baz_label - baz
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p foo_label - foo
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p foo_low_label - foo_low
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i bar+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i baz+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i foo+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i foo_low+
new UNRESOLVED: gdb.dwarf2/implref-struct.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/void-type.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/void-type.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i main+
new UNRESOLVED: gdb.objc/print.exp: set language objective-c
new UNRESOLVED: gdb.pascal/print.exp: set language pascal
new UNRESOLVED: gdb.pascal/types.exp: set language pascal
new UNRESOLVED: gdb.python/py-as-string.exp: couldn't run to main.
new UNRESOLVED: gdb.python/py-error.exp: check if python 3
new UNRESOLVED: gdb.python/py-error.exp: main reached
new UNRESOLVED: gdb.python/py-error.exp: no delayed error
new UNRESOLVED: gdb.python/py-error.exp: set host-charset IBM1047
new UNRESOLVED: gdb.python/py-error.exp: verify python support
new KFAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new UNRESOLVED: gdb.python/py-function.exp: Test GDBError - python
new UNRESOLVED: gdb.python/py-function.exp: Test GdbError.  There should not be a stack trace
new UNRESOLVED: gdb.python/py-function.exp: Test Normal Error - python
new UNRESOLVED: gdb.python/py-function.exp: Test a Runtime error.  There should be a stack trace.
new UNRESOLVED: gdb.python/py-function.exp: call function
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = ada
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = asm
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = auto
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = c
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = c++
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = d
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = fortran
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = go
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = minimal
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = modula-2
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = objective-c
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = opencl
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = pascal
new UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = rust
new UNRESOLVED: gdb.python/py-function.exp: call yes with &&
new UNRESOLVED: gdb.python/py-function.exp: call yes with ||
new UNRESOLVED: gdb.python/py-function.exp: check if python 3
new UNRESOLVED: gdb.python/py-function.exp: input command-calling function - python
new UNRESOLVED: gdb.python/py-function.exp: input convenience function - python
new UNRESOLVED: gdb.python/py-function.exp: input int-returning function - python
new UNRESOLVED: gdb.python/py-function.exp: input value-returning convenience function - python
new UNRESOLVED: gdb.python/py-function.exp: set language ada
new UNRESOLVED: gdb.python/py-function.exp: set language asm
new UNRESOLVED: gdb.python/py-function.exp: set language auto
new UNRESOLVED: gdb.python/py-function.exp: set language c
new UNRESOLVED: gdb.python/py-function.exp: set language c++
new UNRESOLVED: gdb.python/py-function.exp: set language d
new UNRESOLVED: gdb.python/py-function.exp: set language fortran
new UNRESOLVED: gdb.python/py-function.exp: set language go
new UNRESOLVED: gdb.python/py-function.exp: set language minimal
new UNRESOLVED: gdb.python/py-function.exp: set language modula-2
new UNRESOLVED: gdb.python/py-function.exp: set language objective-c
new UNRESOLVED: gdb.python/py-function.exp: set language opencl
new UNRESOLVED: gdb.python/py-function.exp: set language pascal
new UNRESOLVED: gdb.python/py-function.exp: set language rust
new UNRESOLVED: gdb.python/py-function.exp: set python print-stack full
new UNRESOLVED: gdb.python/py-function.exp: setting a value from a function which executes a command, again.
new UNRESOLVED: gdb.python/py-function.exp: setting a value from a function which executes a command.
new UNRESOLVED: gdb.python/py-function.exp: verify python support
new UNRESOLVED: gdb.python/py-lookup-type.exp: check if python 3
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type CARDINAL using language modula-2
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language c
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language objective-c
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language pascal
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type character using language ada
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type character using language fortran
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type int32 using language go
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type ucent using language d
new UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type ushort using language opencl
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language ada
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language c
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language d
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language fortran
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language go
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language modula-2
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language objective-c
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language opencl
new UNRESOLVED: gdb.python/py-lookup-type.exp: set language pascal
new UNRESOLVED: gdb.python/py-lookup-type.exp: verify python support
new UNRESOLVED: gdb.python/py-nested-maps.exp: check if python 3
new UNRESOLVED: gdb.python/py-nested-maps.exp: verify python support
new UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER - python
new UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER_UNLIMITED - python
new UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb booleanparameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: Throwing gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: check if python 3
new UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value can be set to -1
new UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value is -1 after setting
new UNRESOLVED: gdb.python/py-parameter.exp: enum gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: file gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: gdb.GdbError does not show Python stack
new UNRESOLVED: gdb.python/py-parameter.exp: python print
new UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -1
new UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -5
new UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER_UNLIMITED.value = -5
new UNRESOLVED: gdb.python/py-parameter.exp: set enum to two
new UNRESOLVED: gdb.python/py-parameter.exp: set invalid enum parameter
new UNRESOLVED: gdb.python/py-parameter.exp: set new file parameter
new UNRESOLVED: gdb.python/py-parameter.exp: set test-file-param
new UNRESOLVED: gdb.python/py-parameter.exp: show initial file value
new UNRESOLVED: gdb.python/py-parameter.exp: show new file value
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter is initial value
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter is new value
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter off
new UNRESOLVED: gdb.python/py-parameter.exp: show parameter on
new UNRESOLVED: gdb.python/py-parameter.exp: test enum parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test file parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test general help
new UNRESOLVED: gdb.python/py-parameter.exp: test new file parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test parameter value
new UNRESOLVED: gdb.python/py-parameter.exp: test set help
new UNRESOLVED: gdb.python/py-parameter.exp: test show help
new UNRESOLVED: gdb.python/py-parameter.exp: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: verify python support
new UNRESOLVED: gdb.python/py-prompt.exp: check if python 3
new UNRESOLVED: gdb.python/py-prompt.exp: verify python support
new UNRESOLVED: gdb.python/py-recurse-unwind.exp: can't run to main
new UNRESOLVED: gdb.reverse/fstatat-reverse.exp: turn on process record
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sigall-precsave.exp
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sigall-reverse.exp
new UNRESOLVED: gdb.rust/expr.exp: set language rust
new UNRESOLVED: gdb.rust/expr.exp: set var $something = 27
new FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
new FAIL: gdb.server/unittest.exp: unit tests
new UNRESOLVED: gdb.trace/actions.exp: failed to compile
new UNRESOLVED: gdb.trace/ax.exp: failed to compile
new UNRESOLVED: gdb.trace/deltrace.exp: failed to compile
new UNRESOLVED: gdb.trace/infotrace.exp: failed to compile
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with missing argument
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with too many arguments
new UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with wrong option
new UNRESOLVED: gdb.trace/packetlen.exp: failed to compile
new UNRESOLVED: gdb.trace/passc-dyn.exp: failed to compile
new UNRESOLVED: gdb.trace/passcount.exp: failed to compile
new UNRESOLVED: gdb.trace/report.exp: failed to compile
new UNRESOLVED: gdb.trace/save-trace.exp: failed to compile
new UNRESOLVED: gdb.trace/tfind.exp: failed to compile
new UNRESOLVED: gdb.trace/tracecmd.exp: failed to compile
new UNRESOLVED: gdb.trace/tsv.exp: failed to compile
new UNRESOLVED: gdb.trace/while-dyn.exp: failed to compile
new UNRESOLVED: gdb.trace/while-stepping.exp: failed to compile
new UNRESOLVED: gdb.tui/completion.exp: verify tui support
new UNRESOLVED: gdb.tui/empty.exp: set tui border-kind ascii
new UNRESOLVED: gdb.tui/empty.exp: src: 80x24: box 1
new UNRESOLVED: gdb.tui/empty.exp: verify tui support
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: correct line breaks
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: set height 2000
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: set pagination on
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: tui enable
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: verify tui support
new UNRESOLVED: gdb.xml/maint_print_struct.exp: printing tdesc with a structure and a bitfield
new UNRESOLVED: gdb.xml/maint_print_struct.exp: setting a new tdesc having only a structure
new UNRESOLVED: gdb.xml/tdesc-arch.exp: architecture XML tests
new UNRESOLVED: gdb.xml/tdesc-arch.exp: read default architecture
new UNRESOLVED: gdb.xml/tdesc-arch.exp: read valid architectures
new UNRESOLVED: gdb.xml/tdesc-errors.exp: set tdesc filename gdb.xml/tdesc-bogus.xml
new UNRESOLVED: gdb.xml/tdesc-errors.exp: set tdesc filename gdb.xml/tdesc-unknown.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: cd to directory holding xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: maintenance print reggroups
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $bitfields
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $extrareg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $flags
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $mixed_flags
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $structreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $structreg.v4
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $uintreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $unionreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $unionreg.v4
new UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $vecreg
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc file single-reg.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc filename test-extra-regs.xml - from extra-regs.xml
new UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc filename test-regs.xml - from core-only.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/bad-include.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/includes.xml
new UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/loop.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-gdbserver-m64/0d/0df0352ad0b64e884977d8251cf1b88b6640600f//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/0d/0df0352ad0b64e884977d8251cf1b88b6640600f//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-09-30  2:41 [binutils-gdb] gdb: include gdbarch.h in hppa-linux-nat.c gdb-buildbot
@ 2019-09-30  5:06 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-09-30  5:06 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/806

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        ad75efa628656716982f2674008952bfd2c268af

Subject of commit:
        gdb: include gdbarch.h in hppa-linux-nat.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/ad/ad75efa628656716982f2674008952bfd2c268af/

*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.ada/assign_1.exp: changing the language to ada
PASS -> UNRESOLVED: gdb.ada/assign_1.exp: set convenience variable $xxx to 1
PASS -> UNRESOLVED: gdb.ada/boolean_expr.exp: changing the language to ada
PASS -> UNRESOLVED: gdb.ada/boolean_expr.exp: print 1 = 2
PASS -> UNRESOLVED: gdb.ada/boolean_expr.exp: print 3 = 3
PASS -> FAIL: gdb.ada/catch_ex.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/cond_lang.exp: compilation a.adb
PASS -> FAIL: gdb.ada/int_deref.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/minsyms.exp: compilation foo_qb07_057.adb
PASS -> FAIL: gdb.ada/tagged_access.exp: compilation p.adb
PASS -> FAIL: gdb.ada/watch_arg.exp: compilation watch.adb
PASS -> FAIL: gdb.ada/watch_minus_l.exp: compilation foo_ra10_006.adb
UNRESOLVED -> FAIL: gdb.cp/ref-params.exp: print f1
UNRESOLVED -> FAIL: gdb.cp/ref-params.exp: print mf1
UNRESOLVED -> FAIL: gdb.cp/ref-params.exp: print mf2
PASS -> UNRESOLVED: gdb.dlang/debug-expr.exp: print *
PASS -> UNRESOLVED: gdb.dlang/debug-expr.exp: set debug expression 1
PASS -> UNRESOLVED: gdb.dlang/debug-expr.exp: set language d
PASS -> UNRESOLVED: gdb.dlang/properties.exp: set language d
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: disassemble first
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: disassemble second
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p first_label - first
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p second_label - second
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: x/2i first+
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: x/2i second+
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: disassemble mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: p mymain_label - mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: x/2i mymain+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/var-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/var-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/var-access.exp: x/2i main+
PASS -> UNRESOLVED: gdb.fortran/dot-ops.exp: set language fortran
PASS -> UNRESOLVED: gdb.fortran/exprs.exp: set language fortran
PASS -> UNRESOLVED: gdb.fortran/exprs.exp: set print sevenbit-strings
PASS -> UNRESOLVED: gdb.fortran/type-kinds.exp: set language fortran
FAIL -> UNRESOLVED: gdb.gdb/unittest.exp: maintenance check xml-descriptions ${srcdir}/../features
FAIL -> UNRESOLVED: gdb.gdb/unittest.exp: maintenance selftest
PASS -> UNRESOLVED: gdb.go/basic-types.exp: set language go
PASS -> UNRESOLVED: gdb.go/print.exp: set language go
new UNRESOLVED: gdb.guile/guile.exp: collect help from uiout
new UNRESOLVED: gdb.guile/guile.exp: guile
PASS -> UNRESOLVED: gdb.guile/guile.exp: multi-line guile command - guile
new UNRESOLVED: gdb.guile/guile.exp: show guile command - define zzq
new UNRESOLVED: gdb.guile/guile.exp: source -s source2.scm
new UNRESOLVED: gdb.guile/guile.exp: source source2.scm
new UNRESOLVED: gdb.guile/guile.exp: verify guile support
new UNRESOLVED: gdb.guile/guile.exp: verify help to uiout
new UNRESOLVED: gdb.guile/scm-error.exp: backtrace printed
new UNRESOLVED: gdb.guile/scm-error.exp: error loading scm file caught
new UNRESOLVED: gdb.guile/scm-error.exp: error message printed
new UNRESOLVED: gdb.guile/scm-error.exp: guile
new UNRESOLVED: gdb.guile/scm-error.exp: no delayed error
new UNRESOLVED: gdb.guile/scm-error.exp: no error printed
new UNRESOLVED: gdb.guile/scm-error.exp: reset print-stack to default, post set/show tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to full, for backtrace test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error printing tests
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to message, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: set print-stack to none, for error test
new UNRESOLVED: gdb.guile/scm-error.exp: source /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.guile/scm-error/scm-error-2.scm
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack full setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack none setting
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting of default
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to full
new UNRESOLVED: gdb.guile/scm-error.exp: test print-stack show setting to none
new UNRESOLVED: gdb.guile/scm-error.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-frame-inline.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-frame-inline.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-frame-inline.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-gsmob.exp: gu
new UNRESOLVED: gdb.guile/scm-gsmob.exp: guile
new UNRESOLVED: gdb.guile/scm-gsmob.exp: object-properties
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop0 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop1 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop2 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop3 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop4 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop5 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop6 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 not present before set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: property prop7 present after set
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: ref prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 0
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 1
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 2
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 3
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 4
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 5
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 6
new UNRESOLVED: gdb.guile/scm-gsmob.exp: set prop 7
new UNRESOLVED: gdb.guile/scm-gsmob.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-parameter.exp: Simple gdb boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: enum gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: error registering existing parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: file gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously ambiguously named boolean parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: set print s on
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: previously-ambiguous: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: restricted gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: enum parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set invalid enum parameter
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: set print test-enum-param two
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-enum-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: initial parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: new parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: set test-file-param bar.txt
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show initial value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-file-param: show new value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: parameter value
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: set print test-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 10
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: set test-restricted-param 42
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-restricted-param: show test-restricted-param
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: general help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: set print test-undoc-param off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show help
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter off
new UNRESOLVED: gdb.guile/scm-parameter.exp: test-undocumented-param: show parameter on
new UNRESOLVED: gdb.guile/scm-parameter.exp: undocumented gdb parameter - guile
new UNRESOLVED: gdb.guile/scm-parameter.exp: verify guile support
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: can't run to main
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.guile/scm-pretty-print.exp: verify guile support
PASS -> UNRESOLVED: gdb.pascal/print.exp: set language pascal
new UNRESOLVED: gdb.python/py-completion.exp: check if python 3
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #1
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #2
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #3
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #4
PASS -> UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completel'
PASS -> UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit1 c'
PASS -> UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit2 c'
PASS -> UNRESOLVED: gdb.python/py-completion.exp: load python file
PASS -> UNRESOLVED: gdb.python/py-completion.exp: load python file again
new UNRESOLVED: gdb.python/py-completion.exp: show editing
new UNRESOLVED: gdb.python/py-completion.exp: verify python support
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER_UNLIMITED - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb booleanparameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Throwing gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: check if python 3
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value can be set to -1
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value is -1 after setting
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum gdb parameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file gdb parameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: gdb.GdbError does not show Python stack
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python print
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -1
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -5
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER_UNLIMITED.value = -5
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: set enum to two
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: set invalid enum parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: set new file parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: set test-file-param
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show initial file value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show new file value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show parameter is initial value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show parameter is new value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show parameter off
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show parameter on
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test enum parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test file parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test general help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test new file parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test set help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test show help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: verify python support
new UNRESOLVED: gdb.python/py-prettyprint.exp: check if python 3
new UNRESOLVED: gdb.python/py-prettyprint.exp: verify python support
==============================================

*** 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/ad/ad75efa628656716982f2674008952bfd2c268af//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/ad/ad75efa628656716982f2674008952bfd2c268af//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
       [not found] <@gdb-build>
@ 2019-09-28 21:31 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-09-28 21:31 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/803

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        060b3ab4edadfc0d55e606598769c1e5315fd74c

Subject of commit:
        [gdb/testsuite] Fix incomplete regexps in step-precsave.exp

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/06/060b3ab4edadfc0d55e606598769c1e5315fd74c/

*** Diff to previous build ***
==============================================
No regressions found!
==============================================

*** 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/06/060b3ab4edadfc0d55e606598769c1e5315fd74c//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/06/060b3ab4edadfc0d55e606598769c1e5315fd74c//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-09-27  9:30 [binutils-gdb] [gdb/testsuite] Add KFAIL for missing support of reverse-debugging of vmovd gdb-buildbot
@ 2019-09-28 19:29 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-09-28 19:29 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/802

Author:
        Tom de Vries <tdevries@suse.de>

Commit tested:
        68f7d34dd506d1ccdaab9e772a533f8e76a5fe19

Subject of commit:
        [gdb/testsuite] Add KFAIL for missing support of reverse-debugging of vmovd

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/68/68f7d34dd506d1ccdaab9e772a533f8e76a5fe19/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/arr_enum_idx_w_gap.exp: compilation foo_q418_043.adb
new UNRESOLVED: gdb.ada/catch_ex.exp: cannot run to main, testcase aborted
new UNRESOLVED: gdb.ada/catch_ex.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.ada/cond_lang.exp: continue
new UNRESOLVED: gdb.ada/cond_lang.exp: show lang
PASS -> FAIL: gdb.ada/dyn_loc.exp: compilation p.adb
PASS -> FAIL: gdb.ada/funcall_param.exp: compilation foo.adb
new UNRESOLVED: gdb.ada/int_deref.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/int_deref.exp: print *long_integer
new UNRESOLVED: gdb.ada/int_deref.exp: print long_integer
new UNRESOLVED: gdb.ada/int_deref.exp: print watch'address
PASS -> FAIL: gdb.ada/mi_catch_assert.exp: compilation bla.adb
new UNRESOLVED: gdb.ada/minsyms.exp: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.ada/null_array.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/py_taft.exp: compilation main.adb
new UNRESOLVED: gdb.ada/tagged_access.exp: ptype c.all
new FAIL: gdb.ada/tagged_access.exp: ptype c.menu_name
new UNRESOLVED: gdb.ada/watch_arg.exp: continuing to second breakpoint
new UNRESOLVED: gdb.ada/watch_arg.exp: continuing until watchpoint automatic deletion
new UNRESOLVED: gdb.ada/watch_arg.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/watch_arg.exp: insert second breakpoint in watch.adb
new UNRESOLVED: gdb.ada/watch_arg.exp: set watchpoint on function argument X
new UNRESOLVED: gdb.ada/watch_minus_l.exp: continue with watch -location
new UNRESOLVED: gdb.ada/watch_minus_l.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/watch_minus_l.exp: watch -location pck.global_var
new UNRESOLVED: gdb.base/funcargs.exp: continue to call0b
new UNRESOLVED: gdb.base/funcargs.exp: continue to call0c
new UNRESOLVED: gdb.base/funcargs.exp: continue to call0d
new UNRESOLVED: gdb.base/funcargs.exp: continue to call0e
new UNRESOLVED: gdb.base/funcargs.exp: continue to call1b
new UNRESOLVED: gdb.base/funcargs.exp: continue to call1c
new UNRESOLVED: gdb.base/funcargs.exp: continue to call1d
new UNRESOLVED: gdb.base/funcargs.exp: continue to call1e
new UNRESOLVED: gdb.base/funcargs.exp: continue to call2b
new UNRESOLVED: gdb.base/funcargs.exp: continue to call2c
new UNRESOLVED: gdb.base/funcargs.exp: continue to call2d
new UNRESOLVED: gdb.base/funcargs.exp: continue to call2e
new UNRESOLVED: gdb.base/funcargs.exp: continue to call2f
new UNRESOLVED: gdb.base/funcargs.exp: continue to call2g
new UNRESOLVED: gdb.base/funcargs.exp: continue to call2h
new UNRESOLVED: gdb.base/funcargs.exp: continue to call2i
new UNRESOLVED: gdb.base/funcargs.exp: continue to call3b
new UNRESOLVED: gdb.base/funcargs.exp: continue to call3c
new UNRESOLVED: gdb.base/funcargs.exp: continue to call4b
new UNRESOLVED: gdb.base/funcargs.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/funcargs.exp: determine endianness
new UNRESOLVED: gdb.base/funcargs.exp: getting sizeof int
new UNRESOLVED: gdb.base/funcargs.exp: getting sizeof long
new UNRESOLVED: gdb.base/funcargs.exp: print *cp
new UNRESOLVED: gdb.base/funcargs.exp: print *dp
new UNRESOLVED: gdb.base/funcargs.exp: print *fp
new UNRESOLVED: gdb.base/funcargs.exp: print *ip
new UNRESOLVED: gdb.base/funcargs.exp: print *lp
new UNRESOLVED: gdb.base/funcargs.exp: print *sp
new UNRESOLVED: gdb.base/funcargs.exp: print *stp
new UNRESOLVED: gdb.base/funcargs.exp: print *ucp
new UNRESOLVED: gdb.base/funcargs.exp: print *uip
new UNRESOLVED: gdb.base/funcargs.exp: print *ulp
new UNRESOLVED: gdb.base/funcargs.exp: print *usp
new UNRESOLVED: gdb.base/funcargs.exp: print c after run to call0a
new UNRESOLVED: gdb.base/funcargs.exp: print c after run to call2a
new UNRESOLVED: gdb.base/funcargs.exp: print d1 after run to call2a
new UNRESOLVED: gdb.base/funcargs.exp: print d2 after run to call2a
new UNRESOLVED: gdb.base/funcargs.exp: print f1 after run to call2a
new UNRESOLVED: gdb.base/funcargs.exp: print f2 after run to call2a
new UNRESOLVED: gdb.base/funcargs.exp: print i after run to call0a
new UNRESOLVED: gdb.base/funcargs.exp: print i after run to call2a
new UNRESOLVED: gdb.base/funcargs.exp: print l after run to call0a
new UNRESOLVED: gdb.base/funcargs.exp: print l after run to call2a
new UNRESOLVED: gdb.base/funcargs.exp: print s after run to call0a
new UNRESOLVED: gdb.base/funcargs.exp: print s after run to call2a
new UNRESOLVED: gdb.base/funcargs.exp: print uc
new UNRESOLVED: gdb.base/funcargs.exp: print ui
new UNRESOLVED: gdb.base/funcargs.exp: print ul
new UNRESOLVED: gdb.base/funcargs.exp: print us
new UNRESOLVED: gdb.base/funcargs.exp: set print frame-arguments all
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call0a
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call0b
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call0c
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call0d
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call0e
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call1a
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call1b
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call1c
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call1d
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call1e
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call2a
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call2b
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call2c
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call2d
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call2e
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call2f
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call2g
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call2h
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call2i
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call3a
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call3b
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call3c
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call4a
new UNRESOLVED: gdb.base/funcargs.exp: setting breakpoint at call4b
new UNRESOLVED: gdb.base/load-command.exp: can't run to main
new KFAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp_4_2_from_macscp3'
new UNRESOLVED: gdb.base/macscp.exp: macro tests suppressed: couldn't run to main
PASS -> UNRESOLVED: gdb.base/source-dir.exp: directory /nOtExStInG/a /nOtExStInG/b /nOtExStInG/c
PASS -> UNRESOLVED: gdb.base/source-dir.exp: directory /nOtExStInG/b /nOtExStInG/d /nOtExStInG/c
new FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 1 structs-tc
new FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 1 structs-td
new FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 1 structs-tf
new FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 1 structs-ti
new FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 1 structs-tl
new FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 1 structs-tld
new FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 1 structs-tll
new FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 1 structs-ts
new FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-tc
new FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-tc-ti
new FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-tc-tl
new FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-tc-ts
new FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-td-tf
new FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-tf
new FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-tf-tc
new FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-tf-td
new FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-ti
new FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-ti-tc
new FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-tl
new FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-tl-tc
new FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-ts
new FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 2 structs-ts-tc
new FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 3 structs-tc
new FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 3 structs-ts
new FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 4 structs-tc
new FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 4 structs-ts
new FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 5 structs-tc
new FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 6 structs-tc
new FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 7 structs-tc
new FAIL: gdb.base/structs.exp: advance to fun<n> for finish; return 8 structs-tc
new FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 1 structs-tc
new FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 1 structs-td
new FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 1 structs-tf
new FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 1 structs-ti
new FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 1 structs-tl
new FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 1 structs-tld
new FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 1 structs-tll
new FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 1 structs-ts
new FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-tc
new FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-tc-ti
new FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-tc-tl
new FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-tc-ts
new FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-td-tf
new FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-tf
new FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-tf-tc
new FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-tf-td
new FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-ti
new FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-ti-tc
new FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-tl
new FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-tl-tc
new FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-ts
new FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 2 structs-ts-tc
new FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 3 structs-tc
new FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 3 structs-ts
new FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 4 structs-tc
new FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 4 structs-ts
new FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 5 structs-tc
new FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 6 structs-tc
new FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 7 structs-tc
new FAIL: gdb.base/structs.exp: advance to fun<n> for return; return 8 structs-tc
new FAIL: gdb.base/structs.exp: call Fun<n>
new UNRESOLVED: gdb.base/structs.exp: continue to breakpoint: chartest-done
new FAIL: gdb.base/structs.exp: finish foo<n>; return 1 structs-tc
new FAIL: gdb.base/structs.exp: finish foo<n>; return 1 structs-td
new FAIL: gdb.base/structs.exp: finish foo<n>; return 1 structs-tf
new FAIL: gdb.base/structs.exp: finish foo<n>; return 1 structs-ti
new FAIL: gdb.base/structs.exp: finish foo<n>; return 1 structs-tl
new FAIL: gdb.base/structs.exp: finish foo<n>; return 1 structs-tld
new FAIL: gdb.base/structs.exp: finish foo<n>; return 1 structs-tll
new FAIL: gdb.base/structs.exp: finish foo<n>; return 1 structs-ts
new FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-tc
new FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-tc-ti
new FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-tc-tl
new FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-tc-ts
new FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-td-tf
new FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-tf
new FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-tf-tc
new FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-tf-td
new FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-ti
new FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-ti-tc
new FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-tl
new FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-tl-tc
new FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-ts
new FAIL: gdb.base/structs.exp: finish foo<n>; return 2 structs-ts-tc
new FAIL: gdb.base/structs.exp: finish foo<n>; return 3 structs-tc
new FAIL: gdb.base/structs.exp: finish foo<n>; return 3 structs-ts
new FAIL: gdb.base/structs.exp: finish foo<n>; return 4 structs-tc
new FAIL: gdb.base/structs.exp: finish foo<n>; return 4 structs-ts
new FAIL: gdb.base/structs.exp: finish foo<n>; return 5 structs-tc
new FAIL: gdb.base/structs.exp: finish foo<n>; return 6 structs-tc
new FAIL: gdb.base/structs.exp: finish foo<n>; return 7 structs-tc
new FAIL: gdb.base/structs.exp: finish foo<n>; return 8 structs-tc
new FAIL: gdb.base/structs.exp: p chartest
new FAIL: gdb.base/structs.exp: p/c L<n>; call 1 structs-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 1 structs-td
new FAIL: gdb.base/structs.exp: p/c L<n>; call 1 structs-tf
new FAIL: gdb.base/structs.exp: p/c L<n>; call 1 structs-ti
new FAIL: gdb.base/structs.exp: p/c L<n>; call 1 structs-tl
new FAIL: gdb.base/structs.exp: p/c L<n>; call 1 structs-tld
new FAIL: gdb.base/structs.exp: p/c L<n>; call 1 structs-tll
new FAIL: gdb.base/structs.exp: p/c L<n>; call 1 structs-ts
new FAIL: gdb.base/structs.exp: p/c L<n>; call 10 structs-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 11 structs-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 12 structs-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 13 structs-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 14 structs-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 15 structs-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 16 structs-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 17 structs-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tc-td
new FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tc-tf
new FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tc-ti
new FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tc-tl
new FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tc-tld
new FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tc-tll
new FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tc-ts
new FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-td
new FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-td-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-td-tf
new FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tf
new FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tf-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tf-td
new FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-ti
new FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-ti-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tl
new FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tl-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tld
new FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tld-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tll
new FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-tll-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-ts
new FAIL: gdb.base/structs.exp: p/c L<n>; call 2 structs-ts-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 3 structs-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 3 structs-tc-tf
new FAIL: gdb.base/structs.exp: p/c L<n>; call 3 structs-tc-ti
new FAIL: gdb.base/structs.exp: p/c L<n>; call 3 structs-tc-tl
new FAIL: gdb.base/structs.exp: p/c L<n>; call 3 structs-tc-ts
new FAIL: gdb.base/structs.exp: p/c L<n>; call 3 structs-tf
new FAIL: gdb.base/structs.exp: p/c L<n>; call 3 structs-tf-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 3 structs-ti
new FAIL: gdb.base/structs.exp: p/c L<n>; call 3 structs-ti-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 3 structs-tl
new FAIL: gdb.base/structs.exp: p/c L<n>; call 3 structs-tl-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 3 structs-ts
new FAIL: gdb.base/structs.exp: p/c L<n>; call 3 structs-ts-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 4 structs-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 4 structs-tc-tf
new FAIL: gdb.base/structs.exp: p/c L<n>; call 4 structs-tc-ti
new FAIL: gdb.base/structs.exp: p/c L<n>; call 4 structs-tc-tl
new FAIL: gdb.base/structs.exp: p/c L<n>; call 4 structs-tc-ts
new FAIL: gdb.base/structs.exp: p/c L<n>; call 4 structs-tf-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 4 structs-ti-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 4 structs-tl-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 4 structs-ts
new FAIL: gdb.base/structs.exp: p/c L<n>; call 4 structs-ts-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 5 structs-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 5 structs-tc-ts
new FAIL: gdb.base/structs.exp: p/c L<n>; call 5 structs-tf-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 5 structs-ti-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 5 structs-tl-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 5 structs-ts
new FAIL: gdb.base/structs.exp: p/c L<n>; call 5 structs-ts-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 6 structs-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 6 structs-tc-ts
new FAIL: gdb.base/structs.exp: p/c L<n>; call 6 structs-tf-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 6 structs-ti-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 6 structs-tl-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 6 structs-ts-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 7 structs-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 7 structs-ts-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 8 structs-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 8 structs-ts-tc
new FAIL: gdb.base/structs.exp: p/c L<n>; call 9 structs-tc
new FAIL: gdb.base/structs.exp: p/c fun<n>
new FAIL: gdb.base/structs.exp: return foo<n>; return 1 structs-tc
new FAIL: gdb.base/structs.exp: return foo<n>; return 1 structs-td
new FAIL: gdb.base/structs.exp: return foo<n>; return 1 structs-tf
new FAIL: gdb.base/structs.exp: return foo<n>; return 1 structs-ti
new FAIL: gdb.base/structs.exp: return foo<n>; return 1 structs-tl
new FAIL: gdb.base/structs.exp: return foo<n>; return 1 structs-tld
new FAIL: gdb.base/structs.exp: return foo<n>; return 1 structs-tll
new FAIL: gdb.base/structs.exp: return foo<n>; return 1 structs-ts
new FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-tc
new FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-tc-ti
new FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-tc-tl
new FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-tc-ts
new FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-td-tf
new FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-tf
new FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-tf-tc
new FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-tf-td
new FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-ti
new FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-ti-tc
new FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-tl
new FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-tl-tc
new FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-ts
new FAIL: gdb.base/structs.exp: return foo<n>; return 2 structs-ts-tc
new FAIL: gdb.base/structs.exp: return foo<n>; return 3 structs-tc
new FAIL: gdb.base/structs.exp: return foo<n>; return 3 structs-ts
new FAIL: gdb.base/structs.exp: return foo<n>; return 4 structs-tc
new FAIL: gdb.base/structs.exp: return foo<n>; return 4 structs-ts
new FAIL: gdb.base/structs.exp: return foo<n>; return 5 structs-tc
new FAIL: gdb.base/structs.exp: return foo<n>; return 6 structs-tc
new FAIL: gdb.base/structs.exp: return foo<n>; return 7 structs-tc
new FAIL: gdb.base/structs.exp: return foo<n>; return 8 structs-tc
new FAIL: gdb.base/structs.exp: value foo<n> finished; return 1 structs-tc
new FAIL: gdb.base/structs.exp: value foo<n> finished; return 1 structs-td
new FAIL: gdb.base/structs.exp: value foo<n> finished; return 1 structs-tf
new FAIL: gdb.base/structs.exp: value foo<n> finished; return 1 structs-ti
new FAIL: gdb.base/structs.exp: value foo<n> finished; return 1 structs-tl
new FAIL: gdb.base/structs.exp: value foo<n> finished; return 1 structs-tld
new FAIL: gdb.base/structs.exp: value foo<n> finished; return 1 structs-tll
new FAIL: gdb.base/structs.exp: value foo<n> finished; return 1 structs-ts
new FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-tc
new FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-tc-ti
new FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-tc-tl
new FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-tc-ts
new FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-td-tf
new FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-tf
new FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-tf-tc
new FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-tf-td
new FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-ti
new FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-ti-tc
new FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-tl
new FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-tl-tc
new FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-ts
new FAIL: gdb.base/structs.exp: value foo<n> finished; return 2 structs-ts-tc
new FAIL: gdb.base/structs.exp: value foo<n> finished; return 3 structs-tc
new FAIL: gdb.base/structs.exp: value foo<n> finished; return 3 structs-ts
new FAIL: gdb.base/structs.exp: value foo<n> finished; return 4 structs-tc
new FAIL: gdb.base/structs.exp: value foo<n> finished; return 4 structs-ts
new FAIL: gdb.base/structs.exp: value foo<n> finished; return 5 structs-tc
new FAIL: gdb.base/structs.exp: value foo<n> finished; return 6 structs-tc
new FAIL: gdb.base/structs.exp: value foo<n> finished; return 7 structs-tc
new FAIL: gdb.base/structs.exp: value foo<n> finished; return 8 structs-tc
new FAIL: gdb.base/structs.exp: value foo<n> returned; return 1 structs-tc
new FAIL: gdb.base/structs.exp: value foo<n> returned; return 1 structs-td
new FAIL: gdb.base/structs.exp: value foo<n> returned; return 1 structs-tf
new FAIL: gdb.base/structs.exp: value foo<n> returned; return 1 structs-ti
new FAIL: gdb.base/structs.exp: value foo<n> returned; return 1 structs-tl
new FAIL: gdb.base/structs.exp: value foo<n> returned; return 1 structs-tld
new FAIL: gdb.base/structs.exp: value foo<n> returned; return 1 structs-tll
new FAIL: gdb.base/structs.exp: value foo<n> returned; return 1 structs-ts
new FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-tc
new FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-tc-ti
new FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-tc-tl
new FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-tc-ts
new FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-td-tf
new FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-tf
new FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-tf-tc
new FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-tf-td
new FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-ti
new FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-ti-tc
new FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-tl
new FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-tl-tc
new FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-ts
new FAIL: gdb.base/structs.exp: value foo<n> returned; return 2 structs-ts-tc
new FAIL: gdb.base/structs.exp: value foo<n> returned; return 3 structs-tc
new FAIL: gdb.base/structs.exp: value foo<n> returned; return 3 structs-ts
new FAIL: gdb.base/structs.exp: value foo<n> returned; return 4 structs-tc
new FAIL: gdb.base/structs.exp: value foo<n> returned; return 4 structs-ts
new FAIL: gdb.base/structs.exp: value foo<n> returned; return 5 structs-tc
new FAIL: gdb.base/structs.exp: value foo<n> returned; return 6 structs-tc
new FAIL: gdb.base/structs.exp: value foo<n> returned; return 7 structs-tc
new FAIL: gdb.base/structs.exp: value foo<n> returned; return 8 structs-tc
new FAIL: gdb.base/structs.exp: zed L<n> for finish; return 1 structs-tc
new FAIL: gdb.base/structs.exp: zed L<n> for finish; return 1 structs-td
new FAIL: gdb.base/structs.exp: zed L<n> for finish; return 1 structs-tf
new FAIL: gdb.base/structs.exp: zed L<n> for finish; return 1 structs-ti
new FAIL: gdb.base/structs.exp: zed L<n> for finish; return 1 structs-tl
new FAIL: gdb.base/structs.exp: zed L<n> for finish; return 1 structs-tld
new FAIL: gdb.base/structs.exp: zed L<n> for finish; return 1 structs-tll
new FAIL: gdb.base/structs.exp: zed L<n> for finish; return 1 structs-ts
new FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-tc
new FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-tc-ti
new FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-tc-tl
new FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-tc-ts
new FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-td-tf
new FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-tf
new FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-tf-tc
new FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-tf-td
new FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-ti
new FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-ti-tc
new FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-tl
new FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-tl-tc
new FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-ts
new FAIL: gdb.base/structs.exp: zed L<n> for finish; return 2 structs-ts-tc
new FAIL: gdb.base/structs.exp: zed L<n> for finish; return 3 structs-tc
new FAIL: gdb.base/structs.exp: zed L<n> for finish; return 3 structs-ts
new FAIL: gdb.base/structs.exp: zed L<n> for finish; return 4 structs-tc
new FAIL: gdb.base/structs.exp: zed L<n> for finish; return 4 structs-ts
new FAIL: gdb.base/structs.exp: zed L<n> for finish; return 5 structs-tc
new FAIL: gdb.base/structs.exp: zed L<n> for finish; return 6 structs-tc
new FAIL: gdb.base/structs.exp: zed L<n> for finish; return 7 structs-tc
new FAIL: gdb.base/structs.exp: zed L<n> for finish; return 8 structs-tc
new FAIL: gdb.base/structs.exp: zed L<n> for return; return 1 structs-tc
new FAIL: gdb.base/structs.exp: zed L<n> for return; return 1 structs-td
new FAIL: gdb.base/structs.exp: zed L<n> for return; return 1 structs-tf
new FAIL: gdb.base/structs.exp: zed L<n> for return; return 1 structs-ti
new FAIL: gdb.base/structs.exp: zed L<n> for return; return 1 structs-tl
new FAIL: gdb.base/structs.exp: zed L<n> for return; return 1 structs-tld
new FAIL: gdb.base/structs.exp: zed L<n> for return; return 1 structs-tll
new FAIL: gdb.base/structs.exp: zed L<n> for return; return 1 structs-ts
new FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-tc
new FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-tc-ti
new FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-tc-tl
new FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-tc-ts
new FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-td-tf
new FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-tf
new FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-tf-tc
new FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-tf-td
new FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-ti
new FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-ti-tc
new FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-tl
new FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-tl-tc
new FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-ts
new FAIL: gdb.base/structs.exp: zed L<n> for return; return 2 structs-ts-tc
new FAIL: gdb.base/structs.exp: zed L<n> for return; return 3 structs-tc
new FAIL: gdb.base/structs.exp: zed L<n> for return; return 3 structs-ts
new FAIL: gdb.base/structs.exp: zed L<n> for return; return 4 structs-tc
new FAIL: gdb.base/structs.exp: zed L<n> for return; return 4 structs-ts
new FAIL: gdb.base/structs.exp: zed L<n> for return; return 5 structs-tc
new FAIL: gdb.base/structs.exp: zed L<n> for return; return 6 structs-tc
new FAIL: gdb.base/structs.exp: zed L<n> for return; return 7 structs-tc
new FAIL: gdb.base/structs.exp: zed L<n> for return; return 8 structs-tc
FAIL -> UNRESOLVED: gdb.cp/ref-params.exp: print f1
FAIL -> UNRESOLVED: gdb.cp/ref-params.exp: print mf1
FAIL -> UNRESOLVED: gdb.cp/ref-params.exp: print mf2
new UNRESOLVED: gdb.dwarf2/comp-unit-lang.exp: failed to prepare
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble bar
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble baz
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble foo
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble foo_low
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p bar_label - bar
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p baz_label - baz
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p foo_label - foo
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p foo_low_label - foo_low
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i bar+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i baz+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i foo+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i foo_low+
new UNRESOLVED: gdb.dwarf2/dwz.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dwz.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dwz.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: x/2i main+
new FAIL: gdb.dwarf2/varval.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/varval.exp: p main_label - main
new FAIL: gdb.dwarf2/varval.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/void-type.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/void-type.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i main+
PASS -> UNRESOLVED: gdb.fortran/types.exp: set language fortran
PASS -> UNRESOLVED: gdb.fortran/types.exp: set print sevenbit-strings
UNRESOLVED -> FAIL: gdb.gdb/unittest.exp: maintenance check xml-descriptions ${srcdir}/../features
UNRESOLVED -> FAIL: gdb.gdb/unittest.exp: maintenance selftest
new UNRESOLVED: gdb.python/py-as-string.exp: couldn't run to main.
new UNRESOLVED: gdb.python/py-recurse-unwind.exp: can't run to main
new UNRESOLVED: gdb.python/py-symtab.exp: can't run to main
==============================================

*** 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/68/68f7d34dd506d1ccdaab9e772a533f8e76a5fe19//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/68/68f7d34dd506d1ccdaab9e772a533f8e76a5fe19//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-09-27  8:20 [binutils-gdb] Revert "Improve ptrace-error detection on Linux targets" gdb-buildbot
@ 2019-09-27 16:07 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-09-27 16:07 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/801

Author:
        Sergio Durigan Junior <sergiodj@redhat.com>

Commit tested:
        50fa3001ce25e221ca2e54564b5589d29c4bed19

Subject of commit:
        Revert "Improve ptrace-error detection on Linux targets"

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/50/50fa3001ce25e221ca2e54564b5589d29c4bed19/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.ada/arr_enum_idx_w_gap.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/funcall_param.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/funcall_param.exp: p ident
new UNRESOLVED: gdb.ada/mi_catch_assert.exp: cannot run to main, testcase aborted
new UNRESOLVED: gdb.ada/mi_catch_assert.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.ada/null_array.exp: print my_matrix
new UNRESOLVED: gdb.ada/null_array.exp: print my_table
new FAIL: gdb.ada/null_array.exp: ptype my_table
new UNRESOLVED: gdb.ada/py_taft.exp: check if python 3
new UNRESOLVED: gdb.ada/py_taft.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.ada/py_taft.exp: python print
new UNRESOLVED: gdb.ada/py_taft.exp: python v = gdb.parse_and_eval
new UNRESOLVED: gdb.ada/py_taft.exp: verify python support
new UNRESOLVED: gdb.base/continue-after-aborted-step-over.exp: displaced-stepping=off: run to main
new UNRESOLVED: gdb.base/continue-after-aborted-step-over.exp: displaced-stepping=on: run to main
new UNRESOLVED: gdb.base/finish.exp: couldn't run to main
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 0
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 1
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: history entry is print 2
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 0
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 1
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: printing 2
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=2: set history remove-duplicates 2
new UNRESOLVED: gdb.base/line-symtabs.exp: can't run to main
new UNRESOLVED: gdb.base/return2.exp: couldn't run to main
new UNRESOLVED: gdb.base/sym-file.exp: can't run to main
PASS -> UNRESOLVED: gdb.cp/punctuator.exp: print
PASS -> UNRESOLVED: gdb.cp/punctuator.exp: set $u 1
PASS -> UNRESOLVED: gdb.cp/punctuator.exp: set $u 2
PASS -> UNRESOLVED: gdb.cp/punctuator.exp: set $u 3
PASS -> UNRESOLVED: gdb.cp/punctuator.exp: set $v 1
PASS -> UNRESOLVED: gdb.cp/punctuator.exp: set $v 2
PASS -> UNRESOLVED: gdb.cp/punctuator.exp: set $v 3
PASS -> UNRESOLVED: gdb.cp/punctuator.exp: set lang c++
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: disassemble g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: p g_label - g
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/dw2-bad-mips-linkage-name.exp: x/2i g+
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: console: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: disassemble func01
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: p func01_label - func01
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: x/2i func01+
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: x/2i main+
PASS -> UNRESOLVED: gdb.fortran/dot-ops.exp: set language fortran
PASS -> UNRESOLVED: gdb.fortran/exprs.exp: set language fortran
PASS -> UNRESOLVED: gdb.fortran/exprs.exp: set print sevenbit-strings
FAIL -> UNRESOLVED: gdb.gdb/unittest.exp: maintenance check xml-descriptions ${srcdir}/../features
FAIL -> UNRESOLVED: gdb.gdb/unittest.exp: maintenance selftest
PASS -> UNRESOLVED: gdb.go/basic-types.exp: set language go
new FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: breakpoint hit in callee3
new FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: create varobj for $pc in frame 0
new FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: create varobj for $pc in frame 1
new FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: create varobj for $pc in frame 2
new FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: create varobj for $pc in frame 3
new FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: create varobj for 'global_zero + $pc' in frame 0
new FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: create varobj for 'global_zero + $pc' in frame 1
new FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: create varobj for 'global_zero + $pc' in frame 2
new FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: create varobj for 'global_zero + $pc' in frame 3
new UNRESOLVED: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: insert breakpoint at basics.c:callee3
new FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: next instruction in callee3
new FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: varobj var1 has changed
new FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: varobj var2 has changed
new FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: varobj var3 has not changed
new FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: varobj var4 has not changed
new FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: varobj var5 has not changed
new FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: varobj var6 has not changed
new FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: varobj var7 has not changed
new FAIL: gdb.mi/mi-frame-regs.exp: do_fixed_varobj_test: varobj var8 has not changed
new FAIL: gdb.mi/mi-frame-regs.exp: do_floating_varobj_test: -var-update for frame 1
new FAIL: gdb.mi/mi-frame-regs.exp: do_floating_varobj_test: breakpoint hit in callee1
new UNRESOLVED: gdb.mi/mi-frame-regs.exp: do_floating_varobj_test: create varobj for pc in frame 0
PASS -> UNRESOLVED: gdb.pascal/print.exp: set language pascal
new UNRESOLVED: gdb.python/py-completion.exp: check if python 3
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #1
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #2
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #3
PASS -> UNRESOLVED: gdb.python/py-completion.exp: discard #4
PASS -> UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completel'
PASS -> UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit1 c'
PASS -> UNRESOLVED: gdb.python/py-completion.exp: list all completions of 'complete completelimit2 c'
PASS -> UNRESOLVED: gdb.python/py-completion.exp: load python file
PASS -> UNRESOLVED: gdb.python/py-completion.exp: load python file again
new UNRESOLVED: gdb.python/py-completion.exp: show editing
new UNRESOLVED: gdb.python/py-completion.exp: verify python support
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb PARAM_ZUINTEGER_UNLIMITED - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Simple gdb booleanparameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: Throwing gdb parameter - python
new UNRESOLVED: gdb.python/py-parameter.exp: check if python 3
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value can be set to -1
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: check that PARAM_ZUINTEGER value is -1 after setting
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum gdb parameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file gdb parameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: gdb.GdbError does not show Python stack
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python print
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -1
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER.value = -5
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: python test_param_PARAM_ZUINTEGER_UNLIMITED.value = -5
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: set enum to two
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: set invalid enum parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: set new file parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: set test-file-param
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show initial file value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show new file value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show parameter is initial value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show parameter is new value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show parameter off
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: show parameter on
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test enum parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test file parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test general help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test new file parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test set help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: test show help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: verify python support
new UNRESOLVED: gdb.python/py-prettyprint.exp: check if python 3
new UNRESOLVED: gdb.python/py-prettyprint.exp: verify python support
new UNRESOLVED: gdb.python/py-value.exp: can't run to main
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sigall-precsave.exp
new UNRESOLVED: gdb.server/ext-restart.exp: set remote exec-file
==============================================

*** 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/50/50fa3001ce25e221ca2e54564b5589d29c4bed19//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/50/50fa3001ce25e221ca2e54564b5589d29c4bed19//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-09-27  7:01 [binutils-gdb] Improve ptrace-error detection on Linux targets gdb-buildbot
@ 2019-09-27 12:25 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-09-27 12:25 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/800

Author:
        Sergio Durigan Junior <sergiodj@redhat.com>

Commit tested:
        381beca6146ac68b57edf47d28cdb335fbd11635

Subject of commit:
        Improve ptrace-error detection on Linux targets

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/38/381beca6146ac68b57edf47d28cdb335fbd11635/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/O2_float_param.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/access_tagged_param.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/access_to_packed_array.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/access_to_unbounded_array.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/addr_arith.exp: compilation foo_na07_019.adb
PASS -> FAIL: gdb.ada/aliased_array.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/arr_acc_idx_w_gap.exp: compilation enum_with_gap_main.adb
PASS -> FAIL: gdb.ada/arr_arr.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/arr_enum_idx_w_gap.exp: compilation foo_q418_043.adb
PASS -> FAIL: gdb.ada/array_bounds.exp: compilation bar.adb
PASS -> FAIL: gdb.ada/array_char_idx.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/array_of_variable_length.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/array_ptr_renaming.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/array_return.exp: compilation p.adb
PASS -> FAIL: gdb.ada/array_subscript_addr.exp: compilation p.adb
PASS -> FAIL: gdb.ada/arraydim.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/arrayidx.exp: compilation p.adb
PASS -> FAIL: gdb.ada/arrayparam.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/arrayptr.exp: compilation foo.adb
PASS -> UNRESOLVED: gdb.ada/assign_1.exp: changing the language to ada
PASS -> UNRESOLVED: gdb.ada/assign_1.exp: set convenience variable $xxx to 1
PASS -> FAIL: gdb.ada/assign_arr.exp: compilation main_p324_051.adb
PASS -> FAIL: gdb.ada/atomic_enum.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/attr_ref_and_charlit.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/bad-task-bp-keyword.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/bias.exp: compilation bias.adb
PASS -> FAIL: gdb.ada/big_packed_array.exp: compilation foo_ra24_010.adb
PASS -> UNRESOLVED: gdb.ada/boolean_expr.exp: changing the language to ada
PASS -> UNRESOLVED: gdb.ada/boolean_expr.exp: print 1 = 2
PASS -> UNRESOLVED: gdb.ada/boolean_expr.exp: print 3 = 3
PASS -> FAIL: gdb.ada/bp_c_mixed_case.exp: compilation foo_h731_021.adb
PASS -> FAIL: gdb.ada/bp_enum_homonym.exp: compilation p.adb
PASS -> FAIL: gdb.ada/bp_fun_addr.exp: compilation bp_fun_addr.adb
PASS -> FAIL: gdb.ada/bp_inlined_func.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/bp_on_var.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/bp_range_type.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/bp_reset.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/byte_packed_arr.exp: compilation reprod_main.adb
PASS -> FAIL: gdb.ada/call_pn.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/catch_assert_if.exp: compilation bla.adb
PASS -> FAIL: gdb.ada/catch_ex.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/char_enum.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/char_param.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/complete.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/cond_lang.exp: compilation a.adb
PASS -> FAIL: gdb.ada/convvar_comp.exp: compilation pb16_063.adb
PASS -> FAIL: gdb.ada/dgopt.exp: compilation x.adb
PASS -> FAIL: gdb.ada/disc_arr_bound.exp: compilation foo_n612_026.adb
PASS -> FAIL: gdb.ada/display_nested.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/dot_all.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/dyn_arrayidx.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/dyn_loc.exp: compilation p.adb
PASS -> FAIL: gdb.ada/dyn_stride.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/enum_idx_packed.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/excep_handle.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/expr_delims.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/expr_with_funcall.exp: compilation expr_r821_013.adb
PASS -> FAIL: gdb.ada/exprs.exp: compilation p.adb
PASS -> FAIL: gdb.ada/fin_fun_out.exp: compilation foo_o525_013.adb
PASS -> FAIL: gdb.ada/fixed_cmp.exp: compilation fixed.adb
PASS -> FAIL: gdb.ada/fixed_points.exp: compilation fixed_points.adb
PASS -> FAIL: gdb.ada/float_param.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/formatted_ref.exp: compilation formatted_ref.adb
PASS -> FAIL: gdb.ada/frame_arg_lang.exp: compilation bla.adb
PASS -> FAIL: gdb.ada/frame_args.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/fullname_bp.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/fun_addr.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/fun_in_declare.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/fun_overload_menu.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/fun_renaming.exp: compilation fun_renaming.adb
PASS -> FAIL: gdb.ada/funcall_char.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/funcall_param.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/funcall_ptr.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/funcall_ref.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/homonym.exp: compilation homonym_main.adb
PASS -> FAIL: gdb.ada/info_addr_mixed_case.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/info_exc.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/info_locals_renaming.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/int_deref.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/interface.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/iwide.exp: compilation p.adb
PASS -> FAIL: gdb.ada/lang_switch.exp: compilation lang_switch.adb
PASS -> FAIL: gdb.ada/length_cond.exp: compilation length_cond.adb
PASS -> FAIL: gdb.ada/maint_with_ada.exp: compilation var_arr_typedef.adb
PASS -> FAIL: gdb.ada/mi_catch_assert.exp: compilation bla.adb
PASS -> FAIL: gdb.ada/mi_catch_ex.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/mi_catch_ex_hand.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/mi_dyn_arr.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/mi_ex_cond.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/mi_exc_info.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/mi_interface.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/mi_ref_changeable.exp: compilation foo_rb20_056.adb
PASS -> FAIL: gdb.ada/mi_string_access.exp: compilation bar.adb
PASS -> FAIL: gdb.ada/mi_task_arg.exp: compilation task_switch.adb
PASS -> FAIL: gdb.ada/mi_task_info.exp: compilation task_switch.adb
PASS -> FAIL: gdb.ada/mi_var_array.exp: compilation bar.adb
PASS -> FAIL: gdb.ada/mi_var_union.exp: compilation bar.adb
PASS -> FAIL: gdb.ada/minsyms.exp: compilation foo_qb07_057.adb
PASS -> FAIL: gdb.ada/mod_from_name.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/n_arr_bound.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/nested.exp: compilation hello.adb
PASS -> FAIL: gdb.ada/notcplusplus.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/null_array.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/null_record.exp: compilation null_record.adb
PASS -> FAIL: gdb.ada/operator_bp.exp: compilation ops_test.adb
PASS -> FAIL: gdb.ada/optim_drec.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/out_of_line_in_inlined.exp: compilation foo_o224_021.adb
PASS -> FAIL: gdb.ada/packed_array.exp: compilation pa.adb
PASS -> FAIL: gdb.ada/packed_array_assign.exp: compilation tester.adb
PASS -> FAIL: gdb.ada/packed_tagged.exp: compilation comp_bug.adb
PASS -> FAIL: gdb.ada/pckd_arr_ren.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/pckd_neg.exp: compilation foo_o508_021.adb
PASS -> FAIL: gdb.ada/pkd_arr_elem.exp: compilation failure.adb
PASS -> FAIL: gdb.ada/pp-rec-component.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/print_chars.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/print_pc.exp: compilation dummy.adb
PASS -> FAIL: gdb.ada/ptr_typedef.exp: compilation foo.adb
PASS -> UNRESOLVED: gdb.ada/ptype_arith_binop.exp: ptype 3 * 2.0
PASS -> UNRESOLVED: gdb.ada/ptype_arith_binop.exp: ptype 3 / 2.0
PASS -> UNRESOLVED: gdb.ada/ptype_arith_binop.exp: set lang ada
PASS -> FAIL: gdb.ada/ptype_array.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/ptype_field.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/ptype_tagged_param.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/py_range.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/py_taft.exp: compilation main.adb
PASS -> FAIL: gdb.ada/rdv_wait.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/rec_comp.exp: compilation bar_o203_012.adb
PASS -> FAIL: gdb.ada/rec_return.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/ref_param.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/ref_tick_size.exp: compilation p.adb
PASS -> FAIL: gdb.ada/repeat_dyn.exp: compilation foo_oc22_002.adb
PASS -> FAIL: gdb.ada/same_component_name.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/same_enum.exp: compilation a.adb
PASS -> FAIL: gdb.ada/scoped_watch.exp: compilation foo_p708_025.adb
PASS -> FAIL: gdb.ada/set_pckd_arr_elt.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/set_wstr.exp: compilation a.adb
PASS -> FAIL: gdb.ada/small_reg_param.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/str_binop_equal.exp: compilation foo_p211_061.adb
PASS -> FAIL: gdb.ada/str_ref_cmp.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/str_uninit.exp: compilation parse.adb
PASS -> FAIL: gdb.ada/sym_print_name.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/taft_type.exp: compilation p.adb
PASS -> FAIL: gdb.ada/tagged.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/tagged_access.exp: compilation p.adb
PASS -> FAIL: gdb.ada/tagged_not_init.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/task_bp.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: compilation crash.adb
PASS -> FAIL: gdb.ada/tasks.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/tick_last_segv.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/tick_length_array_enum_idx.exp: compilation foo_n207_004.adb
PASS -> FAIL: gdb.ada/type_coercion.exp: compilation assign.adb
PASS -> FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/uninitialized_vars.exp: compilation parse.adb
PASS -> FAIL: gdb.ada/var_arr_attrs.exp: compilation foo_o115_002.adb
PASS -> FAIL: gdb.ada/var_arr_typedef.exp: compilation var_arr_typedef.adb
PASS -> FAIL: gdb.ada/var_rec_arr.exp: compilation foo_na09_042.adb
PASS -> FAIL: gdb.ada/variant_record_packed_array.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/varsize_limit.exp: compilation vsizelim.adb
PASS -> FAIL: gdb.ada/vla.exp: compilation vla.adb
PASS -> FAIL: gdb.ada/watch_arg.exp: compilation watch.adb
PASS -> FAIL: gdb.ada/watch_minus_l.exp: compilation foo_ra10_006.adb
PASS -> FAIL: gdb.ada/whatis_array_val.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/widewide.exp: compilation foo.adb
PASS -> FAIL: gdb.ada/win_fu_syms.exp: compilation foo.adb
PASS -> UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: set tdesc filename $srcdir/gdb.arch/arc-tdesc-cpu.xml
new UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: set tdesc filename /work/ubuntu-aarch64-native-gdbserver-m64/build/gdb/testsuite/outputs/gdb.arch/arc-tdesc-cpu/trivial.xml
PASS -> UNRESOLVED: gdb.arch/arc-tdesc-cpu.exp: setting HS architecture
PASS -> UNRESOLVED: gdb.arch/i386-biarch-core.exp: .text is readable
new UNRESOLVED: gdb.arch/i386-biarch-core.exp: complete set architecture i386
PASS -> UNRESOLVED: gdb.arch/i386-biarch-core.exp: complete set gnutarget
PASS -> UNRESOLVED: gdb.arch/i386-biarch-core.exp: load core file
PASS -> UNRESOLVED: gdb.base/alias.exp: -a print elements 47
PASS -> UNRESOLVED: gdb.base/alias.exp: abbrev -a not present in help command list
PASS -> UNRESOLVED: gdb.base/alias.exp: abbrev set2 not present in help command list
PASS -> UNRESOLVED: gdb.base/alias.exp: abbrev set3 not present in help command list
PASS -> UNRESOLVED: gdb.base/alias.exp: abbrev set4 not present in help command list
PASS -> UNRESOLVED: gdb.base/alias.exp: abbrev set5 not present in help command list
PASS -> UNRESOLVED: gdb.base/alias.exp: abbrev set6 not present in help command list
PASS -> UNRESOLVED: gdb.base/alias.exp: alias -a -- -a = set
PASS -> UNRESOLVED: gdb.base/alias.exp: alias -a -- set6 = set
PASS -> UNRESOLVED: gdb.base/alias.exp: alias -a set2=set
PASS -> UNRESOLVED: gdb.base/alias.exp: alias -a set3= set
PASS -> UNRESOLVED: gdb.base/alias.exp: alias -a set4 =set
PASS -> UNRESOLVED: gdb.base/alias.exp: alias -a set5 = set
PASS -> UNRESOLVED: gdb.base/alias.exp: alias assigne
PASS -> UNRESOLVED: gdb.base/alias.exp: alias assigne imprime
PASS -> UNRESOLVED: gdb.base/alias.exp: alias assigne imprime limite-elements
PASS -> UNRESOLVED: gdb.base/alias.exp: alias foo=bar
PASS -> UNRESOLVED: gdb.base/alias.exp: alias set pr elms = set p elem
PASS -> UNRESOLVED: gdb.base/alias.exp: alias set print max-elements using assigne imprime
PASS -> UNRESOLVED: gdb.base/alias.exp: alias set2=set
PASS -> UNRESOLVED: gdb.base/alias.exp: alias spe = set p elem
PASS -> UNRESOLVED: gdb.base/alias.exp: assigne imprime elements 53
PASS -> UNRESOLVED: gdb.base/alias.exp: assigne imprime limite-elements 54
PASS -> UNRESOLVED: gdb.base/alias.exp: assigne imprime prefix not defined
PASS -> UNRESOLVED: gdb.base/alias.exp: assigne print elements 52
PASS -> UNRESOLVED: gdb.base/alias.exp: help set print
PASS -> UNRESOLVED: gdb.base/alias.exp: mismatched length
PASS -> UNRESOLVED: gdb.base/alias.exp: mismatched prefix
PASS -> UNRESOLVED: gdb.base/alias.exp: set imprime elements 55
PASS -> UNRESOLVED: gdb.base/alias.exp: set imprime prefix not defined
PASS -> UNRESOLVED: gdb.base/alias.exp: set pr elms 51
PASS -> UNRESOLVED: gdb.base/alias.exp: set print limite-elements 56
PASS -> UNRESOLVED: gdb.base/alias.exp: set print max-elements 57
PASS -> UNRESOLVED: gdb.base/alias.exp: set2 print elements 42
PASS -> UNRESOLVED: gdb.base/alias.exp: set3 print elements 43
PASS -> UNRESOLVED: gdb.base/alias.exp: set4 print elements 44
PASS -> UNRESOLVED: gdb.base/alias.exp: set5 print elements 45
PASS -> UNRESOLVED: gdb.base/alias.exp: set6 print elements 46
PASS -> UNRESOLVED: gdb.base/alias.exp: spe 50
PASS -> UNRESOLVED: gdb.base/alias.exp: verify -a
PASS -> UNRESOLVED: gdb.base/alias.exp: verify 52
PASS -> UNRESOLVED: gdb.base/alias.exp: verify 53
PASS -> UNRESOLVED: gdb.base/alias.exp: verify 54
PASS -> UNRESOLVED: gdb.base/alias.exp: verify 55
PASS -> UNRESOLVED: gdb.base/alias.exp: verify 56
PASS -> UNRESOLVED: gdb.base/alias.exp: verify 57
PASS -> UNRESOLVED: gdb.base/alias.exp: verify set pr elms
PASS -> UNRESOLVED: gdb.base/alias.exp: verify set2
PASS -> UNRESOLVED: gdb.base/alias.exp: verify set3
PASS -> UNRESOLVED: gdb.base/alias.exp: verify set4
PASS -> UNRESOLVED: gdb.base/alias.exp: verify set5
PASS -> UNRESOLVED: gdb.base/alias.exp: verify set6
PASS -> UNRESOLVED: gdb.base/alias.exp: verify spe
PASS -> FAIL: gdb.base/all-architectures-0.exp: all passed
PASS -> FAIL: gdb.base/all-architectures-0.exp: at least one architecture
PASS -> FAIL: gdb.base/all-architectures-0.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-0.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-0.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-0.exp: set max-completions unlimited
PASS -> FAIL: gdb.base/all-architectures-1.exp: all passed
PASS -> FAIL: gdb.base/all-architectures-1.exp: at least one architecture
PASS -> FAIL: gdb.base/all-architectures-1.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-1.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-1.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-1.exp: set max-completions unlimited
PASS -> FAIL: gdb.base/all-architectures-2.exp: all passed
PASS -> FAIL: gdb.base/all-architectures-2.exp: at least one architecture
PASS -> FAIL: gdb.base/all-architectures-2.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-2.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-2.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-2.exp: set max-completions unlimited
PASS -> FAIL: gdb.base/all-architectures-3.exp: all passed
PASS -> FAIL: gdb.base/all-architectures-3.exp: at least one architecture
PASS -> FAIL: gdb.base/all-architectures-3.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-3.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-3.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-3.exp: set max-completions unlimited
PASS -> FAIL: gdb.base/all-architectures-4.exp: all passed
PASS -> FAIL: gdb.base/all-architectures-4.exp: at least one architecture
PASS -> FAIL: gdb.base/all-architectures-4.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-4.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-4.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-4.exp: set max-completions unlimited
PASS -> FAIL: gdb.base/all-architectures-5.exp: all passed
PASS -> FAIL: gdb.base/all-architectures-5.exp: at least one architecture
PASS -> FAIL: gdb.base/all-architectures-5.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-5.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-5.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-5.exp: set max-completions unlimited
PASS -> FAIL: gdb.base/all-architectures-6.exp: all passed
PASS -> FAIL: gdb.base/all-architectures-6.exp: at least one architecture
PASS -> FAIL: gdb.base/all-architectures-6.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-6.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-6.exp: set max-completions unlimited
PASS -> FAIL: gdb.base/all-architectures-7.exp: all passed
PASS -> FAIL: gdb.base/all-architectures-7.exp: at least one architecture
PASS -> FAIL: gdb.base/all-architectures-7.exp: at least one osabi
new UNRESOLVED: gdb.base/all-architectures-7.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-7.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-7.exp: set max-completions unlimited
new FAIL: gdb.base/argv0-symlink.exp: argv[0] should be available on this target
new UNRESOLVED: gdb.base/argv0-symlink.exp: break main
new UNRESOLVED: gdb.base/argv0-symlink.exp: p argc
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print elements 200
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print elements unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print repeats 200
new UNRESOLVED: gdb.base/argv0-symlink.exp: set print repeats unlimited
new UNRESOLVED: gdb.base/argv0-symlink.exp: show print elements
new UNRESOLVED: gdb.base/argv0-symlink.exp: show print repeats
PASS -> UNRESOLVED: gdb.base/bad-file.exp: directory
PASS -> UNRESOLVED: gdb.base/bad-file.exp: neither file nor directory
PASS -> UNRESOLVED: gdb.base/bad-file.exp: non-existent file
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "info source": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "set not-a-thing 4" -x good-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -ex "set not-a-thing 4": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -jslkflsdjlkfjlksdjf: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x bad-commands -ex "info source": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x bad-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands -ex "set not-a-thing 4": spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands -x bad-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch -x good-commands: spawn
new UNRESOLVED: gdb.base/batch-exit-status.exp: -batch: spawn
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of !0
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of !1
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of !10
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of !100
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of !1000
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of !2
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of -!0
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of -1 < 0 > 1
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of -3>4
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 0 == 8 > 128 >> 1 + 2 * 2
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 0 || 1 && 0 | 0 ^ 0 == 8
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 0 || 1 && 0 | 0 ^ 0 == 8 > 128 >>1 +2 *2
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 0.0 || 0
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 0.0 || 1.0
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 1.0 || 0
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 10 & 5
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 10 ^ 5
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 10 | 5
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 15 ^ 10 ^ 5 ^ 7
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 2 > -3
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 3 * 2 / 4.0 * 2.0
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 3!=3.0
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 3!=5.0
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 3.5 < -4.0
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 3.5 < 4.0
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 3==3.0
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 3==4.0
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 3>=2.5
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 3>=4.5
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of 8 << 2 >> 4
PASS -> UNRESOLVED: gdb.base/bitops.exp: print value of ~-!0
PASS -> UNRESOLVED: gdb.base/command-line-input.exp: print 1\\n + 2
PASS -> UNRESOLVED: gdb.base/command-line-input.exp: print 1\\n2
PASS -> UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: cmd complete ""
PASS -> UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: set max-completions 1
new UNRESOLVED: gdb.base/complete-empty.exp: empty-input-line: show editing
new UNRESOLVED: gdb.base/complete-empty.exp: show editing
new UNRESOLVED: gdb.base/default.exp:
PASS -> UNRESOLVED: gdb.base/default.exp: add-symbol-file
PASS -> UNRESOLVED: gdb.base/default.exp: append
PASS -> UNRESOLVED: gdb.base/default.exp: append binary
PASS -> UNRESOLVED: gdb.base/default.exp: append binary memory
PASS -> UNRESOLVED: gdb.base/default.exp: append binary value
PASS -> UNRESOLVED: gdb.base/default.exp: append memory
PASS -> UNRESOLVED: gdb.base/default.exp: append value
PASS -> UNRESOLVED: gdb.base/default.exp: call
PASS -> UNRESOLVED: gdb.base/default.exp: catch
FAIL -> UNRESOLVED: gdb.base/default.exp: cd
new UNRESOLVED: gdb.base/default.exp: check if python 3
PASS -> UNRESOLVED: gdb.base/default.exp: clear
PASS -> UNRESOLVED: gdb.base/default.exp: commands
PASS -> UNRESOLVED: gdb.base/default.exp: condition
PASS -> UNRESOLVED: gdb.base/default.exp: continue
PASS -> UNRESOLVED: gdb.base/default.exp: continue "c" abbreviation
PASS -> UNRESOLVED: gdb.base/default.exp: core-file
PASS -> UNRESOLVED: gdb.base/default.exp: define
PASS -> UNRESOLVED: gdb.base/default.exp: delete
PASS -> UNRESOLVED: gdb.base/default.exp: delete "d" abbreviation
PASS -> UNRESOLVED: gdb.base/default.exp: delete breakpoints
PASS -> UNRESOLVED: gdb.base/default.exp: delete display prompt
PASS -> UNRESOLVED: gdb.base/default.exp: detach
PASS -> UNRESOLVED: gdb.base/default.exp: directory prompt
PASS -> UNRESOLVED: gdb.base/default.exp: disable
PASS -> UNRESOLVED: gdb.base/default.exp: disable "dis" abbreviation
PASS -> UNRESOLVED: gdb.base/default.exp: disable "disa" abbreviation
PASS -> UNRESOLVED: gdb.base/default.exp: disable breakpoints
PASS -> UNRESOLVED: gdb.base/default.exp: disable display
PASS -> UNRESOLVED: gdb.base/default.exp: disassemble
PASS -> UNRESOLVED: gdb.base/default.exp: display
PASS -> UNRESOLVED: gdb.base/default.exp: do
PASS -> UNRESOLVED: gdb.base/default.exp: document
PASS -> UNRESOLVED: gdb.base/default.exp: down
PASS -> UNRESOLVED: gdb.base/default.exp: down-silently
PASS -> UNRESOLVED: gdb.base/default.exp: dump
PASS -> UNRESOLVED: gdb.base/default.exp: dump binary
PASS -> UNRESOLVED: gdb.base/default.exp: dump binary memory
PASS -> UNRESOLVED: gdb.base/default.exp: dump binary value
PASS -> UNRESOLVED: gdb.base/default.exp: dump ihex
PASS -> UNRESOLVED: gdb.base/default.exp: dump ihex memory
PASS -> UNRESOLVED: gdb.base/default.exp: dump ihex value
PASS -> UNRESOLVED: gdb.base/default.exp: dump memory
PASS -> UNRESOLVED: gdb.base/default.exp: dump srec
PASS -> UNRESOLVED: gdb.base/default.exp: dump srec memory
PASS -> UNRESOLVED: gdb.base/default.exp: dump srec value
PASS -> UNRESOLVED: gdb.base/default.exp: dump tekhex
PASS -> UNRESOLVED: gdb.base/default.exp: dump tekhex memory
PASS -> UNRESOLVED: gdb.base/default.exp: dump tekhex value
PASS -> UNRESOLVED: gdb.base/default.exp: dump value
PASS -> UNRESOLVED: gdb.base/default.exp: echo
PASS -> UNRESOLVED: gdb.base/default.exp: enable
PASS -> UNRESOLVED: gdb.base/default.exp: enable breakpoints
PASS -> UNRESOLVED: gdb.base/default.exp: enable breakpoints delete
PASS -> UNRESOLVED: gdb.base/default.exp: enable breakpoints once
PASS -> UNRESOLVED: gdb.base/default.exp: enable delete
PASS -> UNRESOLVED: gdb.base/default.exp: enable display
PASS -> UNRESOLVED: gdb.base/default.exp: enable once
PASS -> UNRESOLVED: gdb.base/default.exp: fg
PASS -> UNRESOLVED: gdb.base/default.exp: finish
PASS -> UNRESOLVED: gdb.base/default.exp: forward-search
PASS -> UNRESOLVED: gdb.base/default.exp: frame
PASS -> UNRESOLVED: gdb.base/default.exp: frame "f" abbreviation
PASS -> UNRESOLVED: gdb.base/default.exp: gcore
PASS -> UNRESOLVED: gdb.base/default.exp: generate-core-file
PASS -> UNRESOLVED: gdb.base/default.exp: handle
PASS -> UNRESOLVED: gdb.base/default.exp: help
PASS -> UNRESOLVED: gdb.base/default.exp: help "h" abbreviation
PASS -> UNRESOLVED: gdb.base/default.exp: ignore
PASS -> UNRESOLVED: gdb.base/default.exp: info
PASS -> UNRESOLVED: gdb.base/default.exp: info "i" abbreviation
PASS -> UNRESOLVED: gdb.base/default.exp: info address
PASS -> UNRESOLVED: gdb.base/default.exp: info all-registers
PASS -> UNRESOLVED: gdb.base/default.exp: info args
PASS -> UNRESOLVED: gdb.base/default.exp: info bogus-gdb-command
PASS -> UNRESOLVED: gdb.base/default.exp: info breakpoints
PASS -> UNRESOLVED: gdb.base/default.exp: info copying
PASS -> UNRESOLVED: gdb.base/default.exp: info display
PASS -> UNRESOLVED: gdb.base/default.exp: info files
PASS -> UNRESOLVED: gdb.base/default.exp: info float
PASS -> UNRESOLVED: gdb.base/default.exp: info frame
PASS -> UNRESOLVED: gdb.base/default.exp: info frame "f" abbreviation
PASS -> UNRESOLVED: gdb.base/default.exp: info functions
PASS -> UNRESOLVED: gdb.base/default.exp: info locals
PASS -> UNRESOLVED: gdb.base/default.exp: info program
PASS -> UNRESOLVED: gdb.base/default.exp: info registers
PASS -> UNRESOLVED: gdb.base/default.exp: info set
PASS -> UNRESOLVED: gdb.base/default.exp: info source
PASS -> UNRESOLVED: gdb.base/default.exp: info sources
PASS -> UNRESOLVED: gdb.base/default.exp: info stack
PASS -> UNRESOLVED: gdb.base/default.exp: info stack "s" abbreviation
PASS -> UNRESOLVED: gdb.base/default.exp: info symbol
PASS -> UNRESOLVED: gdb.base/default.exp: info target
PASS -> UNRESOLVED: gdb.base/default.exp: info terminal
PASS -> UNRESOLVED: gdb.base/default.exp: info threads
PASS -> UNRESOLVED: gdb.base/default.exp: info types
PASS -> UNRESOLVED: gdb.base/default.exp: info variables
PASS -> UNRESOLVED: gdb.base/default.exp: info vector
PASS -> UNRESOLVED: gdb.base/default.exp: info warranty
PASS -> UNRESOLVED: gdb.base/default.exp: info watchpoints
PASS -> UNRESOLVED: gdb.base/default.exp: inspect
PASS -> UNRESOLVED: gdb.base/default.exp: jump
PASS -> UNRESOLVED: gdb.base/default.exp: kill
PASS -> UNRESOLVED: gdb.base/default.exp: list
PASS -> UNRESOLVED: gdb.base/default.exp: list "l" abbreviation
PASS -> UNRESOLVED: gdb.base/default.exp: load
PASS -> UNRESOLVED: gdb.base/default.exp: next
PASS -> UNRESOLVED: gdb.base/default.exp: next "n" abbreviation
PASS -> UNRESOLVED: gdb.base/default.exp: nexti
PASS -> UNRESOLVED: gdb.base/default.exp: nexti "ni" abbreviation
PASS -> UNRESOLVED: gdb.base/default.exp: output
PASS -> UNRESOLVED: gdb.base/default.exp: overlay
PASS -> UNRESOLVED: gdb.base/default.exp: overlay auto
PASS -> UNRESOLVED: gdb.base/default.exp: overlay list
PASS -> UNRESOLVED: gdb.base/default.exp: overlay manual #1
PASS -> UNRESOLVED: gdb.base/default.exp: overlay manual #2
PASS -> UNRESOLVED: gdb.base/default.exp: overlay map #1
PASS -> UNRESOLVED: gdb.base/default.exp: overlay map #2
PASS -> UNRESOLVED: gdb.base/default.exp: overlay off
PASS -> UNRESOLVED: gdb.base/default.exp: overlay on
PASS -> UNRESOLVED: gdb.base/default.exp: overlay unmap #1
PASS -> UNRESOLVED: gdb.base/default.exp: overlay unmap #2
PASS -> UNRESOLVED: gdb.base/default.exp: print
PASS -> UNRESOLVED: gdb.base/default.exp: print "p" abbreviation
PASS -> UNRESOLVED: gdb.base/default.exp: printf
PASS -> UNRESOLVED: gdb.base/default.exp: ptype
PASS -> UNRESOLVED: gdb.base/default.exp: pwd
PASS -> UNRESOLVED: gdb.base/default.exp: rbreak
PASS -> UNRESOLVED: gdb.base/default.exp: restore
PASS -> UNRESOLVED: gdb.base/default.exp: return
PASS -> UNRESOLVED: gdb.base/default.exp: reverse-search
PASS -> UNRESOLVED: gdb.base/default.exp: search
PASS -> UNRESOLVED: gdb.base/default.exp: section
PASS -> UNRESOLVED: gdb.base/default.exp: set
PASS -> UNRESOLVED: gdb.base/default.exp: set annotate
PASS -> UNRESOLVED: gdb.base/default.exp: set args
PASS -> UNRESOLVED: gdb.base/default.exp: set check "c" abbreviation
PASS -> UNRESOLVED: gdb.base/default.exp: set check "ch" abbreviation
PASS -> UNRESOLVED: gdb.base/default.exp: set check "check" abbreviation
PASS -> UNRESOLVED: gdb.base/default.exp: set check range
PASS -> UNRESOLVED: gdb.base/default.exp: set check type
PASS -> UNRESOLVED: gdb.base/default.exp: set complaints
PASS -> UNRESOLVED: gdb.base/default.exp: set confirm
PASS -> UNRESOLVED: gdb.base/default.exp: set environment
PASS -> UNRESOLVED: gdb.base/default.exp: set height
PASS -> UNRESOLVED: gdb.base/default.exp: set history
PASS -> UNRESOLVED: gdb.base/default.exp: set history expansion
PASS -> UNRESOLVED: gdb.base/default.exp: set history filename
PASS -> UNRESOLVED: gdb.base/default.exp: set history save
PASS -> UNRESOLVED: gdb.base/default.exp: set history save off
PASS -> UNRESOLVED: gdb.base/default.exp: set history size
PASS -> UNRESOLVED: gdb.base/default.exp: set language
PASS -> UNRESOLVED: gdb.base/default.exp: set listsize
PASS -> UNRESOLVED: gdb.base/default.exp: set print
PASS -> UNRESOLVED: gdb.base/default.exp: set print "p" abbreviation
PASS -> UNRESOLVED: gdb.base/default.exp: set print "pr" abbreviation
PASS -> UNRESOLVED: gdb.base/default.exp: set print address
PASS -> UNRESOLVED: gdb.base/default.exp: set print array
PASS -> UNRESOLVED: gdb.base/default.exp: set print asm-demangle
PASS -> UNRESOLVED: gdb.base/default.exp: set print demangle
PASS -> UNRESOLVED: gdb.base/default.exp: set print elements
PASS -> UNRESOLVED: gdb.base/default.exp: set print object
PASS -> UNRESOLVED: gdb.base/default.exp: set print pretty
PASS -> UNRESOLVED: gdb.base/default.exp: set print sevenbit-strings
PASS -> UNRESOLVED: gdb.base/default.exp: set print union
PASS -> UNRESOLVED: gdb.base/default.exp: set print vtbl
PASS -> UNRESOLVED: gdb.base/default.exp: set radix
PASS -> UNRESOLVED: gdb.base/default.exp: set the history filename
PASS -> UNRESOLVED: gdb.base/default.exp: set variable
PASS -> UNRESOLVED: gdb.base/default.exp: set verbose
PASS -> UNRESOLVED: gdb.base/default.exp: set width
PASS -> UNRESOLVED: gdb.base/default.exp: set write
PASS -> UNRESOLVED: gdb.base/default.exp: shell echo Hi dad!
PASS -> UNRESOLVED: gdb.base/default.exp: show
PASS -> UNRESOLVED: gdb.base/default.exp: show annotate
PASS -> UNRESOLVED: gdb.base/default.exp: show args
PASS -> UNRESOLVED: gdb.base/default.exp: show check "c" abbreviation
PASS -> UNRESOLVED: gdb.base/default.exp: show check "ch" abbreviation
PASS -> UNRESOLVED: gdb.base/default.exp: show check "check" abbreviation
PASS -> UNRESOLVED: gdb.base/default.exp: show check range
PASS -> UNRESOLVED: gdb.base/default.exp: show check type
PASS -> UNRESOLVED: gdb.base/default.exp: show commands
PASS -> UNRESOLVED: gdb.base/default.exp: show complaints
PASS -> UNRESOLVED: gdb.base/default.exp: show confirm
PASS -> UNRESOLVED: gdb.base/default.exp: show convenience
PASS -> UNRESOLVED: gdb.base/default.exp: show directories
PASS -> UNRESOLVED: gdb.base/default.exp: show editing
PASS -> UNRESOLVED: gdb.base/default.exp: show height
PASS -> UNRESOLVED: gdb.base/default.exp: show history
PASS -> UNRESOLVED: gdb.base/default.exp: show history expansion
PASS -> UNRESOLVED: gdb.base/default.exp: show history filename
PASS -> UNRESOLVED: gdb.base/default.exp: show history save
PASS -> UNRESOLVED: gdb.base/default.exp: show history size
PASS -> UNRESOLVED: gdb.base/default.exp: show language
PASS -> UNRESOLVED: gdb.base/default.exp: show listsize
PASS -> UNRESOLVED: gdb.base/default.exp: show p
PASS -> UNRESOLVED: gdb.base/default.exp: show paths
PASS -> UNRESOLVED: gdb.base/default.exp: show pr
PASS -> UNRESOLVED: gdb.base/default.exp: show print
PASS -> UNRESOLVED: gdb.base/default.exp: show print address
PASS -> UNRESOLVED: gdb.base/default.exp: show print array
PASS -> UNRESOLVED: gdb.base/default.exp: show print asm-demangle
PASS -> UNRESOLVED: gdb.base/default.exp: show print demangle
PASS -> UNRESOLVED: gdb.base/default.exp: show print elements
PASS -> UNRESOLVED: gdb.base/default.exp: show print object
PASS -> UNRESOLVED: gdb.base/default.exp: show print pretty
PASS -> UNRESOLVED: gdb.base/default.exp: show print sevenbit-strings
PASS -> UNRESOLVED: gdb.base/default.exp: show print union
PASS -> UNRESOLVED: gdb.base/default.exp: show print vtbl
PASS -> UNRESOLVED: gdb.base/default.exp: show prompt
PASS -> UNRESOLVED: gdb.base/default.exp: show radix
PASS -> UNRESOLVED: gdb.base/default.exp: show user
PASS -> UNRESOLVED: gdb.base/default.exp: show values
PASS -> UNRESOLVED: gdb.base/default.exp: show verbose
PASS -> UNRESOLVED: gdb.base/default.exp: show version
PASS -> UNRESOLVED: gdb.base/default.exp: show width
PASS -> UNRESOLVED: gdb.base/default.exp: show write
PASS -> UNRESOLVED: gdb.base/default.exp: signal
PASS -> UNRESOLVED: gdb.base/default.exp: source
PASS -> UNRESOLVED: gdb.base/default.exp: step "s" abbreviation #1
PASS -> UNRESOLVED: gdb.base/default.exp: step "s" abbreviation #2
PASS -> UNRESOLVED: gdb.base/default.exp: step #1
PASS -> UNRESOLVED: gdb.base/default.exp: step #2
PASS -> UNRESOLVED: gdb.base/default.exp: stepi
PASS -> UNRESOLVED: gdb.base/default.exp: stepi "si" abbreviation
PASS -> UNRESOLVED: gdb.base/default.exp: symbol-file
PASS -> UNRESOLVED: gdb.base/default.exp: target
PASS -> UNRESOLVED: gdb.base/default.exp: target native
PASS -> UNRESOLVED: gdb.base/default.exp: tbreak
PASS -> UNRESOLVED: gdb.base/default.exp: thread
PASS -> UNRESOLVED: gdb.base/default.exp: thread apply
PASS -> UNRESOLVED: gdb.base/default.exp: thread find
PASS -> UNRESOLVED: gdb.base/default.exp: thread name
PASS -> UNRESOLVED: gdb.base/default.exp: undisplay prompt
PASS -> UNRESOLVED: gdb.base/default.exp: unset
PASS -> UNRESOLVED: gdb.base/default.exp: unset environment prompt
PASS -> UNRESOLVED: gdb.base/default.exp: until
PASS -> UNRESOLVED: gdb.base/default.exp: until "u" abbreviation
PASS -> UNRESOLVED: gdb.base/default.exp: up-silently
new UNRESOLVED: gdb.base/default.exp: verify python support
PASS -> UNRESOLVED: gdb.base/default.exp: watch
PASS -> UNRESOLVED: gdb.base/default.exp: whatis
PASS -> UNRESOLVED: gdb.base/default.exp: where
PASS -> UNRESOLVED: gdb.base/default.exp: x
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5dd
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5df
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.5dl
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.dd
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.df
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p !0.dl
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2dd
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2df
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p +1.2dl
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567890123456789012345678901234dl
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567890123456dd
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.234567df
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2dd
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2df
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p -1.2dl
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567.df
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567890123456.dd
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p -1234567890123456789012345678901234.dl
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567890123456789012345678901234dl
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567890123456dd
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.234567df
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10dd
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10df
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E-10dl
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10dd
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10df
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E10dl
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1dd
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1df
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E1dl
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E384dd
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E6144dl
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2E96df
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2147483648ll
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2147483648ull
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 2ll
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd + 4294967296ull
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd < 1.3dd
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd < 1.3dl
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.2df
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.2dl
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.3df
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dd == 1.3dl
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df + 1
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df + 1.2f
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df < 1.3dd
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df < 1.3df
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2dd
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2df
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.2dl
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3dd
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3df
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df == 1.3dl
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2df > 1
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl < 1.3df
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl < 1.3dl
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.2dd
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.2df
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.3dd
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl == 1.3df
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.2dl > 2
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd * 1.2dd
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd + 1.2dd
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd - 1.2dd
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dd / 1.2dd
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df * 1.2df
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df + 1.2df
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df - 1.2df
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4df / 1.2df
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl * 1.2dl
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl + 1.2dl
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl - 1.2dl
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1.4dl / 1.2dl
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567.df
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567890123456.dd
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 1234567890123456789012345678901234.dl
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 + 1.7dd
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 > 1.2dd
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 2 > 3.1dl
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.1dd + 2.7df
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.1df + 2.7dd
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.3dd + 2.2dl
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.3dl + 2.2dd
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.6df + 2.7dl
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 2.6dl + 2.7df
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: p 3 + 2.1dl
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 1.2df + 1
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2 + 1.7dd
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dd + 2.dd
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dd + 2.dl
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.dd
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.df
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.df + 2.dl
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 2.dl + 2.dl
PASS -> UNRESOLVED: gdb.base/dfp-exprs.exp: ptype 3 + 2.1dl
new UNRESOLVED: gdb.base/dprintf-non-stop.exp: can't run to main
PASS -> UNRESOLVED: gdb.base/echo.exp: echo test
PASS -> UNRESOLVED: gdb.base/empty_exe.exp: file ''
PASS -> UNRESOLVED: gdb.base/empty_exe.exp: print 1
PASS -> UNRESOLVED: gdb.base/endian.exp: auto target endianness
PASS -> UNRESOLVED: gdb.base/endian.exp: auto target endianness big
PASS -> UNRESOLVED: gdb.base/endian.exp: auto target endianness little
PASS -> UNRESOLVED: gdb.base/endian.exp: default target endianness
PASS -> UNRESOLVED: gdb.base/endian.exp: get target endianness
PASS -> FAIL: gdb.base/endian.exp: override auto target endianness big
PASS -> FAIL: gdb.base/endian.exp: override auto target endianness little
PASS -> UNRESOLVED: gdb.base/endian.exp: override target endianness big
PASS -> FAIL: gdb.base/endian.exp: override target endianness little
PASS -> UNRESOLVED: gdb.base/endian.exp: previously big default executable endianness
PASS -> UNRESOLVED: gdb.base/endian.exp: previously big default no executable endianness
PASS -> UNRESOLVED: gdb.base/endian.exp: previously little default executable endianness
PASS -> UNRESOLVED: gdb.base/endian.exp: previously little default no executable endianness
PASS -> UNRESOLVED: gdb.base/endian.exp: set target endianness
PASS -> UNRESOLVED: gdb.base/endian.exp: set target endianness big
PASS -> UNRESOLVED: gdb.base/endian.exp: set target endianness little
PASS -> UNRESOLVED: gdb.base/environ.exp: all environment variables have been unset
PASS -> UNRESOLVED: gdb.base/environ.exp: confirm set environment variable
PASS -> UNRESOLVED: gdb.base/environ.exp: confirm set environment variable previously undefined
PASS -> UNRESOLVED: gdb.base/environ.exp: confirm set environment variable using = syntax
PASS -> UNRESOLVED: gdb.base/environ.exp: confirm set environment variable with trailing equals
PASS -> UNRESOLVED: gdb.base/environ.exp: confirm set environment variable with trailing whitespace
PASS -> UNRESOLVED: gdb.base/environ.exp: confirm unset environment variable worked
PASS -> UNRESOLVED: gdb.base/environ.exp: set environment variable
PASS -> UNRESOLVED: gdb.base/environ.exp: set environment variable previously undefined
PASS -> UNRESOLVED: gdb.base/environ.exp: set environment variable to null value
PASS -> UNRESOLVED: gdb.base/environ.exp: set environment variable using = syntax
PASS -> UNRESOLVED: gdb.base/environ.exp: set environment variable with trailing equals
PASS -> UNRESOLVED: gdb.base/environ.exp: set environment variable with trailing whitespace
PASS -> UNRESOLVED: gdb.base/environ.exp: set environment without arguments
PASS -> UNRESOLVED: gdb.base/environ.exp: set environment without variable name
PASS -> UNRESOLVED: gdb.base/environ.exp: set path works properly
PASS -> UNRESOLVED: gdb.base/environ.exp: show environment works
PASS -> UNRESOLVED: gdb.base/environ.exp: show non-existent environment variable
PASS -> UNRESOLVED: gdb.base/environ.exp: show null environment variable
PASS -> UNRESOLVED: gdb.base/environ.exp: show paths works properly
PASS -> UNRESOLVED: gdb.base/environ.exp: unset all environment variables
PASS -> UNRESOLVED: gdb.base/environ.exp: unset environment variable
PASS -> UNRESOLVED: gdb.base/eval.exp: first eval.
PASS -> UNRESOLVED: gdb.base/eval.exp: initialize $a.
PASS -> UNRESOLVED: gdb.base/eval.exp: second eval.
PASS -> UNRESOLVED: gdb.base/gdb1056.exp: print 1/0
PASS -> UNRESOLVED: gdb.base/gdb1056.exp: test unsigned division by zero
PASS -> UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize= 20 : show commands
PASS -> UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize= 20 : show history size
PASS -> UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5: show commands
PASS -> UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5: show history size
PASS -> UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5ab: show commands
PASS -> UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=-5ab: show history size
PASS -> UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=0: show commands
PASS -> UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=0: show history size
PASS -> UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=10zab: show commands
PASS -> UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=10zab: show history size
PASS -> UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=20: show commands
PASS -> UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=20: show history size
PASS -> UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=50: show commands
PASS -> UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=50: show history size
PASS -> UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=99999999999999999999999999999999999: show commands
PASS -> UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=99999999999999999999999999999999999: show history size
PASS -> UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=: show commands
PASS -> UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=: show history size
PASS -> UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=not_an_integer: show commands
PASS -> UNRESOLVED: gdb.base/gdbhistsize-history.exp: histsize=not_an_integer: show history size
PASS -> UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=1000: show commands
PASS -> UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=1000: show history size
PASS -> UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=foo: show commands
PASS -> UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited gdbhistsize=foo: show history size
PASS -> UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited: show commands
PASS -> UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/unlimited: show history size
PASS -> UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/zero: show commands
PASS -> UNRESOLVED: gdb.base/gdbinit-history.exp: home=gdbinit-history/zero: show history size
PASS -> UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: appending: server show commands
PASS -> UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: creating: server show commands
PASS -> UNRESOLVED: gdb.base/gdbinit-history.exp: truncation: print 1
PASS -> UNRESOLVED: gdb.base/help.exp: apropos \
PASS -> UNRESOLVED: gdb.base/help.exp: apropos apropos
PASS -> UNRESOLVED: gdb.base/help.exp: apropos handle signal
PASS -> UNRESOLVED: gdb.base/help.exp: disable pagination
PASS -> UNRESOLVED: gdb.base/help.exp: help aliases
PASS -> UNRESOLVED: gdb.base/help.exp: help backtrace
PASS -> UNRESOLVED: gdb.base/help.exp: help backtrace "bt" abbreviation
PASS -> UNRESOLVED: gdb.base/help.exp: help breakpoint "b" abbreviation
PASS -> UNRESOLVED: gdb.base/help.exp: help breakpoint "br" abbreviation
PASS -> UNRESOLVED: gdb.base/help.exp: help breakpoint "bre" abbreviation
PASS -> UNRESOLVED: gdb.base/help.exp: help breakpoint "brea" abbreviation
PASS -> UNRESOLVED: gdb.base/help.exp: help breakpoint "break" abbreviation
PASS -> UNRESOLVED: gdb.base/help.exp: help breakpoints
PASS -> UNRESOLVED: gdb.base/help.exp: help commands
PASS -> UNRESOLVED: gdb.base/help.exp: help data
PASS -> UNRESOLVED: gdb.base/help.exp: help delete
PASS -> UNRESOLVED: gdb.base/help.exp: help delete "d" abbreviation
PASS -> UNRESOLVED: gdb.base/help.exp: help files
PASS -> UNRESOLVED: gdb.base/help.exp: help gotcha
PASS -> UNRESOLVED: gdb.base/help.exp: help help
PASS -> UNRESOLVED: gdb.base/help.exp: help help "h" abbreviation
PASS -> UNRESOLVED: gdb.base/help.exp: help info bogus-gdb-command
PASS -> UNRESOLVED: gdb.base/help.exp: help internals
PASS -> UNRESOLVED: gdb.base/help.exp: help obscure
PASS -> UNRESOLVED: gdb.base/help.exp: help running
PASS -> UNRESOLVED: gdb.base/help.exp: help show commands
PASS -> UNRESOLVED: gdb.base/help.exp: help show confirm
PASS -> UNRESOLVED: gdb.base/help.exp: help show copying
PASS -> UNRESOLVED: gdb.base/help.exp: help show warranty
PASS -> UNRESOLVED: gdb.base/help.exp: help stack
PASS -> UNRESOLVED: gdb.base/help.exp: help status
PASS -> UNRESOLVED: gdb.base/help.exp: help support
PASS -> UNRESOLVED: gdb.base/help.exp: help tracepoints
PASS -> UNRESOLVED: gdb.base/help.exp: help user-defined
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: history entry is print 0
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: history entry is print 1
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: printing 0
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: printing 1
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=0: set history remove-duplicates 0
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 0
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 1
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: history entry is print 2
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 0
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 1
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: printing 2
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=1: set history remove-duplicates 1
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 0
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 1
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 2
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 3
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: history entry is print 4
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 0
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 1
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 2
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 3
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: printing 4
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: remove-duplicates=unlimited: set history remove-duplicates unlimited
new UNRESOLVED: gdb.base/history-duplicates.exp: show editing
PASS -> UNRESOLVED: gdb.base/history-duplicates.exp: show history remove-duplicates
PASS -> UNRESOLVED: gdb.base/ifelse.exp: call original define
PASS -> UNRESOLVED: gdb.base/ifelse.exp: call replacement define
PASS -> UNRESOLVED: gdb.base/ifelse.exp: create define with empty else
PASS -> UNRESOLVED: gdb.base/ifelse.exp: if 0 .. else with empty body
PASS -> UNRESOLVED: gdb.base/ifelse.exp: if 0 with empty body
PASS -> UNRESOLVED: gdb.base/ifelse.exp: if 1 .. else with empty body
PASS -> UNRESOLVED: gdb.base/ifelse.exp: if 1 with empty body
PASS -> UNRESOLVED: gdb.base/ifelse.exp: if true else false #1
PASS -> UNRESOLVED: gdb.base/ifelse.exp: if true else false #2
PASS -> UNRESOLVED: gdb.base/ifelse.exp: if true else false #3
PASS -> UNRESOLVED: gdb.base/ifelse.exp: replace define with if .. else with empty body
new UNRESOLVED: gdb.base/ifelse.exp: set confirm off
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tc-td: 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-tc-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-td-ts: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tf: 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-tf-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-ts: 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-ti-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tl-td: 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-tl-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-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-td: 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-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tld: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tll-tf: 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-td: 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-ts-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ts: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tc-td: 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-tc-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td-ts: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tf: 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-tf-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-ts: 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-ti-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tl-td: 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-tl-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-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-td: 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-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tld: 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-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tll-tf: 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-td: 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-ts-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ts: failed to compile
new FAIL: gdb.base/info-os.exp: cannot compile test program
PASS -> UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode auto
PASS -> UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode off
PASS -> UNRESOLVED: gdb.base/interact.exp: sanity check with interactive-mode on
PASS -> UNRESOLVED: gdb.base/interact.exp: set interactive-mode auto
PASS -> UNRESOLVED: gdb.base/interact.exp: set interactive-mode off
PASS -> UNRESOLVED: gdb.base/interact.exp: set interactive-mode on
PASS -> UNRESOLVED: gdb.base/interact.exp: show interactive-mode
PASS -> UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode auto
PASS -> UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode off
PASS -> UNRESOLVED: gdb.base/interact.exp: source script with interactive-mode on
PASS -> UNRESOLVED: gdb.base/multi-line-starts-subshell.exp: gdb input still works
PASS -> UNRESOLVED: gdb.base/multi-line-starts-subshell.exp: spawn subshell from multi-line
PASS -> UNRESOLVED: gdb.base/osabi.exp: set debug arch 1
PASS -> UNRESOLVED: gdb.base/osabi.exp: set osabi none
PASS -> UNRESOLVED: gdb.base/page.exp: paged count
PASS -> UNRESOLVED: gdb.base/page.exp: paged count for interrupt
PASS -> UNRESOLVED: gdb.base/page.exp: paged count remainder
PASS -> UNRESOLVED: gdb.base/page.exp: paged help
PASS -> UNRESOLVED: gdb.base/page.exp: pagination is off
PASS -> UNRESOLVED: gdb.base/page.exp: pagination is on
PASS -> UNRESOLVED: gdb.base/page.exp: q
PASS -> UNRESOLVED: gdb.base/page.exp: quit while paging
PASS -> UNRESOLVED: gdb.base/page.exp: set editing off
PASS -> UNRESOLVED: gdb.base/page.exp: set height -1
PASS -> UNRESOLVED: gdb.base/page.exp: set height 10
PASS -> UNRESOLVED: gdb.base/page.exp: set height 5
PASS -> UNRESOLVED: gdb.base/page.exp: set pagination off
PASS -> UNRESOLVED: gdb.base/page.exp: set pagination on
PASS -> UNRESOLVED: gdb.base/page.exp: set width -1
PASS -> UNRESOLVED: gdb.base/page.exp: set width 30
PASS -> UNRESOLVED: gdb.base/page.exp: size=0: set height 0
PASS -> UNRESOLVED: gdb.base/page.exp: size=0: set height 200
PASS -> UNRESOLVED: gdb.base/page.exp: size=0: set width 0
PASS -> UNRESOLVED: gdb.base/page.exp: size=0: set width 200
PASS -> UNRESOLVED: gdb.base/page.exp: size=0: show height
PASS -> UNRESOLVED: gdb.base/page.exp: size=0: show height unlimited
PASS -> UNRESOLVED: gdb.base/page.exp: size=0: show width
PASS -> UNRESOLVED: gdb.base/page.exp: size=0: show width unlimited
PASS -> UNRESOLVED: gdb.base/page.exp: size=0x80000000: set height 0x80000000
PASS -> UNRESOLVED: gdb.base/page.exp: size=0x80000000: set height 200
PASS -> UNRESOLVED: gdb.base/page.exp: size=0x80000000: set width 0x80000000
PASS -> UNRESOLVED: gdb.base/page.exp: size=0x80000000: set width 200
PASS -> UNRESOLVED: gdb.base/page.exp: size=0x80000000: show height
PASS -> UNRESOLVED: gdb.base/page.exp: size=0x80000000: show height unlimited
PASS -> UNRESOLVED: gdb.base/page.exp: size=0x80000000: show width
PASS -> UNRESOLVED: gdb.base/page.exp: size=0x80000000: show width unlimited
PASS -> UNRESOLVED: gdb.base/page.exp: size=unlimited: set height 200
PASS -> UNRESOLVED: gdb.base/page.exp: size=unlimited: set height unlimited
PASS -> UNRESOLVED: gdb.base/page.exp: size=unlimited: set width 200
PASS -> UNRESOLVED: gdb.base/page.exp: size=unlimited: set width unlimited
PASS -> UNRESOLVED: gdb.base/page.exp: size=unlimited: show height
PASS -> UNRESOLVED: gdb.base/page.exp: size=unlimited: show height unlimited
PASS -> UNRESOLVED: gdb.base/page.exp: size=unlimited: show width
PASS -> UNRESOLVED: gdb.base/page.exp: size=unlimited: show width unlimited
PASS -> UNRESOLVED: gdb.base/page.exp: unpaged help
PASS -> UNRESOLVED: gdb.base/quit.exp: quit with expression
PASS -> UNRESOLVED: gdb.base/quit.exp: quit with syntax error
PASS -> UNRESOLVED: gdb.base/radix.exp: Output radix unchanged after rejecting 0
PASS -> UNRESOLVED: gdb.base/radix.exp: Reject input-radix 0
PASS -> UNRESOLVED: gdb.base/radix.exp: Reject input-radix 1
PASS -> UNRESOLVED: gdb.base/radix.exp: Reject output-radix 0
PASS -> UNRESOLVED: gdb.base/radix.exp: Reject output-radix 1
PASS -> UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: initialize radix, input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: initialize radix, output radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: input radix unchanged after rejecting 0
PASS -> UNRESOLVED: gdb.base/radix.exp: input radix unchanged after rejecting 1
PASS -> UNRESOLVED: gdb.base/radix.exp: output radix unchanged after rejecting 1
PASS -> UNRESOLVED: gdb.base/radix.exp: output radix unchanged after rejection through set radix command
PASS -> UNRESOLVED: gdb.base/radix.exp: print
PASS -> UNRESOLVED: gdb.base/radix.exp: print -100; expect -100; input radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print -100; expect -256; input radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print -100; expect -4; input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: print -100; expect -64; input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print -100; expect -9; input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: print -101; expect -101; input radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print -101; expect -10; input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: print -101; expect -257; input radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print -101; expect -5; input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: print -101; expect -65; input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print -10; expect -10; input radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print -10; expect -16; input radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print -10; expect -2; input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: print -10; expect -3; input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: print -10; expect -8; input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print -11; expect -11; input radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print -11; expect -17; input radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print -11; expect -3; input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: print -11; expect -4; input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: print -11; expect -9; input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print -12; expect -12; input radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: print -1; expect -1; input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print -20; expect -16; input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print -2; expect Invalid number "2"\.; input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: print -9; expect Invalid number "9".; input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print 010; expect 010; output radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; output radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print 010; expect 8; output radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: print 0; expect 0; input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 15; output radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print 0xf; expect 17; output radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print 0xf; expect f; output radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print 100; expect 100; input radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print 100; expect 100; output radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print 100; expect 144; output radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print 100; expect 256; input radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print 100; expect 4; input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: print 100; expect 64; input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print 100; expect 64; output radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print 100; expect 9; input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: print 10101; expect 10101; input radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print 10101; expect 21; input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: print 10101; expect 4161; input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print 10101; expect 65793; input radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print 10101; expect 91; input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: print 101; expect 101; input radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print 101; expect 10; input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: print 101; expect 257; input radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print 101; expect 5; input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: print 101; expect 65; input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print 10; expect 10; input radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print 10; expect 10; output radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print 10; expect 12; output radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print 10; expect 16; input radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print 10; expect 2; input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: print 10; expect 3; input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: print 10; expect 8; input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print 10; expect a; output radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print 11; expect 11; input radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print 11; expect 17; input radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print 11; expect 3; input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: print 11; expect 4; input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: print 11; expect 9; input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: print 1; expect 1; input radix 8
KFAIL -> UNRESOLVED: gdb.base/radix.exp: print 20.; expect 14; output radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print 20.; expect 20; output radix 10
KFAIL -> UNRESOLVED: gdb.base/radix.exp: print 20.; expect 24; output radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print 20; expect 16; input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: print 20; expect 6; input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: print 2; expect 2; input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: print 30; expect Invalid number "30"\.; input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: print 3; expect Invalid number "3"\.; input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: print 4; expect Invalid number "4"\.; input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: print 8; expect Invalid number "8".; input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: reset radices
PASS -> UNRESOLVED: gdb.base/radix.exp: set input-radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: set input-radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: set input-radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: set input-radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: set input-radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: set output-radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: set output-radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: set output-radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: set radix 7 rejected
PASS -> UNRESOLVED: gdb.base/radix.exp: show radix, input radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: show radix, input radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: show radix, input radix 2
PASS -> UNRESOLVED: gdb.base/radix.exp: show radix, input radix 3
PASS -> UNRESOLVED: gdb.base/radix.exp: show radix, input radix 8
PASS -> UNRESOLVED: gdb.base/radix.exp: show radix, output radix 10
PASS -> UNRESOLVED: gdb.base/radix.exp: show radix, output radix 16
PASS -> UNRESOLVED: gdb.base/radix.exp: show radix, output radix 8
PASS -> UNRESOLVED: gdb.base/readline.exp: Simple operate-and-get-next - send p 1
PASS -> UNRESOLVED: gdb.base/readline.exp: Simple operate-and-get-next - send p 7
PASS -> UNRESOLVED: gdb.base/readline.exp: arrow keys with secondary prompt
PASS -> UNRESOLVED: gdb.base/readline.exp: operate-and-get-next with secondary prompt - send if 1 > 0
PASS -> UNRESOLVED: gdb.base/readline.exp: print 42
new UNRESOLVED: gdb.base/readline.exp: show editing
PASS -> UNRESOLVED: gdb.base/remotetimeout.exp: correct remotetimeout printed
PASS -> UNRESOLVED: gdb.base/shell.exp: ! echo foo
PASS -> UNRESOLVED: gdb.base/shell.exp: ! exit 0
PASS -> UNRESOLVED: gdb.base/shell.exp: ! exit 1
PASS -> UNRESOLVED: gdb.base/shell.exp: ! kill -2 $$
PASS -> UNRESOLVED: gdb.base/shell.exp: !echo foo
PASS -> UNRESOLVED: gdb.base/shell.exp: -d spaces value missing
PASS -> UNRESOLVED: gdb.base/shell.exp: -d value missing
PASS -> UNRESOLVED: gdb.base/shell.exp: DELIM delimiter missing
PASS -> UNRESOLVED: gdb.base/shell.exp: SHELL_COMMAND missing
PASS -> UNRESOLVED: gdb.base/shell.exp: SHELL_COMMAND missing with delimiter
PASS -> UNRESOLVED: gdb.base/shell.exp: all missing
PASS -> UNRESOLVED: gdb.base/shell.exp: alternate 1char delim
PASS -> UNRESOLVED: gdb.base/shell.exp: alternate 1char delim, no space
PASS -> UNRESOLVED: gdb.base/shell.exp: alternate 3char delim
PASS -> UNRESOLVED: gdb.base/shell.exp: alternate 3char delim, no space
PASS -> UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe "
PASS -> UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -"
PASS -> UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d "
PASS -> UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d XXX maint set test-se"
PASS -> UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d XXX maint set"
PASS -> UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d main"
PASS -> UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d set maint set "
PASS -> UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe -d set maint set"
PASS -> UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe maint set test-se"
PASS -> UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe print 1 | "
PASS -> UNRESOLVED: gdb.base/shell.exp: cmd complete "pipe"
PASS -> UNRESOLVED: gdb.base/shell.exp: cmd complete "| "
PASS -> UNRESOLVED: gdb.base/shell.exp: cmd complete "| -"
PASS -> UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d "
PASS -> UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d XXX maint set test-se"
PASS -> UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d XXX maint set"
PASS -> UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d main"
PASS -> UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d set maint set "
PASS -> UNRESOLVED: gdb.base/shell.exp: cmd complete "| -d set maint set"
PASS -> UNRESOLVED: gdb.base/shell.exp: cmd complete "| maint set test-se"
PASS -> UNRESOLVED: gdb.base/shell.exp: cmd complete "| print 1 | "
PASS -> UNRESOLVED: gdb.base/shell.exp: cmd complete "|"
PASS -> UNRESOLVED: gdb.base/shell.exp: cmd complete "|-"
PASS -> UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d "
PASS -> UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d XXX maint set test-se"
PASS -> UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d XXX maint set"
PASS -> UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d main"
PASS -> UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d set maint set "
PASS -> UNRESOLVED: gdb.base/shell.exp: cmd complete "|-d set maint set"
PASS -> UNRESOLVED: gdb.base/shell.exp: cmd complete "|maint set test-se"
PASS -> UNRESOLVED: gdb.base/shell.exp: cmd complete "|print 1 | "
PASS -> UNRESOLVED: gdb.base/shell.exp: define foo
PASS -> UNRESOLVED: gdb.base/shell.exp: delimiter missing due to missing space
PASS -> UNRESOLVED: gdb.base/shell.exp: double pipe
PASS -> UNRESOLVED: gdb.base/shell.exp: double pipe, pipe char
PASS -> UNRESOLVED: gdb.base/shell.exp: echo coucou
PASS -> UNRESOLVED: gdb.base/shell.exp: enter commands
PASS -> UNRESOLVED: gdb.base/shell.exp: no space around pipe char
PASS -> UNRESOLVED: gdb.base/shell.exp: pipe fail exitcode
PASS -> UNRESOLVED: gdb.base/shell.exp: pipe fail exitsignal
PASS -> UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitcode
PASS -> UNRESOLVED: gdb.base/shell.exp: pipe interrupt exitsignal
PASS -> UNRESOLVED: gdb.base/shell.exp: pipe success exitcode
PASS -> UNRESOLVED: gdb.base/shell.exp: pipe success exitsignal
PASS -> UNRESOLVED: gdb.base/shell.exp: repeat previous command
new UNRESOLVED: gdb.base/shell.exp: set max-completions 0
new UNRESOLVED: gdb.base/shell.exp: set max-completions 2
PASS -> UNRESOLVED: gdb.base/shell.exp: shell echo foo
PASS -> UNRESOLVED: gdb.base/shell.exp: shell fail exitcode
PASS -> UNRESOLVED: gdb.base/shell.exp: shell fail exitsignal
PASS -> UNRESOLVED: gdb.base/shell.exp: shell interrupt exitcode
PASS -> UNRESOLVED: gdb.base/shell.exp: shell interrupt exitsignal
PASS -> UNRESOLVED: gdb.base/shell.exp: shell success exitcode
PASS -> UNRESOLVED: gdb.base/shell.exp: shell success exitsignal
new UNRESOLVED: gdb.base/shell.exp: show editing
new UNRESOLVED: gdb.base/shell.exp: show max-completions
PASS -> UNRESOLVED: gdb.base/shell.exp: simple pipe
PASS -> UNRESOLVED: gdb.base/shell.exp: simple pipe with arg
PASS -> UNRESOLVED: gdb.base/shell.exp: | delimiter missing
PASS -> UNRESOLVED: gdb.base/shell.exp: |p 123| exit 0
PASS -> UNRESOLVED: gdb.base/shell.exp: |p 123| exit 1
PASS -> UNRESOLVED: gdb.base/shell.exp: |p 123| kill -2 $$
PASS -> UNRESOLVED: gdb.base/source-dir.exp: directory /nOtExStInG/a /nOtExStInG/b /nOtExStInG/c
PASS -> UNRESOLVED: gdb.base/source-dir.exp: directory /nOtExStInG/b /nOtExStInG/d /nOtExStInG/c
PASS -> UNRESOLVED: gdb.base/source.exp: script contains error
PASS -> UNRESOLVED: gdb.base/source.exp: set search directories
PASS -> UNRESOLVED: gdb.base/source.exp: source -s
PASS -> UNRESOLVED: gdb.base/source.exp: source -s -v
PASS -> UNRESOLVED: gdb.base/source.exp: source -v
PASS -> UNRESOLVED: gdb.base/source.exp: source -v -s
PASS -> UNRESOLVED: gdb.base/source.exp: source after -v
PASS -> UNRESOLVED: gdb.base/source.exp: source for-sure-nonexistant-file
PASS -> UNRESOLVED: gdb.base/source.exp: source source-nofile.gdb
new UNRESOLVED: gdb.base/step-over-syscall.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.base/step-over-syscall.exp: run to main
PASS -> UNRESOLVED: gdb.base/subst.exp: add depuis -> vers substitution rule
PASS -> UNRESOLVED: gdb.base/subst.exp: add from -> to substitution rule
PASS -> UNRESOLVED: gdb.base/subst.exp: add from1 -> to1 substitution rule
PASS -> UNRESOLVED: gdb.base/subst.exp: add source -> destination substitution rule
PASS -> UNRESOLVED: gdb.base/subst.exp: add substitution rule to empty string
PASS -> UNRESOLVED: gdb.base/subst.exp: deactivate GDB's confirmation interface
PASS -> UNRESOLVED: gdb.base/subst.exp: remove all remaining substitution rules
PASS -> UNRESOLVED: gdb.base/subst.exp: remove default substitution rules
PASS -> UNRESOLVED: gdb.base/subst.exp: set substitute-path, first argument is empty string
PASS -> UNRESOLVED: gdb.base/subst.exp: set substitute-path, too few arguments
PASS -> UNRESOLVED: gdb.base/subst.exp: set substitute-path, too many arguments
PASS -> UNRESOLVED: gdb.base/subst.exp: show substitute-path after all paths added
PASS -> UNRESOLVED: gdb.base/subst.exp: show substitute-path after all remaining rules removed
PASS -> UNRESOLVED: gdb.base/subst.exp: show substitute-path after depuis rule removed
PASS -> UNRESOLVED: gdb.base/subst.exp: show substitute-path after empty rule removed
PASS -> UNRESOLVED: gdb.base/subst.exp: show substitute-path after from rule removed
PASS -> UNRESOLVED: gdb.base/subst.exp: show substitute-path depuis, after all paths added
PASS -> UNRESOLVED: gdb.base/subst.exp: show substitute-path from, after all paths added
PASS -> UNRESOLVED: gdb.base/subst.exp: show substitute-path from, after unsetting it
PASS -> UNRESOLVED: gdb.base/subst.exp: show substitute-path from, no rule entered yet
PASS -> UNRESOLVED: gdb.base/subst.exp: show substitute-path from/path, after all paths added
PASS -> UNRESOLVED: gdb.base/subst.exp: show substitute-path from_a_bad_path, after all paths added
PASS -> UNRESOLVED: gdb.base/subst.exp: show substitute-path garbage, after all paths added
PASS -> UNRESOLVED: gdb.base/subst.exp: show substitute-path, no rule entered yet
PASS -> UNRESOLVED: gdb.base/subst.exp: show substitute-path, too many arguments
PASS -> UNRESOLVED: gdb.base/subst.exp: unset substitute-path depuis
PASS -> UNRESOLVED: gdb.base/subst.exp: unset substitute-path empty
PASS -> UNRESOLVED: gdb.base/subst.exp: unset substitute-path from
PASS -> UNRESOLVED: gdb.base/subst.exp: unset substitute-path from after the rule was removed
PASS -> UNRESOLVED: gdb.base/subst.exp: unset substitute-path from, no rule entered yet
PASS -> UNRESOLVED: gdb.base/subst.exp: unset substitute-path, no rule entered yet
PASS -> UNRESOLVED: gdb.base/subst.exp: unset substitute-path, too many arguments
PASS -> UNRESOLVED: gdb.base/trace-commands.exp: define user command
PASS -> UNRESOLVED: gdb.base/trace-commands.exp: depth resets on error part 1
PASS -> UNRESOLVED: gdb.base/trace-commands.exp: depth resets on error part 2
PASS -> UNRESOLVED: gdb.base/trace-commands.exp: nested trace-commands test
PASS -> UNRESOLVED: gdb.base/trace-commands.exp: nested trace-commands test with source
PASS -> UNRESOLVED: gdb.base/trace-commands.exp: set trace-commands
PASS -> UNRESOLVED: gdb.base/trace-commands.exp: show trace-commands says off
PASS -> UNRESOLVED: gdb.base/trace-commands.exp: show trace-commands says on
PASS -> UNRESOLVED: gdb.base/trace-commands.exp: simple trace-commands test
PASS -> UNRESOLVED: gdb.base/trace-commands.exp: source -v
PASS -> UNRESOLVED: gdb.base/warning.exp: echo 23\n
PASS -> UNRESOLVED: gdb.btrace/cpu.exp: default cpu
PASS -> UNRESOLVED: gdb.btrace/cpu.exp: set cpu
PASS -> UNRESOLVED: gdb.btrace/cpu.exp: set cpu auto
PASS -> UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0
PASS -> UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/
PASS -> UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0
PASS -> UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0 foo
PASS -> UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0
PASS -> UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0 foo
PASS -> UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/0x0
PASS -> UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/1
PASS -> UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0/foo
PASS -> UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/0x0
PASS -> UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0/foo
PASS -> UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: 0x0/0
PASS -> UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo
PASS -> UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo/0
PASS -> UNRESOLVED: gdb.btrace/cpu.exp: set cpu intel: foo/bar
PASS -> UNRESOLVED: gdb.btrace/cpu.exp: set cpu none
PASS -> UNRESOLVED: gdb.btrace/cpu.exp: set record
PASS -> UNRESOLVED: gdb.btrace/cpu.exp: set record btrace
PASS -> UNRESOLVED: gdb.btrace/cpu.exp: show cpu
PASS -> UNRESOLVED: gdb.btrace/cpu.exp: show cpu auto
PASS -> UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0
PASS -> UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/
PASS -> UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0
PASS -> UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0 foo
PASS -> UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0
PASS -> UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0 foo
PASS -> UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/0x0
PASS -> UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/1
PASS -> UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0/foo
PASS -> UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/0x0
PASS -> UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0/foo
PASS -> UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: 0x0/0
PASS -> UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo
PASS -> UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo/0
PASS -> UNRESOLVED: gdb.btrace/cpu.exp: show cpu intel: foo/bar
PASS -> UNRESOLVED: gdb.btrace/cpu.exp: show cpu none
PASS -> UNRESOLVED: gdb.cp/debug-expr.exp: print dynamic_cast<void*>
PASS -> UNRESOLVED: gdb.cp/debug-expr.exp: print reinterpret_cast<void*>
PASS -> UNRESOLVED: gdb.cp/debug-expr.exp: print static_cast<void*>
PASS -> UNRESOLVED: gdb.cp/debug-expr.exp: set debug expression 1
PASS -> UNRESOLVED: gdb.cp/debug-expr.exp: set language c++
PASS -> UNRESOLVED: gdb.cp/demangle.exp: auto: check demangling style
PASS -> UNRESOLVED: gdb.cp/demangle.exp: auto: set demangle-style
PASS -> UNRESOLVED: gdb.cp/demangle.exp: demangle -l c -- _ZSt4cout
PASS -> UNRESOLVED: gdb.cp/demangle.exp: demangle -l c++ -- _ZSt4cout
PASS -> UNRESOLVED: gdb.cp/demangle.exp: demangle -l c++ _ZSt4cout
PASS -> UNRESOLVED: gdb.cp/demangle.exp: demangle -l garbage xyzdje
PASS -> UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z13BitPatterntoaOK10BitPatternccc
PASS -> UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z31DrawDestinationTransformedImageP7_XImageiiS0_iimjiijmmP4_XGCOK13ivTransformeriiii
PASS -> UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _Z3argOK7Complex
PASS -> UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN11RelateManip6EffectEO7ivEvent
PASS -> UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN20DisplayList_IteratorC4EO11DisplayList
PASS -> UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN3fooC4EOS_
PASS -> UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN3fooC4EiOS_iS0_iS0_
PASS -> UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE3PixC4EOKS2_
PASS -> UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE7elementC2EOKS0_PS2_
PASS -> UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityE7elementC4EOKS2_
PASS -> UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4ListI10VHDLEntityEC4EOKS1_
PASS -> UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN4PixXI11VHDLLibrary14VHDLLibraryRep4ListI10VHDLEntityEEC2EOKS5_
PASS -> UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN7ivWorldC2EPKcOiPPcPK12ivOptionDescPK14ivPropertyData
PASS -> UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN8TextCode14CoreConstDeclsEO7ostream
PASS -> UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic
PASS -> UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic: gnu-v3: check demangling style
PASS -> UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZN9ArrowLine19ArrowheadIntersectsEP9ArrowheadO6BoxObjP7Graphic: gnu-v3: set demangle-style
PASS -> UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK11VHDLLibrary5nextEEO4PixXIS_14VHDLLibraryRep4ListI10VHDLEntityEE
PASS -> UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK4ListI10VHDLEntityE4nextEONS1_3PixE
PASS -> UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK4ListI10VHDLEntityEclEOKNS1_3PixE
PASS -> UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOK10BitPattern
PASS -> UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOK12BitSubStringi
PASS -> UNRESOLVED: gdb.cp/demangle.exp: gnu-v3: _ZNK9BitString8containsEOKS_
PASS -> UNRESOLVED: gdb.cp/demangle.exp: set language c++
PASS -> UNRESOLVED: gdb.cp/demangle.exp: set language unknown
PASS -> UNRESOLVED: gdb.cp/demangle.exp: set width 0
PASS -> UNRESOLVED: gdb.cp/maint.exp: help maint cp
PASS -> UNRESOLVED: gdb.cp/maint.exp: help maint cp first_component
PASS -> UNRESOLVED: gdb.cp/maint.exp: help maint cp namespace
PASS -> UNRESOLVED: gdb.cp/maint.exp: help maintenance cplus
PASS -> UNRESOLVED: gdb.cp/maint.exp: maint cp
PASS -> UNRESOLVED: gdb.cp/maint.exp: maint cp first_component C<A>::bar
PASS -> UNRESOLVED: gdb.cp/maint.exp: maint cp first_component C<std::basic_streambuf<wchar_t,std::char_traits<wchar_t> > >::bar
PASS -> UNRESOLVED: gdb.cp/maint.exp: maint cp first_component T<Cooperator>
PASS -> UNRESOLVED: gdb.cp/maint.exp: maint cp first_component bool operator<<char>
PASS -> UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo
PASS -> UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo::bar
PASS -> UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo::bar::baz
PASS -> UNRESOLVED: gdb.cp/maint.exp: maint cp first_component foo<
PASS -> UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<&
PASS -> UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<&operator<<
PASS -> UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int foo<operator<<
PASS -> UNRESOLVED: gdb.cp/maint.exp: maint cp first_component int operator<< <char>
PASS -> UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator  ->
PASS -> UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator ->
PASS -> UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator
PASS -> UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator<
PASS -> UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator<<
PASS -> UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator>
PASS -> UNRESOLVED: gdb.cp/maint.exp: maint cp first_component operator>>
PASS -> UNRESOLVED: gdb.cp/maint.exp: maint cp namespace
PASS -> UNRESOLVED: gdb.cp/maint.exp: set complaints 1000
new UNRESOLVED: gdb.cp/ref-params.exp: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.cp/ref-params.exp: print f1
PASS -> FAIL: gdb.cp/ref-params.exp: print mf1
PASS -> FAIL: gdb.cp/ref-params.exp: print mf2
PASS -> UNRESOLVED: gdb.cp/ref-params.exp: print value of Child& in f2
PASS -> UNRESOLVED: gdb.cp/ref-params.exp: print value of Parent& in f1
PASS -> UNRESOLVED: gdb.cp/ref-params.exp: print value of a Child in main
PASS -> UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on
PASS -> UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on Child in main
PASS -> UNRESOLVED: gdb.cp/ref-params.exp: print value of f1 on Child& in f2
PASS -> UNRESOLVED: gdb.cp/ref-params.exp: print value of f2 on
PASS -> UNRESOLVED: gdb.cp/ref-params.exp: print value of f2 on Child in main
PASS -> UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print f1
PASS -> UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print mf1
PASS -> UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print mf2
PASS -> UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Child&& in f2
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Child&& in f2: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Parent&& in f1
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Parent&& in f1: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f1 on
PASS -> UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f1 on Child&& in f2
PASS -> UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f2 on
PASS -> UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char16_t is distinct
PASS -> UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char16_t is unsigned
PASS -> UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char32_t is distinct
PASS -> UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: char32_t is unsigned
PASS -> UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p L"hello"
PASS -> UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p U"hello"
PASS -> UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: p u"hello"
PASS -> UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: set language c++
PASS -> UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: sizeof
PASS -> UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: wchar_t is distinct
PASS -> UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c++: wchar_t sign
PASS -> UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: char16_t is not built-in
PASS -> UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: char32_t is not built-in
PASS -> UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p L"hello"
PASS -> UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p U"hello"
PASS -> UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: p u"hello"
PASS -> UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: set language c
PASS -> UNRESOLVED: gdb.cp/wide_char_types.exp: no program: c: wchar_t is not built-in
PASS -> UNRESOLVED: gdb.disasm/disassembler-options.exp: set disassembler-options
PASS -> UNRESOLVED: gdb.disasm/disassembler-options.exp: set disassembler-options invalid_option_value
PASS -> UNRESOLVED: gdb.disasm/disassembler-options.exp: show NULL disassembler-options
PASS -> UNRESOLVED: gdb.dlang/debug-expr.exp: print *
PASS -> UNRESOLVED: gdb.dlang/debug-expr.exp: set debug expression 1
PASS -> UNRESOLVED: gdb.dlang/debug-expr.exp: set language d
PASS -> UNRESOLVED: gdb.dlang/demangle.exp: set language d
PASS -> UNRESOLVED: gdb.dlang/expression.exp: set language d
PASS -> UNRESOLVED: gdb.dlang/primitive-types.exp: set language d
PASS -> UNRESOLVED: gdb.dlang/properties.exp: set language d
new UNRESOLVED: gdb.dlang/watch-loc.exp: disassemble _Dmain
new UNRESOLVED: gdb.dlang/watch-loc.exp: p _Dmain_label - _Dmain
new UNRESOLVED: gdb.dlang/watch-loc.exp: x/2i _Dmain+
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: disassemble first
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: disassemble second
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p first_label - first
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p second_label - second
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: x/2i first+
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: x/2i second+
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/dw2-ifort-parameter.exp: x/2i func+
PASS -> UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: console: set print object on
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: continue to func01
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: create varobj for ptr
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: get children of var1
PASS -> UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: mi: run to main
PASS -> UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: mi: set print object on
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access array member
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access integer member
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access pointer member
new FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: disassemble bar
new FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: disassemble baz
PASS -> FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: disassemble foo
new FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: disassemble foo_cold
new FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p bar_label - bar
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p baz_label - baz
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_cold_label - foo_cold
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p foo_label - foo
new UNRESOLVED: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: p main_label - main
new FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: x/2i bar+
new FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: x/2i baz+
new FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: x/2i foo+
new FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: x/2i foo_cold+
new FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: x/2i main+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble bar
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble baz
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble foo
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: disassemble foo_low
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p bar_label - bar
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p baz_label - baz
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p foo_label - foo
new UNRESOLVED: gdb.dwarf2/dw2-ranges-psym.exp: p foo_low_label - foo_low
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i bar+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i baz+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i foo+
new FAIL: gdb.dwarf2/dw2-ranges-psym.exp: x/2i foo_low+
PASS -> UNRESOLVED: gdb.dwarf2/dw2-ranges.exp: info line main
new UNRESOLVED: gdb.dwarf2/implptr-64bit.exp: failed to prepare
new FAIL: gdb.dwarf2/implref-array.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/implref-array.exp: p main_label - main
new FAIL: gdb.dwarf2/implref-array.exp: x/2i main+
new FAIL: gdb.dwarf2/implref-struct.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/implref-struct.exp: p main_label - main
new FAIL: gdb.dwarf2/implref-struct.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/info-locals-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: disassemble mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: p mymain_label - mymain
new UNRESOLVED: gdb.dwarf2/main-subprogram.exp: x/2i mymain+
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i main+
PASS -> FAIL: gdb.linespec/break-ask.exp: continue to breakpoint: body_elsewhere
PASS -> FAIL: gdb.linespec/break-ask.exp: continue to breakpoint: body_elsewhere other
PASS -> UNRESOLVED: gdb.linespec/break-ask.exp: expect breakpoint
PASS -> UNRESOLVED: gdb.linespec/break-ask.exp: expect breakpoint other
PASS -> FAIL: gdb.linespec/break-ask.exp: info source
PASS -> FAIL: gdb.linespec/break-ask.exp: info source other
new UNRESOLVED: gdb.linespec/keywords.exp: can't run to main
PASS -> UNRESOLVED: gdb.objc/print.exp: set language objective-c
PASS -> UNRESOLVED: gdb.pascal/types.exp: set language pascal
new UNRESOLVED: gdb.python/py-as-string.exp: couldn't run to main.
new UNRESOLVED: gdb.python/py-error.exp: check if python 3
PASS -> UNRESOLVED: gdb.python/py-error.exp: main reached
PASS -> UNRESOLVED: gdb.python/py-error.exp: no delayed error
PASS -> UNRESOLVED: gdb.python/py-error.exp: set host-charset IBM1047
new UNRESOLVED: gdb.python/py-error.exp: verify python support
PASS -> UNRESOLVED: gdb.python/py-function.exp: Test GDBError - python
PASS -> UNRESOLVED: gdb.python/py-function.exp: Test GdbError.  There should not be a stack trace
PASS -> UNRESOLVED: gdb.python/py-function.exp: Test Normal Error - python
PASS -> UNRESOLVED: gdb.python/py-function.exp: Test a Runtime error.  There should be a stack trace.
PASS -> UNRESOLVED: gdb.python/py-function.exp: call function
PASS -> UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = ada
PASS -> UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = asm
PASS -> UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = auto
PASS -> UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = c
PASS -> UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = c++
PASS -> UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = d
PASS -> UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = fortran
PASS -> UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = go
PASS -> UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = minimal
PASS -> UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = modula-2
PASS -> UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = objective-c
PASS -> UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = opencl
PASS -> UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = pascal
PASS -> UNRESOLVED: gdb.python/py-function.exp: call value-returning function, language = rust
PASS -> UNRESOLVED: gdb.python/py-function.exp: call yes with &&
PASS -> UNRESOLVED: gdb.python/py-function.exp: call yes with ||
new UNRESOLVED: gdb.python/py-function.exp: check if python 3
PASS -> UNRESOLVED: gdb.python/py-function.exp: input command-calling function - python
PASS -> UNRESOLVED: gdb.python/py-function.exp: input convenience function - python
PASS -> UNRESOLVED: gdb.python/py-function.exp: input int-returning function - python
PASS -> UNRESOLVED: gdb.python/py-function.exp: input value-returning convenience function - python
PASS -> UNRESOLVED: gdb.python/py-function.exp: set language ada
PASS -> UNRESOLVED: gdb.python/py-function.exp: set language asm
PASS -> UNRESOLVED: gdb.python/py-function.exp: set language auto
PASS -> UNRESOLVED: gdb.python/py-function.exp: set language c
PASS -> UNRESOLVED: gdb.python/py-function.exp: set language c++
PASS -> UNRESOLVED: gdb.python/py-function.exp: set language d
PASS -> UNRESOLVED: gdb.python/py-function.exp: set language fortran
PASS -> UNRESOLVED: gdb.python/py-function.exp: set language go
PASS -> UNRESOLVED: gdb.python/py-function.exp: set language minimal
PASS -> UNRESOLVED: gdb.python/py-function.exp: set language modula-2
PASS -> UNRESOLVED: gdb.python/py-function.exp: set language objective-c
PASS -> UNRESOLVED: gdb.python/py-function.exp: set language opencl
PASS -> UNRESOLVED: gdb.python/py-function.exp: set language pascal
PASS -> UNRESOLVED: gdb.python/py-function.exp: set language rust
PASS -> UNRESOLVED: gdb.python/py-function.exp: set python print-stack full
PASS -> UNRESOLVED: gdb.python/py-function.exp: setting a value from a function which executes a command, again.
PASS -> UNRESOLVED: gdb.python/py-function.exp: setting a value from a function which executes a command.
new UNRESOLVED: gdb.python/py-function.exp: verify python support
new UNRESOLVED: gdb.python/py-lookup-type.exp: check if python 3
PASS -> UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type CARDINAL using language modula-2
PASS -> UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language c
PASS -> UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language objective-c
PASS -> UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type char using language pascal
PASS -> UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type character using language ada
PASS -> UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type character using language fortran
PASS -> UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type int32 using language go
PASS -> UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type ucent using language d
PASS -> UNRESOLVED: gdb.python/py-lookup-type.exp: lookup type ushort using language opencl
PASS -> UNRESOLVED: gdb.python/py-lookup-type.exp: set language ada
PASS -> UNRESOLVED: gdb.python/py-lookup-type.exp: set language c
PASS -> UNRESOLVED: gdb.python/py-lookup-type.exp: set language d
PASS -> UNRESOLVED: gdb.python/py-lookup-type.exp: set language fortran
PASS -> UNRESOLVED: gdb.python/py-lookup-type.exp: set language go
PASS -> UNRESOLVED: gdb.python/py-lookup-type.exp: set language modula-2
PASS -> UNRESOLVED: gdb.python/py-lookup-type.exp: set language objective-c
PASS -> UNRESOLVED: gdb.python/py-lookup-type.exp: set language opencl
PASS -> UNRESOLVED: gdb.python/py-lookup-type.exp: set language pascal
new UNRESOLVED: gdb.python/py-lookup-type.exp: verify python support
new UNRESOLVED: gdb.python/py-nested-maps.exp: check if python 3
new UNRESOLVED: gdb.python/py-nested-maps.exp: verify python support
new UNRESOLVED: gdb.python/py-prompt.exp: check if python 3
new UNRESOLVED: gdb.python/py-prompt.exp: verify python support
new UNRESOLVED: gdb.python/py-recurse-unwind.exp: can't run to main
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 33
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 34
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 35
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 36
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 37
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 38
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 39
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 40
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 41
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 42
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 43
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 44
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 45
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 46
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 47
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 48
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 49
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 50
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 51
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 52
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 53
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 54
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 55
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 56
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 57
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 58
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 59
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 60
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 61
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 62
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to 63
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to ALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to BUS
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to CHLD
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to CONT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to DANGER
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to EMT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to FPE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to GRANT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to HUP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to ILL
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to IO
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to LOST
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to LWP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to MSG
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to PHONE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to PIPE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to POLL
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to PRIO
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to PROF
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to PWR
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to QUIT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to RETRACT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to SAK
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to SEGV
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to SOUND
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to SYS
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to TERM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to TSTP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to TTIN
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to TTOU
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to URG
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to USR1
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to USR2
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to VTALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to WAITING
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to WINCH
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to WIND
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to XCPU
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: advance to XFSZ
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_33
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_34
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_35
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_36
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_37
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_38
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_39
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_40
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_41
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_42
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_43
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_44
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_45
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_46
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_47
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_48
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_49
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_50
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_51
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_52
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_53
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_54
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_55
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_56
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_57
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_58
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_59
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_60
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_61
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_62
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_63
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_ALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_BUS
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_CHLD
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_CONT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_DANGER
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_EMT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_FPE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_GRANT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_HUP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_ILL
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_IO
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_LOST
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_LWP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_MSG
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_PHONE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_PIPE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_POLL
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_PRIO
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_PROF
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_PWR
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_QUIT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_RETRACT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_SAK
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_SEGV
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_SOUND
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_SYS
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_TERM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_TSTP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_TTIN
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_TTOU
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_URG
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_USR1
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_USR2
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_VTALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_WAITING
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_WINCH
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_WIND
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_XCPU
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b gen_XFSZ
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_33
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_34
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_35
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_36
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_37
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_38
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_39
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_40
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_41
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_42
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_43
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_44
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_45
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_46
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_47
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_48
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_49
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_50
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_51
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_52
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_53
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_54
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_55
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_56
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_57
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_58
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_59
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_60
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_61
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_62
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_63
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_ABRT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_ALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_BUS
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_CHLD
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_CONT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_DANGER
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_EMT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_FPE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_GRANT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_HUP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_ILL
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_IO
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_LOST
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_LWP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_MSG
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_PHONE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_PIPE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_POLL
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_PRIO
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_PROF
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_PWR
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_QUIT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_RETRACT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_SAK
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_SEGV
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_SOUND
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_SYS
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_TERM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_TSTP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_TTIN
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_TTOU
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_URG
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_USR1
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_USR2
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_VTALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_WAITING
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_WINCH
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_WIND
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_XCPU
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: b handle_XFSZ
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_33
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_34
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_35
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_36
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_37
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_38
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_39
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_40
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_41
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_42
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_43
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_44
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_45
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_46
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_47
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_48
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_49
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_50
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_51
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_52
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_53
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_54
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_55
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_56
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_57
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_58
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_59
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_60
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_61
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_62
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_63
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_ABRT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_ALRM
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_BUS
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_CHLD
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_CONT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_DANGER
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_EMT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_FPE
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_GRANT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_HUP
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_ILL
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_IO
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_LOST
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_LWP
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_MSG
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_PHONE
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_PIPE
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_POLL
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_PRIO
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_PROF
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_PWR
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_QUIT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_RETRACT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_SAK
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_SEGV
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_SOUND
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_SYS
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_TERM
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_TSTP
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_TTIN
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_TTOU
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_URG
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_USR1
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_USR2
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_VTALRM
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_WAITING
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_WINCH
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_WIND
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_XCPU
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: break *handle_XFSZ
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: breakpoint at end of main
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: continue
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: continue to sigall exit
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 33
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 34
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 35
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 36
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 37
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 38
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 39
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 40
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 41
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 42
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 43
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 44
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 45
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 46
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 47
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 48
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 49
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 50
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 51
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 52
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 53
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 54
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 55
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 56
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 57
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 58
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 59
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 60
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 61
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 62
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal 63
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal ABRT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal ALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal BUS
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal CHLD
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal CONT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal DANGER
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal EMT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal FPE
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal GRANT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal HUP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal ILL
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal IO
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal LOST
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal LWP
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal MSG
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal PHONE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal PIPE
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal POLL
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal PRIO
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal PROF
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal PWR
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal QUIT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal RETRACT
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal SAK
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal SEGV
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal SOUND
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal SYS
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal TERM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal TSTP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal TTIN
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal TTOU
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal URG
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal USR1
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal USR2
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal VTALRM
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal WAITING
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal WINCH
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal WIND
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal XCPU
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: get signal XFSZ
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG33 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG34 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG35 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG36 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG37 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG38 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG39 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG40 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG41 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG42 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG43 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG44 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG45 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG46 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG47 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG48 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG49 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG50 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG51 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG52 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG53 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG54 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG55 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG56 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG57 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG58 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG59 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG60 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG61 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG62 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIG63 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGABRT stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGALRM stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGBUS stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGCHLD stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGCONT stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGDANGER stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGEMT stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGFPE stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGGRANT stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGHUP stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGILL stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGIO stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGLOST stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGLWP stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGMSG stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGPHONE stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGPIPE stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGPOLL stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGPRIO stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGPROF stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGPWR stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGQUIT stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGRETRACT stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGSAK stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGSEGV stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGSOUND stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGSYS stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGTERM stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGTSTP stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGTTIN stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGTTOU stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGURG stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGUSR1 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGUSR2 stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGVTALRM stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGWAITING stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGWINCH stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGWIND stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGXCPU stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle SIGXFSZ stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle all nostop noprint
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: handle all stop print
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: kill process, prepare to debug log file
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reload precord save file
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_33
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_34
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_35
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_36
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_37
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_38
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_39
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_40
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_41
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_42
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_43
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_44
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_45
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_46
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_47
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_48
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_49
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_50
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_51
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_52
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_53
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_54
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_55
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_56
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_57
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_58
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_59
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_60
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_61
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_62
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_63
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_ABRT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_ALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_BUS
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_CHLD
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_CONT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_DANGER
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_EMT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_FPE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_GRANT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_HUP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_ILL
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_IO
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_LOST
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_LWP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_MSG
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_PHONE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_PIPE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_POLL
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_PRIO
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_PROF
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_PWR
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_QUIT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_RETRACT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_SAK
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_SEGV
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_SOUND
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_SYS
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_TERM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_TSTP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_TTIN
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_TTOU
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_URG
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_USR1
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_USR2
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_VTALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_WAITING
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_WINCH
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_WIND
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_XCPU
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to gen_XFSZ
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 33
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 34
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 35
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 36
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 37
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 38
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 39
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 40
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 41
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 42
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 43
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 44
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 45
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 46
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 47
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 48
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 49
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 50
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 51
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 52
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 53
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 54
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 55
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 56
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 57
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 58
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 59
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 60
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 61
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 62
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of 63
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of ABRT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of ALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of BUS
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of CHLD
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of CONT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of DANGER
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of EMT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of FPE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of GRANT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of HUP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of ILL
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of IO
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of LOST
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of LWP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of MSG
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of PHONE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of PIPE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of POLL
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of PRIO
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of PROF
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of PWR
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of QUIT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of RETRACT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of SAK
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of SEGV
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of SOUND
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of SYS
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of TERM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of TSTP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of TTIN
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of TTOU
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of URG
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of USR1
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of USR2
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of VTALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of WAITING
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of WINCH
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of WIND
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of XCPU
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: reverse to handler of XFSZ
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: save process recfile
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 33
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 34
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 35
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 36
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 37
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 38
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 39
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 40
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 41
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 42
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 43
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 44
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 45
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 46
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 47
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 48
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 49
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 50
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 51
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 52
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 53
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 54
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 55
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 56
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 57
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 58
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 59
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 60
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 61
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 62
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal 63
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal ABRT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal ALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal BUS
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal CHLD
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal CONT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal DANGER
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal EMT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal FPE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal GRANT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal HUP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal ILL
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal IO
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal LOST
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal LWP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal MSG
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal PHONE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal PIPE
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal POLL
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal PRIO
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal PROF
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal PWR
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal QUIT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal RETRACT
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal SAK
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal SEGV
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal SOUND
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal SYS
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal TERM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal TSTP
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal TTIN
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal TTOU
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal URG
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal USR1
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal USR2
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal VTALRM
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal WAITING
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal WINCH
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal WIND
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal XCPU
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: send signal XFSZ
PASS -> UNRESOLVED: gdb.reverse/sigall-precsave.exp: turn on process record
new UNRESOLVED: gdb.reverse/sigall-reverse.exp: sigall-reverse.exp
PASS -> UNRESOLVED: gdb.rust/expr.exp: set language rust
PASS -> UNRESOLVED: gdb.rust/expr.exp: set var $something = 27
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.server/unittest.exp: unit tests
new UNRESOLVED: gdb.trace/actions.exp: failed to compile
new UNRESOLVED: gdb.trace/ax.exp: failed to compile
new UNRESOLVED: gdb.trace/deltrace.exp: failed to compile
new UNRESOLVED: gdb.trace/infotrace.exp: failed to compile
PASS -> UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with missing argument
PASS -> UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with too many arguments
PASS -> UNRESOLVED: gdb.trace/mi-trace-save.exp: -trace-save with wrong option
new UNRESOLVED: gdb.trace/packetlen.exp: failed to compile
new UNRESOLVED: gdb.trace/passc-dyn.exp: failed to compile
new UNRESOLVED: gdb.trace/passcount.exp: failed to compile
new UNRESOLVED: gdb.trace/report.exp: failed to compile
new UNRESOLVED: gdb.trace/save-trace.exp: failed to compile
new UNRESOLVED: gdb.trace/tfind.exp: failed to compile
new UNRESOLVED: gdb.trace/tracecmd.exp: failed to compile
new UNRESOLVED: gdb.trace/tsv.exp: failed to compile
new UNRESOLVED: gdb.trace/while-dyn.exp: failed to compile
new UNRESOLVED: gdb.trace/while-stepping.exp: failed to compile
PASS -> UNRESOLVED: gdb.tui/completion.exp: set max-completions unlimited
new UNRESOLVED: gdb.tui/completion.exp: verify tui support
PASS -> UNRESOLVED: gdb.tui/empty.exp: set tui border-kind ascii
PASS -> UNRESOLVED: gdb.tui/empty.exp: src: 80x24: box 1
new UNRESOLVED: gdb.tui/empty.exp: verify tui support
PASS -> UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: correct line breaks
PASS -> UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: set height 2000
PASS -> UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: set pagination on
PASS -> UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: tui enable
new UNRESOLVED: gdb.tui/tui-nl-filtered-output.exp: verify tui support
PASS -> UNRESOLVED: gdb.xml/maint_print_struct.exp: printing tdesc with a structure and a bitfield
PASS -> UNRESOLVED: gdb.xml/maint_print_struct.exp: setting a new tdesc having only a structure
new UNRESOLVED: gdb.xml/tdesc-arch.exp: architecture XML tests
PASS -> UNRESOLVED: gdb.xml/tdesc-arch.exp: read default architecture
PASS -> UNRESOLVED: gdb.xml/tdesc-arch.exp: read valid architectures
PASS -> UNRESOLVED: gdb.xml/tdesc-errors.exp: set tdesc filename gdb.xml/tdesc-bogus.xml
PASS -> UNRESOLVED: gdb.xml/tdesc-errors.exp: set tdesc filename gdb.xml/tdesc-unknown.xml
PASS -> UNRESOLVED: gdb.xml/tdesc-regs.exp: cd to directory holding xml
PASS -> UNRESOLVED: gdb.xml/tdesc-regs.exp: maintenance print reggroups
PASS -> UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $bitfields
PASS -> UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $extrareg
PASS -> UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $flags
PASS -> UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $mixed_flags
PASS -> UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $structreg
PASS -> UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $structreg.v4
PASS -> UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $uintreg
PASS -> UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $unionreg
PASS -> UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $unionreg.v4
PASS -> UNRESOLVED: gdb.xml/tdesc-regs.exp: ptype $vecreg
PASS -> UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc file single-reg.xml
PASS -> UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc filename test-extra-regs.xml - from extra-regs.xml
PASS -> UNRESOLVED: gdb.xml/tdesc-regs.exp: set tdesc filename test-regs.xml - from core-only.xml
PASS -> UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/bad-include.xml
PASS -> UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/includes.xml
PASS -> UNRESOLVED: gdb.xml/tdesc-xinclude.exp: set tdesc filename gdb.xml/loop.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-gdbserver-m64/38/381beca6146ac68b57edf47d28cdb335fbd11635//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/38/381beca6146ac68b57edf47d28cdb335fbd11635//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-09-26 15:01 [binutils-gdb] Do not expose stub types to Python gdb-buildbot
@ 2019-09-26 16:23 ` gdb-buildbot
  0 siblings, 0 replies; 3517+ messages in thread
From: gdb-buildbot @ 2019-09-26 16:23 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/797

Author:
        Tom Tromey <tromey@adacore.com>

Commit tested:
        5d63b30afa2d1e24a3d1e6fe97507473e0545a02

Subject of commit:
        Do not expose stub types to Python

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/5d/5d63b30afa2d1e24a3d1e6fe97507473e0545a02/

*** 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/Ubuntu-Aarch64-native-gdbserver-m64/5d/5d63b30afa2d1e24a3d1e6fe97507473e0545a02//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/5d/5d63b30afa2d1e24a3d1e6fe97507473e0545a02//xfail.table.gz>


^ permalink raw reply	[flat|nested] 3517+ messages in thread

end of thread, other threads:[~2020-07-24  3:07 UTC | newest]

Thread overview: 3517+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-23 18:09 [binutils-gdb] gdb: Convert language la_printstr field to a method gdb-buildbot
2020-06-23 18:09 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-23 18:27 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, " gdb-buildbot
2020-07-24  0:32 ` *** COMPILATION FAILED *** Failures on Fedora-i686, branch master *** BREAKAGE *** gdb-buildbot
2020-07-24  1:09 ` Failures on Fedora-x86_64-cc-with-index, branch master gdb-buildbot
2020-07-24  1:23 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
2020-07-24  1:43 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
2020-07-24  2:07 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
2020-07-24  2:29 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
2020-07-24  2:43 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
2020-07-24  3:07 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
  -- strict thread matches above, loose matches on Subject: below --
2020-06-24  3:57 [binutils-gdb] gdb: New maintenance command to print XML target description gdb-buildbot
2020-06-24  4:15 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-23 22:49 [binutils-gdb] Fix "maint selftest" regression, add struct scoped_mock_context gdb-buildbot
2020-06-23 23:28 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-23 22:30 [binutils-gdb] Adjust command completion output when TUI is disabled gdb-buildbot
2020-06-23 22:30 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-23 21:04 [binutils-gdb] Improve -Wunused-value testcase build failures fix gdb-buildbot
2020-06-23 21:33 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-23 15:34 [binutils-gdb] gdb: Convert language la_post_parser field to a method gdb-buildbot
2020-06-23 15:34 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-23 12:09 [binutils-gdb] Avoid testcase build failures with -Wunused-value gdb-buildbot
2020-06-23 12:29 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-23  9:50 [binutils-gdb] gdb: Add --with-python-libdir to gdb's --configuration output gdb-buildbot
2020-06-23 10:09 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-22 20:51 [binutils-gdb] Add tests for new alias default-args related commands and arguments gdb-buildbot
2020-06-22 21:29 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-22 19:54 [binutils-gdb] default-args: allow to define default arguments for aliases gdb-buildbot
2020-06-22 20:32 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-22 17:58 [binutils-gdb] Disable parts of gdb.base/source-dir.exp on remote host gdb-buildbot
2020-06-22 18:16 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-22 15:37 [binutils-gdb] aarch64: Normalize and sort feature bit macros gdb-buildbot
2020-06-22 15:56 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-22 14:59 [binutils-gdb] Recognize some new Mach-O load commands gdb-buildbot
2020-06-22 14:59 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-22 12:47 [binutils-gdb] gdb/jit: return bool in jit_breakpoint_re_set_internal and jit_read_descriptor gdb-buildbot
2020-06-22 13:06 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-22  2:50 [binutils-gdb] RISC-V: Don't assume the priv attributes are in order when handling them gdb-buildbot
2020-06-22  3:08 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-21 13:34 [binutils-gdb] PR26132, ar creates invalid libraries for some targets with plugins enabled gdb-buildbot
2020-06-21 13:52 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-21  3:47 [binutils-gdb] Adjust gdb.mi/mi-sym-info.exp filename patterns gdb-buildbot
2020-06-21  3:47 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-21  1:10 [binutils-gdb] Fix gdb.base/list-missing-source.exp on remote host gdb-buildbot
2020-06-21  1:28 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-20  0:04 [binutils-gdb] [gdb/testsuite] Limit default_target_compile override gdb-buildbot
2020-06-20  0:42 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-19 22:13 [binutils-gdb] Decouple inferior_ptid/inferior_thread(); dup ptids in thread list (PR 25412) gdb-buildbot
2020-06-19 22:50 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-19 17:15 [binutils-gdb] Don't write to inferior_ptid in fork-child.c gdb-buildbot
2020-06-19 17:15 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-19 16:03 [binutils-gdb] Don't write to inferior_ptid in bsd-kvm.c gdb-buildbot
2020-06-19 16:21 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-19  9:39 [binutils-gdb] Don't write to inferior_ptid in nto-procfs.c gdb-buildbot
2020-06-19  9:57 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-19  5:22 [binutils-gdb] Don't write to inferior_ptid in procfs.c gdb-buildbot
2020-06-19  5:22 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-19  3:50 [binutils-gdb] Don't write to inferior_ptid in infrun.c gdb-buildbot
2020-06-19  4:27 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-19  2:19 [binutils-gdb] Don't write to inferior_ptid in inf-ptrace.c gdb-buildbot
2020-06-19  2:37 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-18 13:48 [binutils-gdb] [gdb/testsuite] Move code from gdb_init to default_gdb_init gdb-buildbot
2020-06-18 14:06 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-18  0:49 [binutils-gdb] Fix TCL error in gdb.python/py-format-string.exp gdb-buildbot
2020-06-18  1:26 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-17 22:40 [binutils-gdb] gdb, gdbserver: remove ARM regdat files gdb-buildbot
2020-06-17 22:40 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-17 21:27 [binutils-gdb] gdb/features: remove rx.xml from XMLTOC list gdb-buildbot
2020-06-17 21:46 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-17 19:51 [binutils-gdb] x86: Delete incorrect vmgexit entry in prefix_table gdb-buildbot
2020-06-17 19:51 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-17 17:29 [binutils-gdb] Update thread_control_state::trap_expected comments gdb-buildbot
2020-06-17 17:51 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-17 14:26 [binutils-gdb] gdb: Convert language la_value_print field to a method gdb-buildbot
2020-06-17 14:26 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-17 13:46 [binutils-gdb] gdb: Convert language la_watch_location_expression field to a method gdb-buildbot
2020-06-17 14:08 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-17 11:00 [binutils-gdb] gdb: Convert language la_get_symbol_name_matcher field to a method gdb-buildbot
2020-06-17 11:19 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-17  9:11 [binutils-gdb] gdb: Convert language la_class_name_from_physname field to a method gdb-buildbot
2020-06-17  9:29 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-17  2:46 [binutils-gdb] Fix crash when exiting TUI with gdb -tui gdb-buildbot
2020-06-17  2:46 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-17  0:38 [binutils-gdb] Fix crash when TUI window creation fails gdb-buildbot
2020-06-17  0:56 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-15 20:44 [binutils-gdb] xtensa: allow runtime ABI selection gdb-buildbot
2020-06-15 21:02 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-15  7:33 [binutils-gdb] gdb/testsuite: fix minor things in jit tests gdb-buildbot
2020-06-15  8:10 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-14 12:51 [binutils-gdb] x86: Correct xsusldtrk mnemonic gdb-buildbot
2020-06-14 13:28 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-13  4:15 [binutils-gdb] gdb: mention removed GDBserver host support in NEWS gdb-buildbot
2020-06-13  4:33 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-13  3:38 [binutils-gdb] gdbserver: remove support for ARM/WinCE gdb-buildbot
2020-06-13  3:38 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-13  2:25 [binutils-gdb] gdbserver: remove support for Tile gdb-buildbot
2020-06-13  2:43 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-13  1:48 [binutils-gdb] gdbserver: remove support for M32R gdb-buildbot
2020-06-13  1:48 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-13  0:15 [binutils-gdb] gdbserver: remove support for CRIS gdb-buildbot
2020-06-13  0:53 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-12 21:48 [binutils-gdb] gdbserver: remove support for LynxOS gdb-buildbot
2020-06-12 22:06 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-12 12:11 [binutils-gdb] [gdb/testsuite] Don't leak tuiterm.exp spawn override gdb-buildbot
2020-06-12 12:29 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-12  7:55 [binutils-gdb] [gdb/testsuite] Don't abort testrun for invalid command in test-case gdb-buildbot
2020-06-12  8:13 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-11 17:19 [binutils-gdb] Fix hex floating point lexing gdb-buildbot
2020-06-11 17:36 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-11  2:14 [binutils-gdb] ia64: Set DF_TEXTREL instead of reltext gdb-buildbot
2020-06-11  2:32 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-10 13:17 [binutils-gdb] ELF: Properly handle section symbols gdb-buildbot
2020-06-10 13:35 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-09 15:25 [binutils-gdb] IFUNC: Update IFUNC resolver check with DT_TEXTREL gdb-buildbot
2020-06-09 15:25 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-09 11:42 [binutils-gdb] x86: consistently print prefixes explicitly which are invalid with VEX etc gdb-buildbot
2020-06-09 11:42 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-09  9:34 [binutils-gdb] x86: utilize X macro in EVEX decoding gdb-buildbot
2020-06-09  9:52 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-09  1:29 [binutils-gdb] PowerPC64: Downgrade ifunc with textrel error to a warning gdb-buildbot
2020-06-09  1:47 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-08 23:05 [binutils-gdb] gdb: remove FIELD_TYPE macro gdb-buildbot
2020-06-08 23:42 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-08 20:39 [binutils-gdb] gdb: add type::index_type / type::set_index_type gdb-buildbot
2020-06-08 20:57 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-08 15:56 [binutils-gdb] [PATCH] arm: Add DFB instruction for ARMv8-R gdb-buildbot
2020-06-08 16:14 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-08  7:43 [binutils-gdb] x86: restrict use of register aliases gdb-buildbot
2020-06-08  7:43 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-07 15:25 [binutils-gdb] Remove unused parameter from generic_val_print_float gdb-buildbot
2020-06-07 15:25 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-07  1:42 [binutils-gdb] Remove is_vxworks from _bfd_sparc_elf_link_hash_table gdb-buildbot
2020-06-07  1:42 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-06 14:12 [binutils-gdb] ELF: Add target_os to elf_link_hash_table/elf_backend_data gdb-buildbot
2020-06-06 14:48 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-06  7:12 [binutils-gdb] Power10 tidies gdb-buildbot
2020-06-06  7:12 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-05 21:14 [binutils-gdb] Revert "gdb/python: Avoid use after free in py-tui.c" gdb-buildbot
2020-06-05 21:14 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-05 15:58 [binutils-gdb] bfin: Skip non SEC_ALLOC section gdb-buildbot
2020-06-05 16:16 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-05 14:27 [binutils-gdb] Fix a use before initialization bug in the pdp11.c source file gdb-buildbot
2020-06-05 14:27 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-05  9:51 [binutils-gdb] gdb: really share partial symtabs when using .gdb_index or .debug_names gdb-buildbot
2020-06-05  9:51 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-05  8:36 [binutils-gdb] x86: Remove target_id from elf_x86_link_hash_table gdb-buildbot
2020-06-05  8:54 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-05  7:23 [binutils-gdb] [gdb/testsuite] Remove path names from error messages in gdb_file_cmd gdb-buildbot
2020-06-05  8:00 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-05  6:10 [binutils-gdb] cpu, gas, opcodes: remove no longer needed workaround from the BPF port gdb-buildbot
2020-06-05  6:10 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-04 16:50 [binutils-gdb] opcodes: discriminate endianness and insn-endianness in CGEN ports gdb-buildbot
2020-06-04 17:08 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-04 15:17 [binutils-gdb] [gdb/testsuite] Fix use of fail in gdb_cmd_file gdb-buildbot
2020-06-04 15:17 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-04  0:30 [binutils-gdb] [gdb/symtab] Fix missing breakpoint location for inlined function gdb-buildbot
2020-06-04  0:49 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-03 23:35 [binutils-gdb] nios2: Call _bfd_elf_maybe_set_textrel to set DF_TEXTREL gdb-buildbot
2020-06-03 23:53 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-03 22:03 [binutils-gdb] frv: Don't generate dynamic relocation for non SEC_ALLOC sections gdb-buildbot
2020-06-03 22:03 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-03 20:13 [binutils-gdb] [gdb/testsuite] Fix use of verbose in gdb/jit-*.exp gdb-buildbot
2020-06-03 20:13 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-03 19:18 [binutils-gdb] Updated Serbian translation for the opcodes sub-directory gdb-buildbot
2020-06-03 19:18 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-03 17:46 [binutils-gdb] This patch set for the generic BFD a.out backend removes a dead #define and makes aoutx.h self-contained: [PATCH 1/2]: bfd: remove unused NO_WRITE_HEADER_KLUDGE #define [PATCH 2/2]: bfd: make aoutx.h self-contained gdb-buildbot
2020-06-03 18:23 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-03 16:09 [binutils-gdb] ELF: Copy dyn_relocs in _bfd_elf_link_hash_copy_indirect gdb-buildbot
2020-06-03 16:33 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-03 14:37 [binutils-gdb] x86: Silence -fsanitize=undefined gdb-buildbot
2020-06-03 14:37 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-03  2:28 [binutils-gdb] RISC-V: Fix the error when building RISC-V linux native gdbserver gdb-buildbot
2020-06-03  2:28 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-03  0:38 [binutils-gdb] gdb: Convert language la_demangle field to a method gdb-buildbot
2020-06-03  0:38 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-02 22:48 [binutils-gdb] gdb: Convert language la_sniff_from_mangled_name field to a method gdb-buildbot
2020-06-02 22:48 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-02 21:16 [binutils-gdb] gdb: Convert language la_search_name_hash field to a method gdb-buildbot
2020-06-02 21:54 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-02 20:41 [binutils-gdb] gdb: Convert language la_get_compile_instance field to a method gdb-buildbot
2020-06-02 20:58 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-02 19:45 [binutils-gdb] gdb: Convert language la_iterate_over_symbols field to a method gdb-buildbot
2020-06-02 20:03 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-02 19:07 [binutils-gdb] gdb: Convert language la_lookup_transparent_type field to a method gdb-buildbot
2020-06-02 19:07 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-02 17:54 [binutils-gdb] gdb: Convert language la_language_arch_info field to a method gdb-buildbot
2020-06-02 18:12 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-02 17:17 [binutils-gdb] gdb: Convert language la_pass_by_reference field to a method gdb-buildbot
2020-06-02 17:17 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-02 15:09 [binutils-gdb] gdb: Convert language la_print_array_index field to a method gdb-buildbot
2020-06-02 15:27 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-02 13:34 [binutils-gdb] [gdb/testsuite] Fix scrolling in gdb.dwarf2/multidictionary.exp gdb-buildbot
2020-06-02 13:34 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-06-01 15:41 [binutils-gdb] alpha-vms: ETIR checks gdb-buildbot
2020-06-01 15:59 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-31 10:59 [binutils-gdb] gnu-nat: Move local functions inside gnu_nat_target class gdb-buildbot
2020-05-31 11:17 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-31  0:21 [binutils-gdb] hurd: add gnu_target pointer to fix thread API calls gdb-buildbot
2020-05-31  0:38 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-30 23:26 [binutils-gdb] hurd: remove unused variables gdb-buildbot
2020-05-30 23:43 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-30 21:37 [binutils-gdb] hurd: make function cast stronger gdb-buildbot
2020-05-30 21:55 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-30 20:07 [binutils-gdb] hurd: fix gnu_debug_flag type gdb-buildbot
2020-05-30 20:07 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-30  9:14 [binutils-gdb] gdb: rename dwarf2_per_objfile variables/fields to per_objfile gdb-buildbot
2020-05-30  9:51 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-30  7:43 [binutils-gdb] Fix file-not-found error with clang in gdb.arch/i386-{avx, sse}.c gdb-buildbot
2020-05-30  8:01 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-30  6:49 [binutils-gdb] Build two gdb.cp testcases with -Wno-unused-comparison gdb-buildbot
2020-05-30  7:06 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-30  4:23 [binutils-gdb] gdb: add comment in dwarf_evaluate_loc_desc::push_dwarf_reg_entry_value gdb-buildbot
2020-05-30  4:23 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-30  3:10 [binutils-gdb] Fix Python3.9 related runtime problems gdb-buildbot
2020-05-30  3:28 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-30  1:38 [binutils-gdb] Fix "enumeration values not handled in switch" error in testsuite gdb-buildbot
2020-05-30  1:38 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-30  0:26 [binutils-gdb] gdb: use caller objfile in dwarf_evaluate_loc_desc::push_dwarf_reg_entry_value gdb-buildbot
2020-05-30  0:44 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-29 22:37 [binutils-gdb] [gdb/symtab] Make gold index workaround more precise gdb-buildbot
2020-05-29 22:54 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-29 21:41 [binutils-gdb] Fix "'operator new' should not return NULL" errors in testsuite gdb-buildbot
2020-05-29 21:59 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-29 20:47 [binutils-gdb] ubsan: nios2: undefined shift gdb-buildbot
2020-05-29 21:05 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-29 17:09 [binutils-gdb] cp-completion-aliases.exp: Use test_gdb_complete_{unique, multiple} gdb-buildbot
2020-05-29 17:27 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-29 16:12 [binutils-gdb] Use add_partial_symbol in load_partial_dies gdb-buildbot
2020-05-29 16:31 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-29 14:23 [binutils-gdb] Lazily compute partial DIE name gdb-buildbot
2020-05-29 14:41 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-29 13:46 [binutils-gdb] Attribute method inlining gdb-buildbot
2020-05-29 13:46 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-29 10:41 [binutils-gdb] Don't close process handle provided by WaitForDebugEvent gdb-buildbot
2020-05-29 10:58 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-29  9:27 [binutils-gdb] Don't close thread handles provided by WaitForDebugEvent gdb-buildbot
2020-05-29 10:04 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-29  7:21 [binutils-gdb] Make mapped_debug_names independent of objfile gdb-buildbot
2020-05-29  7:21 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-29  6:26 [binutils-gdb] Replace dwarf2_per_cu_data::cu backlink with per-objfile map gdb-buildbot
2020-05-29  6:26 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-29  5:31 [binutils-gdb] Pass existing_cu object to cutu_reader gdb-buildbot
2020-05-29  5:31 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-29  4:36 [binutils-gdb] Add comp_unit_head to dwarf2_per_cu_data gdb-buildbot
2020-05-29  4:36 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-29  3:22 [binutils-gdb] Make load_cu return the loaded dwarf2_cu gdb-buildbot
2020-05-29  3:40 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-29  0:35 [binutils-gdb] Move signatured_type::type to unshareable object gdb-buildbot
2020-05-29  0:53 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-28 23:57 [binutils-gdb] Split type_unit_group gdb-buildbot
2020-05-28 23:57 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-28 22:44 [binutils-gdb] Remove dwarf2_per_cu_data::dwarf2_per_objfile gdb-buildbot
2020-05-28 23:02 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-28 17:56 [binutils-gdb] Add dwarf2_per_objfile parameters to dwarf2_fetch_* functions gdb-buildbot
2020-05-28 18:14 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-28 16:37 [binutils-gdb] Add dwarf2_per_objfile parameter to allocate_piece_closure gdb-buildbot
2020-05-28 17:18 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-28 16:19 [binutils-gdb] Add dwarf2_per_objfile parameter to dwarf2_read_addr_index gdb-buildbot
2020-05-28 16:19 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-28 13:28 [binutils-gdb] Move int type methods out of dwarf2_per_cu_data gdb-buildbot
2020-05-28 13:28 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-28 12:13 [binutils-gdb] Remove reference to dwarf2_per_cu_data::dwarf2_per_objfile in queue_and_load_all_dwo_tus gdb-buildbot
2020-05-28 12:32 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-28  9:25 [binutils-gdb] Add dwarf2_per_objfile parameter to recursively_compute_inclusions gdb-buildbot
2020-05-28  9:43 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-28  8:28 [binutils-gdb] Add dwarf2_per_objfile parameter to create_partial_symtab gdb-buildbot
2020-05-28  8:47 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-28  5:41 [binutils-gdb] Add dwarf2_per_objfile parameter to cutu_reader's constructors gdb-buildbot
2020-05-28  5:59 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-28  5:03 [binutils-gdb] Use bfd_get_filename instead of objfile_name in lookup_dwo_unit gdb-buildbot
2020-05-28  5:03 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-28  1:57 [binutils-gdb] Remove dwarf2_cu->per_cu->dwarf2_per_objfile references gdb-buildbot
2020-05-28  2:16 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-28  1:20 [binutils-gdb] Remove reference to dwarf2_per_cu_data::dwarf2_per_objfile in dw2_do_instantiate_symtab gdb-buildbot
2020-05-28  1:20 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-27 22:31 [binutils-gdb] Remove symtab links from dwarf2_psymtab and dwarf2_per_cu_quick_data gdb-buildbot
2020-05-27 22:31 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-27 21:16 [binutils-gdb] Split dwarf2_per_objfile into dwarf2_per_objfile and dwarf2_per_bfd gdb-buildbot
2020-05-27 21:34 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-27 20:19 [binutils-gdb] Add dwarf2_per_objfile member to DWARF batons gdb-buildbot
2020-05-27 20:37 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-27 18:26 [binutils-gdb] Add "objfile" parameter to two partial_symtab methods gdb-buildbot
2020-05-27 18:44 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-26 23:10 [binutils-gdb] Ensure class_tui is listed in the output of "help" giving the list of classes gdb-buildbot
2020-05-26 23:10 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-26 14:32 [binutils-gdb] Extend the error message displayed when a plugin fails to load gdb-buildbot
2020-05-26 14:50 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-26 12:47 [binutils-gdb] [gdb/testsuite] Add test-case gold-gdb-index.exp gdb-buildbot
2020-05-26 12:47 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-26 10:40 [binutils-gdb] [gdb/testsuite] Add target board gold-gdb-index gdb-buildbot
2020-05-26 10:58 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-26 10:03 [binutils-gdb] gdb: make avr_integer_to_address generate code or data address based on type gdb-buildbot
2020-05-26 10:03 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-26  7:00 [binutils-gdb] gdb/testsuite: support passing inferior arguments with native-gdbserver board gdb-buildbot
2020-05-26  7:18 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-26  3:55 [binutils-gdb] nto_process_target::create_inferior: Pass args as char ** gdb-buildbot
2020-05-26  4:33 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-25 22:19 [binutils-gdb] [gdb/testsuite] Fix var use in compile_and_download_n_jit_so gdb-buildbot
2020-05-25 22:56 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-25 19:52 [binutils-gdb] Revert "Add completion styling" gdb-buildbot
2020-05-25 20:10 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-25 12:58 [binutils-gdb] Don't remove C++ aliases from completions if symbol doesn't match gdb-buildbot
2020-05-25 12:58 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-24  7:26 [binutils-gdb] gdb: remove TYPE_FIELD macro gdb-buildbot
2020-05-24  9:31 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-23 23:04 [binutils-gdb] Add completion styling gdb-buildbot
2020-05-24  3:15 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-23 12:50 [binutils-gdb] Use safe-ctype.h (ISSPACE etc.) in symbol parsing & comparison gdb-buildbot
2020-05-23 12:50 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-23  0:24 [binutils-gdb] gdb: remove TYPE_FIELDS macro gdb-buildbot
2020-05-23  0:42 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-22 23:30 [binutils-gdb] gdb: add type::fields / type::set_fields gdb-buildbot
2020-05-22 23:47 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-22 21:40 [binutils-gdb] gdb: add type::num_fields / type::set_num_fields gdb-buildbot
2020-05-22 21:58 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-22  5:06 [binutils-gdb] PowerPC: downgrade FP mismatch error for shared libraries to a warning gdb-buildbot
2020-05-22  5:06 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-21 19:09 [binutils-gdb] gdb: fix -Wtautological-overlap-compare error in lm32-tdep.c gdb-buildbot
2020-05-21 19:09 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-21 15:12 [binutils-gdb] Re: PR25993, read of freed memory gdb-buildbot
2020-05-21 15:12 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-21  3:04 [binutils-gdb] Replace "if (x) free (x)" with "free (x)", opcodes gdb-buildbot
2020-05-21  3:23 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-20 20:45 [binutils-gdb] gdb: reset/recompute objfile section offsets in reread_symbols gdb-buildbot
2020-05-20 20:45 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-20 16:10 [binutils-gdb] gdb/testsuite: check mmap ret val against MAP_FAILED gdb-buildbot
2020-05-20 16:10 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-20 14:57 [binutils-gdb] Fix array_char_idx.exp gdb-buildbot
2020-05-20 15:15 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-20 10:29 [binutils-gdb] [gdb/symtab] Handle .gdb_index in ada language mode gdb-buildbot
2020-05-20 10:47 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-20  6:01 [binutils-gdb] Power10 dcbf, sync, and wait extensions gdb-buildbot
2020-05-20  6:19 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-20  5:06 [binutils-gdb] PR26011, excessive memory allocation with fuzzed reloc sections gdb-buildbot
2020-05-20  5:24 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-19 18:54 [binutils-gdb] [gdb/testsuite] Fix typo in gdb.base/gdb-caching-proc.exp gdb-buildbot
2020-05-20  2:40 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-19 18:43 [binutils-gdb] Fix duplicate tests in gdb.rust gdb-buildbot
2020-05-20  1:43 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-19 18:41 [binutils-gdb] Update call to target_fileio_open gdb-buildbot
2020-05-20  0:47 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-19 17:49 [binutils-gdb] Default gdb_bfd_open's fd parameter to -1 gdb-buildbot
2020-05-19 23:25 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-19 17:42 [binutils-gdb] Fix thinko in recent update to bfd_section_from_shdr gdb-buildbot
2020-05-19 21:12 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-19 17:41 [binutils-gdb] gdb: make symfile_segment_data::segment_info an std::vector gdb-buildbot
2020-05-19 20:05 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-19 17:40 [binutils-gdb] gdb: use std::vector to store segments in symfile_segment_data gdb-buildbot
2020-05-19 18:58 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-19 14:02 [binutils-gdb] Fix the ARM assembler to generate a Realtime profile for armv8-r gdb-buildbot
2020-05-19 14:02 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-19 12:53 [binutils-gdb] or1k: Regenerate opcodes after removing 32-bit support gdb-buildbot
2020-05-19 12:53 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-19 11:21 [binutils-gdb] [PATCH v3] aarch64: Emit jump slot for conditional branch to undefined symbols gdb-buildbot
2020-05-19 11:21 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-19  1:45 [binutils-gdb] win32 typo fix gdb-buildbot
2020-05-19  2:35 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-13 12:51 [binutils-gdb] Fix the disassmbly of SH instructions which have an unsigned 8-bit immediate operand gdb-buildbot
2020-05-18 18:43 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-11 23:30 [binutils-gdb] Fix array pretty formatter gdb-buildbot
2020-05-18 13:55 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-11 19:35 [binutils-gdb] Add definitions of system calls to catch in native NetBSD targets gdb-buildbot
2020-05-18  9:09 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-11 13:36 [binutils-gdb] gdb: Fix toplevel types with -fdebug-types-section gdb-buildbot
2020-05-18  1:47 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-11  5:55 [binutils-gdb] [gdb/testsuite] Add PR number to KFAIL in gdb.opt/inline-cmds.exp gdb-buildbot
2020-05-17 16:13 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-11  0:22 [binutils-gdb] [gdb/symtab] Handle struct decl with DW_AT_signature gdb-buildbot
2020-05-17  9:03 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-10 18:12 [binutils-gdb] gdb, gdbserver: remove configure check for fs_base/gs_base in user_regs_struct gdb-buildbot
2020-05-17  1:53 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-10 14:20 [binutils-gdb] Fix remaining inline/tailcall unwinding breakage for x86_64 gdb-buildbot
2020-05-16 21:06 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-09 16:53 [binutils-gdb] gdb/testsuite: Remove build paths from test names gdb-buildbot
2020-05-16  3:39 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-09 14:26 [binutils-gdb] Fix Rust test cases gdb-buildbot
2020-05-15 23:08 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-09  8:18 [binutils-gdb] Use the new add_psymbol_to_list overload gdb-buildbot
2020-05-15 15:28 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-09  4:47 [binutils-gdb] Add attribute::value_as_string method gdb-buildbot
2020-05-15 10:41 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-09  2:38 [binutils-gdb] Fix two latent Rust bugs gdb-buildbot
2020-05-15  8:17 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-09  0:25 [binutils-gdb] Move the rust "{" hack gdb-buildbot
2020-05-15  5:54 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-08 17:35 [binutils-gdb] Update test cases that work with minimal encodings gdb-buildbot
2020-05-14 22:43 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-08 13:32 [binutils-gdb] Add tests for Ada changes gdb-buildbot
2020-05-14 17:56 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-08 11:53 [binutils-gdb] Update Ada ptype support for dynamic types gdb-buildbot
2020-05-14 15:32 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-08  7:45 [binutils-gdb] Add support for dynamic type lengths gdb-buildbot
2020-05-14 10:45 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-08  0:23 [binutils-gdb] Add new variant part code gdb-buildbot
2020-05-14  1:12 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-07 19:36 [binutils-gdb] Add WOW64 exception numbers to $_siginfo.ExceptionCode enum gdb-buildbot
2020-05-13 20:24 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-07 15:18 [binutils-gdb] [gdb/testsuite] Reset errcnt in clean_restart gdb-buildbot
2020-05-13 15:37 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-07  5:17 [binutils-gdb] [gdb/testsuite] Reduce errors after gdb exit in default_gdb_start gdb-buildbot
2020-05-13  6:04 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-06 21:01 [binutils-gdb] Fix inline frame unwinding breakage gdb-buildbot
2020-05-12 22:54 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-06 18:20 [binutils-gdb] [gdb/symtab] Prefer def over decl (inter-CU case, with context) gdb-buildbot
2020-05-12 20:30 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-06  7:33 [binutils-gdb] arc: Add support for ARC HS extra registers in core files gdb-buildbot
2020-05-12 11:17 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-06  4:23 [binutils-gdb] [gdb/testsuite] Skip gdb.base/readnever.exp with target board readnow gdb-buildbot
2020-05-12  8:59 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-06  1:50 [binutils-gdb] [gdb/symtab] Fix disassembly of non-contiguous functions gdb-buildbot
2020-05-12  6:41 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-05 22:49 [binutils-gdb] xtensa: fix PR ld/25861 gdb-buildbot
2020-05-12  4:23 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-05 14:55 [binutils-gdb] [gdb/symtab] Store external var decls in psymtab gdb-buildbot
2020-05-11 19:01 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-05  6:50 [binutils-gdb] gdb/infrun: switch the context before 'displaced_step_restore' gdb-buildbot
2020-05-11  9:36 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-05  5:03 [binutils-gdb] Disallow PC relative for CMPI on MC68000/10 gdb-buildbot
2020-05-11  7:19 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-05  2:33 [binutils-gdb] BFD: Exclude sections with no content from compress check gdb-buildbot
2020-05-11  5:01 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-04 22:50 [binutils-gdb] gdb, btrace: diagnose double and failed enable gdb-buildbot
2020-05-11  0:24 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-04 17:56 [binutils-gdb] [gdb] Fix hang after ext sigkill gdb-buildbot
2020-05-10 19:53 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-04 16:01 [binutils-gdb] [gdb/testsuite] share jit-protocol.h by all jit tests gdb-buildbot
2020-05-10 17:35 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-04 12:09 [binutils-gdb] [gdb/testsuite] allow more registers in gdb.base/jit-reader.exp gdb-buildbot
2020-05-10 12:59 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-04 10:04 [binutils-gdb] elf: Strip zero-sized dynamic sections gdb-buildbot
2020-05-10 10:41 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-04  2:41 [binutils-gdb] Remove SH-5 remnants gdb-buildbot
2020-05-09 22:04 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-03 20:34 [binutils-gdb] Disable nested function tests for clang gdb-buildbot
2020-05-09 13:58 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-03 18:02 [binutils-gdb] Add myself to gdb/MAINTAINERS gdb-buildbot
2020-05-09 11:15 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-03  6:38 [binutils-gdb] [AArch64, Binutils] Make hint space instructions valid for Armv8-a gdb-buildbot
2020-05-08 21:30 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-02  9:50 [binutils-gdb] Replace most calls to help_list and cmd_show_list gdb-buildbot
2020-05-07 17:16 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-02  6:00 [binutils-gdb] Remove obsolete and unused inf_ptrace_target::auxv_parse gdb-buildbot
2020-05-07 11:22 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-02  4:40 [binutils-gdb] PR25842, Null pointer dereference in nm-new gdb-buildbot
2020-05-07  9:03 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-01 17:21 [binutils-gdb] Fix Cygwin gdb build gdb-buildbot
2020-05-06 20:39 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-01 15:23 [binutils-gdb] [gdb/symtab] Handle PU without import in "save gdb-index" gdb-buildbot
2020-05-06 18:21 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-01 12:46 [binutils-gdb] Fix compilation of python/python.c for Python 3.9 gdb-buildbot
2020-05-06 15:57 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-01 10:59 [binutils-gdb] PR25827, Null pointer dereferencing in scan_unit_for_symbols gdb-buildbot
2020-05-06 13:36 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-01  9:03 [binutils-gdb] cpu, gas, opcodes: support for eBPF JMP32 instruction class gdb-buildbot
2020-05-06 11:14 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-01  5:17 [binutils-gdb] PowerPC64 GOT reloc reserving PLT entry for ifunc gdb-buildbot
2020-05-06  5:33 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-05-01  3:29 [binutils-gdb] PowerPC64 GOT reloc optimisation gdb-buildbot
2020-05-06  3:15 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-30 21:26 [binutils-gdb] Use debug_printf in windows-nat.c gdb-buildbot
2020-05-05 20:07 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-30 15:03 [binutils-gdb] Unify the behaviour of ld.bfd and ld.gold with respect to warning about unresolved symbol references. (PR 24613) gdb-buildbot
2020-05-05 13:12 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-30  2:14 [binutils-gdb] [gdb] Fix missing symtab includes gdb-buildbot
2020-05-04 23:21 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-29 20:57 [binutils-gdb] Remove gdb_fildes_t gdb-buildbot
2020-05-04 15:37 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-29 17:15 [binutils-gdb] Switch gdbserver to gdbsupport event loop gdb-buildbot
2020-05-04 10:59 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-28 14:48 [binutils-gdb] Implement IP_MINIMAL and IP_ALL on NetBSD gdb-buildbot
2020-05-03  7:45 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-28  8:55 [binutils-gdb] Implement "info proc exe" for NetBSD gdb-buildbot
2020-05-03  0:50 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-28  4:05 [binutils-gdb] Implement "info proc mappings" for NetBSD gdb-buildbot
2020-05-02 22:33 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-27 19:18 [binutils-gdb] gdb: fix undefined behavior reported in copy_bitwise gdb-buildbot
2020-05-02  9:28 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-27 10:51 [binutils-gdb] [gdb/testsuite] Fix -readnow FAIL in gdb.base/style.exp gdb-buildbot
2020-05-01 23:46 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-27  7:10 [binutils-gdb] gdb: move Tom de Vries to Global Maintainers gdb-buildbot
2020-05-01 19:10 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-27  1:48 [binutils-gdb] Add pending stop support to gdbserver's Windows port gdb-buildbot
2020-05-01 12:14 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-26 10:15 [binutils-gdb] Share handle_exception gdb-buildbot
2020-04-30 17:49 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-26  8:36 [binutils-gdb] Remove some globals from windows-nat.c gdb-buildbot
2020-04-30 15:30 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-26  4:37 [binutils-gdb] Fix up complaints.h for namespace use gdb-buildbot
2020-04-30 10:51 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-25 17:49 [binutils-gdb] Share thread_rec between gdb and gdbserver gdb-buildbot
2020-04-30  1:30 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-25  7:06 [binutils-gdb] Change type of argument to windows-nat.c:thread_rec gdb-buildbot
2020-04-29 16:09 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-25  4:16 [binutils-gdb] Share Windows thread-suspend and -resume code gdb-buildbot
2020-04-29 13:52 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-25  1:35 [binutils-gdb] Use lwp, not tid, for Windows thread id gdb-buildbot
2020-04-29 11:33 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-24 19:34 [binutils-gdb] Change two windows_thread_info members to "bool" gdb-buildbot
2020-04-29  6:24 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-24  8:35 [binutils-gdb] Rename win32_thread_info to windows_thread_info gdb-buildbot
2020-04-28 18:11 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-24  5:56 [binutils-gdb] Remove the "next" field from windows_thread_info gdb-buildbot
2020-04-28 15:53 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-24  3:04 [binutils-gdb] gdb: stop using host-dependent signal numbers in windows-tdep.c gdb-buildbot
2020-04-28 13:35 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-24  0:15 [binutils-gdb] Remove objfile parameter from read_gdb_index_from_buffer gdb-buildbot
2020-04-28 11:17 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-23 15:59 [binutils-gdb] Define NetBSD specific skip_solib_resolver gdb-buildbot
2020-04-28  1:59 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-23 13:05 [binutils-gdb] DWARFv5: Info address command error in gdb with DWARFfv5 gdb-buildbot
2020-04-27 23:40 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-23 10:20 [binutils-gdb] DWARFv5: Handle location list for split dwarf gdb-buildbot
2020-04-27 21:22 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-21 10:09 [binutils-gdb] gdb: replace some calls to internal_error with gdb_assert gdb-buildbot
2020-04-26  2:19 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-21  7:32 [binutils-gdb] Avoid assertion failure due to complex type change gdb-buildbot
2020-04-25 23:25 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-21  4:59 [binutils-gdb] Micro-optimize partial_die_info::read gdb-buildbot
2020-04-25 16:44 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-21  2:02 [binutils-gdb] gdb: Don't remove duplicate entries from the line table gdb-buildbot
2020-04-25 14:21 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-20 13:48 [binutils-gdb] coff-go32-exe: support variable-length stubs gdb-buildbot
2020-04-25  5:03 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-20 12:37 [binutils-gdb] gdbserver/linux-low: delete 'linux_target_ops' and 'the_low_target' gdb-buildbot
2020-04-25  2:43 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-20  9:59 [binutils-gdb] gdbserver/linux-low: turn 'get_ipa_tdesc_idx' into a method gdb-buildbot
2020-04-25  0:23 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-20  7:19 [binutils-gdb] gdbserver/linux-low: turn 'get_syscall_trapinfo' into a method gdb-buildbot
2020-04-24 22:03 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-19 21:43 [binutils-gdb] gdbserver/linux-low: turn fast tracepoint ops into methods gdb-buildbot
2020-04-24 12:48 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-19 19:18 [binutils-gdb] gdbserver/linux-low: turn 'get_thread_area' into a method gdb-buildbot
2020-04-24 10:28 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-18 19:39 [binutils-gdb] gdbserver/linux-low: turn 'supports_z_point_type' into a method gdb-buildbot
2020-04-23 13:41 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-18 11:35 [binutils-gdb] gdbserver/linux-low: turn 'supports_software_single_step' and 'get_next_pcs' into methods gdb-buildbot
2020-04-23  6:40 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-18  8:42 [binutils-gdb] gdbserver/linux-low: turn 'sw_breakpoint_from_kind' into a method gdb-buildbot
2020-04-23  4:20 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-17 21:26 [binutils-gdb] gdbserver/linux-low: turn 'fetch_register' into a method gdb-buildbot
2020-04-22 19:01 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-17  9:43 [binutils-gdb] gdbserver/linux-low: start turning linux target ops into methods gdb-buildbot
2020-04-22  9:44 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-17  7:13 [binutils-gdb] gdbserver/linux-low: turn some static functions into private methods gdb-buildbot
2020-04-22  7:24 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-16 11:49 [binutils-gdb] gdb: fix style issues in is_linked_with_cygwin_dll gdb-buildbot
2020-04-21 15:09 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-16  8:49 [binutils-gdb] Fix an undefined behavior in record_line gdb-buildbot
2020-04-21 12:49 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-16  6:02 [binutils-gdb] Fix the resizing condition of the line table gdb-buildbot
2020-04-21 10:29 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-16  0:15 [binutils-gdb] Fix value_literal_complex comment gdb-buildbot
2020-04-21  5:51 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-15 21:30 [binutils-gdb] Add _Complex type support to C parser gdb-buildbot
2020-04-21  3:32 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-15 18:33 [binutils-gdb] Implement complex arithmetic gdb-buildbot
2020-04-21  1:12 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-15  4:22 [binutils-gdb] Move Rust union tests to new file gdb-buildbot
2020-04-20 13:34 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-14  3:40 [binutils-gdb] Arm: Fix thumb2 PLT branch offsets gdb-buildbot
2020-04-19 16:53 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-14  0:57 [binutils-gdb] include: Sync plugin-api.h with GCC gdb-buildbot
2020-04-19 14:35 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-13  6:31 [binutils-gdb] tekhex: Uninitialised read gdb-buildbot
2020-04-18 21:47 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-12 22:23 [binutils-gdb] Fix objcopy's --preserve-dates command line option so that it will work with PE format files gdb-buildbot
2020-04-18 13:03 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-12 14:39 [binutils-gdb] Add low_new_clone method to linux_nat_target gdb-buildbot
2020-04-18  6:13 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-12 11:59 [binutils-gdb] [gdb/testsuite] Fix c-linkage-name.exp with {cc-with-gdb-index, readnow}.exp gdb-buildbot
2020-04-18  3:56 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-12  9:56 [binutils-gdb] PR25745, powerpc64-ld overflows string buffer in --stats mode gdb-buildbot
2020-04-18  1:38 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-11 14:29 [binutils-gdb] Fix comment in dwarf2/attribute.h gdb-buildbot
2020-04-17  6:10 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-11 12:24 [binutils-gdb] Fix formatting of read_attribute_reprocess gdb-buildbot
2020-04-17  3:52 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-11 10:01 [binutils-gdb] Always fix system DLL paths for 32bit programs gdb-buildbot
2020-04-17  1:35 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-11  5:22 [binutils-gdb] Support AT_BSDFLAGS on FreeBSD gdb-buildbot
2020-04-16 20:59 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-11  2:49 [binutils-gdb] Change two functions to be methods on struct attribute gdb-buildbot
2020-04-16 18:41 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-11  0:00 [binutils-gdb] Move DWARF-constant stringifying code to new file gdb-buildbot
2020-04-16 16:23 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-10 21:07 [binutils-gdb] Rewrite new die_info methods gdb-buildbot
2020-04-16 14:00 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-10 15:27 [binutils-gdb] Remove sibling_die gdb-buildbot
2020-04-16  9:24 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-10 12:55 [binutils-gdb] Change dwarf2_attr_no_follow to be a method gdb-buildbot
2020-04-16  7:06 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-10 11:01 [binutils-gdb] Remove dwarf2_cu::base_known gdb-buildbot
2020-04-16  4:47 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-10  0:04 [binutils-gdb] Trivial fix in dwarf_decode_macro_bytes gdb-buildbot
2020-04-15 19:37 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-09 22:15 [binutils-gdb] Use a const dwarf2_section_info in macro reader gdb-buildbot
2020-04-15 17:19 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-09 11:35 [binutils-gdb] Convert dwarf2_section_buffer_overflow_complaint to a method gdb-buildbot
2020-04-15  5:53 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-09  9:47 [binutils-gdb] Move dwarf2_section_buffer_overflow_complaint to dwarf2/section.c gdb-buildbot
2020-04-15  3:35 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-09  5:29 [binutils-gdb] Change dwarf_decode_macro_bytes calling convention gdb-buildbot
2020-04-14 23:00 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-09  1:52 [binutils-gdb] Introduce dwarf2/dwz.h gdb-buildbot
2020-04-14 18:24 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-08 23:51 [binutils-gdb] Revert earlier delta adding bfd_coff_get_internal_extra_pe_aouthdr() function gdb-buildbot
2020-04-14 16:05 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-08 18:50 [binutils-gdb] Re: i386msdos uninitialised read gdb-buildbot
2020-04-14 11:28 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-08 17:03 [binutils-gdb] Re: ARC: Use of uninitialised value gdb-buildbot
2020-04-14  9:10 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-08 10:50 [binutils-gdb] Fix WOW64 process system DLL paths gdb-buildbot
2020-04-14  2:17 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-08  9:01 [binutils-gdb] Add a new function to the BFD library to allow users access to the COFF internal_extra_pe_outhdr structure gdb-buildbot
2020-04-13 23:59 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-08  6:42 [binutils-gdb] [gdb] Print user/includes fields for maint commands gdb-buildbot
2020-04-13 21:41 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-07 14:06 [binutils-gdb] Fix assertion failure in the BFD library when linking with --emit-relocs enabled gdb-buildbot
2020-04-13  3:15 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-07 12:06 [binutils-gdb] bfd: Change num_group to unsigned int gdb-buildbot
2020-04-13  0:57 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-07  8:07 [binutils-gdb] bfd: Display symbol version for nm -D gdb-buildbot
2020-04-12 20:21 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-06 20:12 [binutils-gdb] gdb/testsuite: Remove hard coded addresses from expected results gdb-buildbot
2020-04-12  6:31 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-06 13:12 [binutils-gdb] ARC: Use of uninitialised value gdb-buildbot
2020-04-11 23:38 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-06 11:24 [binutils-gdb] NS32K arg_bufs uninitialised gdb-buildbot
2020-04-11 21:20 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-05 21:48 [binutils-gdb] Make dwarf2_evaluate_property parameter const gdb-buildbot
2020-04-11  4:08 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-05 14:12 [binutils-gdb] Fix assert in c-exp.y gdb-buildbot
2020-04-10 18:57 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-05 11:56 [binutils-gdb] Avoid stringop-truncation errors gdb-buildbot
2020-04-10 16:39 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-05 10:19 [binutils-gdb] Fix column alignment in "maint info line-table" gdb-buildbot
2020-04-10 14:21 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-04 20:31 [binutils-gdb] plugin: Use LDPT_ADD_SYMBOLS_V2 to get symbol type gdb-buildbot
2020-04-09 22:18 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-04 15:03 [binutils-gdb] NDS32 disassembly of odd sized sections gdb-buildbot
2020-04-09 15:25 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-04 12:57 [binutils-gdb] PowerPC disassembly of odd sized sections gdb-buildbot
2020-04-09 13:06 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-04  3:39 [binutils-gdb] [AArch64] When unavailable, fetch VG from ptrace gdb-buildbot
2020-04-09  1:38 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-03 18:52 [binutils-gdb] gdb/testsuite/fortran: Add mixed language stack test gdb-buildbot
2020-04-08 16:07 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-03 14:34 [binutils-gdb] gdb: Restructure the completion_tracker class gdb-buildbot
2020-04-08 11:32 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-03 12:47 [binutils-gdb] [gdb/testsuite] Fix gdb.opt/inline-locals.exp KFAILs gdb-buildbot
2020-04-08  9:14 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-03 10:27 [binutils-gdb] Additional c99 elfxx-riscv.c fix gdb-buildbot
2020-04-08  6:57 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-03  8:41 [binutils-gdb] [gdb/testsuite] Add test-case gdb.dwarf2/break-inline-psymtab.exp gdb-buildbot
2020-04-08  4:39 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-03  5:08 [binutils-gdb] Non-contiguous memory regions support: Avoid calls to abort gdb-buildbot
2020-04-08  0:03 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-02 11:48 [binutils-gdb] Replace a couple of assertions in the BFD library that can be triggered by attempts to parse corrupt input files gdb-buildbot
2020-04-07  7:53 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-02  5:35 [binutils-gdb] Add support for NetBSD threads in sh-nbsd-nat.c gdb-buildbot
2020-04-07  0:59 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-02  3:22 [binutils-gdb] Inherit sh_nbsd_nat_target from nbsd_nat_target gdb-buildbot
2020-04-06 22:41 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-02  1:33 [binutils-gdb] Include missing header to get missing declarations gdb-buildbot
2020-04-06 20:24 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-01 23:29 [binutils-gdb] Rewrite nbsd_nat_target::pid_to_exec_file to sysctl(3) gdb-buildbot
2020-04-06 18:03 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-01 21:17 [binutils-gdb] [gdb] Skip imports of c++ CUs gdb-buildbot
2020-04-06 15:45 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-01 19:29 [binutils-gdb] [gdb/testsuite] Give up after consecutive timeouts in completion-support.exp gdb-buildbot
2020-04-06 13:27 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-01 17:21 [binutils-gdb] Initialize base_value in pascal_object_print_value gdb-buildbot
2020-04-06 11:09 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-01 15:10 [binutils-gdb] arc: Migrate to new target features gdb-buildbot
2020-04-06  8:51 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-01  6:45 [binutils-gdb] gdb: rename content of i386-windows-tdep.c, cygwin to windows gdb-buildbot
2020-04-05 23:38 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-04-01  2:03 [binutils-gdb] gdb: add Windows OS ABI gdb-buildbot
2020-04-05 19:03 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-31 21:47 [binutils-gdb] gdb: recognize 64 bits Windows executables as Cygwin osabi gdb-buildbot
2020-04-05 14:28 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-31 18:35 [binutils-gdb] [gdb/testsuite] Add cache_verify option for gdb_caching_procs gdb-buildbot
2020-04-05 12:10 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-31 15:09 [binutils-gdb] asan: alpha-vms: null dereference gdb-buildbot
2020-04-05  7:35 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-31 10:34 [binutils-gdb] [gdb/testsuite] Fix check-read1 FAIL with gdb.base/maint.exp gdb-buildbot
2020-04-05  2:59 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-30 21:33 [binutils-gdb] Add support for NetBSD threads in m68k-bsd-nat.c gdb-buildbot
2020-04-04  9:49 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-30 17:17 [binutils-gdb] Inherit m68k_bsd_nat_target from nbsd_nat_target gdb-buildbot
2020-04-04  5:13 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-30 15:05 [binutils-gdb] Define _KERNTYPES in m68k-bsd-nat.c gdb-buildbot
2020-04-04  2:55 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-30 11:04 [binutils-gdb] Remove unused code from alpha-bsd-nat.c gdb-buildbot
2020-04-03 22:19 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-30  3:21 [binutils-gdb] Add support for NetBSD threads in arm-nbsd-nat.c gdb-buildbot
2020-04-03 13:07 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-29 21:03 [binutils-gdb] Add support for threads in vax_bsd_nat_target gdb-buildbot
2020-04-03  6:14 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-29  0:35 [binutils-gdb] Remove val_print gdb-buildbot
2020-04-02  4:38 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-28 11:56 [binutils-gdb] Convert ada_val_print_ref to value-based API gdb-buildbot
2020-04-01 17:02 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-28  8:03 [binutils-gdb] Rewrite ada_value_print_1 floating point case gdb-buildbot
2020-04-01 12:27 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-27 23:31 [binutils-gdb] Introduce cp_print_value gdb-buildbot
2020-04-01  5:34 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-27 21:17 [binutils-gdb] Introduce cp_print_value_fields and c_value_print_struct gdb-buildbot
2020-04-01  3:16 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-27 19:29 [binutils-gdb] Introduce c_value_print_array gdb-buildbot
2020-04-01  0:58 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-27 15:14 [binutils-gdb] Introduce c_value_print_int gdb-buildbot
2020-03-31 18:04 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-27 13:09 [binutils-gdb] Introduce c_value_print_ptr gdb-buildbot
2020-03-31 15:47 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-27 11:02 [binutils-gdb] Rewrite c_value_print_inner gdb-buildbot
2020-03-31 13:33 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-27  2:43 [binutils-gdb] Introduce generic_value_print_int gdb-buildbot
2020-03-31  4:23 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-27  0:56 [binutils-gdb] Introduce generic_value_print_bool gdb-buildbot
2020-03-31  2:06 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-26 18:28 [binutils-gdb] Fix generic_val_print_enum for value-based printing gdb-buildbot
2020-03-30 19:12 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-26  2:22 [binutils-gdb] Convert Go printing to value-based API gdb-buildbot
2020-03-30  0:48 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-25 21:06 [binutils-gdb] Introduce ada_value_print_inner gdb-buildbot
2020-03-29 20:13 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-25 14:14 [binutils-gdb] Introduce m2_value_print_inner gdb-buildbot
2020-03-29 11:03 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-25  8:18 [binutils-gdb] Simplify c_val_print_array gdb-buildbot
2020-03-29  4:10 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-25  4:41 [binutils-gdb] Two simple uses of value_print_scalar_formatted gdb-buildbot
2020-03-28 23:35 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-24 20:04 [binutils-gdb] Use common_val_print in c-valprint.c gdb-buildbot
2020-03-28 12:05 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-24 14:16 [binutils-gdb] Use common_val_print in f-valprint.c gdb-buildbot
2020-03-28  7:30 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-24  8:13 [binutils-gdb] Use common_val_print in infcmd.c gdb-buildbot
2020-03-27 22:19 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-23 19:49 [binutils-gdb] Register NT_NETBSDCORE_AUXV (NetBSD-Core) gdb-buildbot
2020-03-27  8:29 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-23 14:06 [binutils-gdb] [gdb/testsuite] Fix buffer full errors in gdb.mi/mi-sym-info.exp gdb-buildbot
2020-03-27  1:39 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-23  8:01 [binutils-gdb] x86-64: correct mis-named X86_64_0D enumerator gdb-buildbot
2020-03-26 18:46 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-23  5:54 [binutils-gdb] [gdb/symtab] Fix partial unit psymtabs gdb-buildbot
2020-03-26 16:29 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-23  1:42 [binutils-gdb] Fix several mix up between octets and bytes in ELF program headers gdb-buildbot
2020-03-26 11:53 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-22 23:54 [binutils-gdb] [gdb/testsuite] Fix mi-sym-info.exp matching FAILs gdb-buildbot
2020-03-26  9:35 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-22 11:51 [binutils-gdb] Cast to bfd_vma in arm-tdep.c gdb-buildbot
2020-03-25 17:32 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-22 10:02 [binutils-gdb] Don't use sprintf_vma for CORE_ADDR gdb-buildbot
2020-03-25 15:14 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-22  8:15 [binutils-gdb] Fix CORE_ADDR size assertion in symfile-mem.c gdb-buildbot
2020-03-25 12:57 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-22  6:26 [binutils-gdb] gdb: use foreach_with_prefix in gdb.base/break-interp.exp gdb-buildbot
2020-03-25 10:39 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-22  0:36 [binutils-gdb] Don't include selftests objects in build when unit tests are disabled gdb-buildbot
2020-03-25  3:44 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-21 22:48 [binutils-gdb] Move sourcing of development.sh to GDB_AC_COMMON gdb-buildbot
2020-03-25  1:26 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-21 17:14 [binutils-gdb] sim: ppc: netbsd: Sync signal names with NetBSD 9.99.49 gdb-buildbot
2020-03-24 16:13 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-21  5:30 [binutils-gdb] [gdb/testsuite] Fix gdb.linespec/explicit.exp FAIL with glibc debug info gdb-buildbot
2020-03-24  2:25 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-21  3:19 [binutils-gdb] [gdb/testsuite] Use string_to_regexp on core filename in gdb_core_cmd gdb-buildbot
2020-03-24  0:07 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-20 14:48 [binutils-gdb] [gdb/testsuite] Fix printf regexp in gdb.server/sysroot.exp gdb-buildbot
2020-03-23 10:17 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-20  7:30 [binutils-gdb] Mark discriminants as artificial in gdb.dwarf2/variant.exp gdb-buildbot
2020-03-23  3:23 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-19 14:39 [binutils-gdb] [gdb/testsuite] Set EDITOR to true before using edit gdb-buildbot
2020-03-22 13:36 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-18  8:37 [binutils-gdb] asan: wasm: Out-of-memory gdb-buildbot
2020-03-21  3:07 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-17 21:13 [binutils-gdb] [gdb/testsuite] Fix testing build_executable result gdb-buildbot
2020-03-20 10:31 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-17 17:06 [binutils-gdb] Remove some obsolete comments gdb-buildbot
2020-03-20  5:54 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-17  7:08 [binutils-gdb] [gdb] Remove trailing "done" after "Reading symbols from" message gdb-buildbot
2020-03-19 13:44 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-17  4:48 [binutils-gdb] gdbserver/gdbsupport: Add .dir-locals.el file gdb-buildbot
2020-03-19 11:26 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-17  0:36 [binutils-gdb] x86: reduce amount of various VCVT* templates gdb-buildbot
2020-03-19  6:50 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-16 20:38 [binutils-gdb] x86: don't accept FI{LD, STP, STTP}LL in Intel syntax mode gdb-buildbot
2020-03-19  2:12 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-16 18:49 [binutils-gdb] x86: replace NoRex64 on VEX-encoded insns gdb-buildbot
2020-03-18 23:54 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-16  8:32 [binutils-gdb] bfd: xtensa: fix PR ld/25630 gdb-buildbot
2020-03-18 12:23 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-15 18:34 [binutils-gdb] Introduce objfile::intern gdb-buildbot
2020-03-17 20:14 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-15 16:46 [binutils-gdb] Make "gnutarget" const gdb-buildbot
2020-03-17 17:56 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-15 10:43 [binutils-gdb] gdb.fortran: Allow Flang kind printing in fortran testing gdb-buildbot
2020-03-17 11:00 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-15  7:05 [binutils-gdb] sh_addralign inconsistent with sh_addr gdb-buildbot
2020-03-17  6:25 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-15  3:17 [binutils-gdb] Find tailcall frames before inline frames gdb-buildbot
2020-03-17  1:49 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-14 21:32 [binutils-gdb] gdb/fortran: Fix printing of logical true values for Flang gdb-buildbot
2020-03-16 18:43 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-14 19:45 [binutils-gdb] Rebase executable to match relocated base address gdb-buildbot
2020-03-16 16:23 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-14 16:07 [binutils-gdb] Fix printf of a convenience variable holding an inferior address gdb-buildbot
2020-03-16 11:42 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-14 12:06 [binutils-gdb] Update GDB to use new AUXV entry types gdb-buildbot
2020-03-16  7:02 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-14  4:33 [binutils-gdb] [gdb/testsuite] Fix tcl error in gdb.mi/list-thread-groups-available.exp gdb-buildbot
2020-03-15 21:41 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-13 20:14 [binutils-gdb] Fix arm-netbsd build error: convert from FPA to VFP gdb-buildbot
2020-03-15 12:21 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-13 10:06 [binutils-gdb] Re: bfd_cleanup for object_p gdb-buildbot
2020-03-15  0:40 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-13  7:45 [binutils-gdb] gdb: Move defs.h before any system header in debuginfod-support.c gdb-buildbot
2020-03-14 22:19 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-13  5:52 [binutils-gdb] trad_unix_core_file_p: Return bfd_cleanup gdb-buildbot
2020-03-14 19:59 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-13  3:40 [binutils-gdb] Import latest fixes to libiberty from GCC gdb-buildbot
2020-03-14 17:38 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-13  2:00 [binutils-gdb] bfd_cleanup for object_p gdb-buildbot
2020-03-14 15:18 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-12 22:22 [binutils-gdb] ELF SEC_SMALL_DATA gdb-buildbot
2020-03-14 10:34 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-12  4:49 [binutils-gdb] Update libinproctrace.so path in lib/trace-support.exp gdb-buildbot
2020-03-13 12:36 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-11 23:24 [binutils-gdb] Fix comment for 'gdb_dlopen' gdb-buildbot
2020-03-13 10:16 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-11 21:36 [binutils-gdb] Fix SVE-related failure in gdb.arch/aarch64-fp.exp gdb-buildbot
2020-03-13  7:57 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-11 19:08 [binutils-gdb] Fix gdb.arch/aarch64-dbreg-contents.exp build failures gdb-buildbot
2020-03-13  5:37 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-11 15:19 [binutils-gdb] Pass correct die_reader_specs in cutu_reader::init_tu_and_read_dwo_dies gdb-buildbot
2020-03-13  0:57 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-11 11:10 [binutils-gdb] Harden gdb.arch/aarch64-pauth.exp and fix a failure gdb-buildbot
2020-03-12 18:23 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-11  9:19 [binutils-gdb] alpha-vms: memory leak gdb-buildbot
2020-03-12 16:04 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-11  5:38 [binutils-gdb] gdb: Check for nullptr when computing srcpath gdb-buildbot
2020-03-12 11:24 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-10 19:54 [binutils-gdb] [gdb/testsuite] Remove unused globals gdb-buildbot
2020-03-11 21:27 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-10 17:14 [binutils-gdb] [gdb/testsuite] Fix spawn in tuiterm.exp gdb-buildbot
2020-03-11 19:07 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-10 15:25 [binutils-gdb] _bfd_xcoff_read_ar_hdr tidy gdb-buildbot
2020-03-11 16:48 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-10 13:06 [binutils-gdb] bfd_stat_arch_elt buffer overflow gdb-buildbot
2020-03-11 14:27 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-10  7:05 [binutils-gdb] Add debuginfod support to GDB gdb-buildbot
2020-03-11  7:26 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-10  3:17 [binutils-gdb] Move more declarations from dwarf2/loc.h to dwarf2/read.h gdb-buildbot
2020-03-11  2:46 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-09 23:11 [binutils-gdb] Archive sanity checks gdb-buildbot
2020-03-10 22:06 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-09 21:24 [binutils-gdb] Re: vms buffer overflows and large memory allocation gdb-buildbot
2020-03-10 19:47 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-09 19:31 [binutils-gdb] Move dwarf2_read_addr_index declaration to dwarf2/read.h gdb-buildbot
2020-03-10 17:26 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-09  7:07 [binutils-gdb] gdb/fortran: Support negative array stride in one limited case gdb-buildbot
2020-03-10  3:27 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-09  5:14 [binutils-gdb] [AArch64] Fix typo in comment gdb-buildbot
2020-03-10  1:07 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-09  1:53 [binutils-gdb] Don't call lto-wrapper for ar and ranlib gdb-buildbot
2020-03-09 20:27 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-09  0:27 [binutils-gdb] [ARC][committed] Update int_vector_base aux register gdb-buildbot
2020-03-09 18:07 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-08 21:54 [binutils-gdb] [gdb/testsuite] Remove gcc/93866 xfail in methods.exp gdb-buildbot
2020-03-09 15:47 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-08 20:07 [binutils-gdb] Move dwarf2_get_die_type declaration to dwarf2/read.h gdb-buildbot
2020-03-09 13:28 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-08 18:22 [binutils-gdb] gdb/copyright.py: Add generated files in gnulib/ to exclude list gdb-buildbot
2020-03-09 11:09 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-08 16:48 [binutils-gdb] Fix a memory leak and remove an unused member gdb-buildbot
2020-03-09  8:49 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-08 12:39 [binutils-gdb] Simplify setting of reading_partial_symbols gdb-buildbot
2020-03-09  4:10 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-08 10:45 [binutils-gdb] [gdb] Ensure listing of unused static var in info locals gdb-buildbot
2020-03-09  1:50 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-08  8:47 [binutils-gdb] [gdb/testsuite] Fix layout next/prev/regs help message gdb-buildbot
2020-03-08 23:30 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-08  7:13 [binutils-gdb] Re: vms buffer overflows and large memory allocation gdb-buildbot
2020-03-08 21:11 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-08  4:51 [binutils-gdb] vms buffer overflows and large memory allocation gdb-buildbot
2020-03-08 18:51 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-07 17:37 [binutils-gdb] Make some tui_source_window_base members "protected" gdb-buildbot
2020-03-08  4:53 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
     [not found] <7c043ba695a3cee067554b1e871e60f7934512b4@gdb-build>
2020-03-07 12:02 ` gdb-buildbot
2020-03-07 10:04 [binutils-gdb] Remove tui_delete_invisible_windows and tui_make_all_invisible gdb-buildbot
2020-03-07 21:22 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-06 10:32 [binutils-gdb] Simplify TUI C-x 2 binding gdb-buildbot
2020-03-06 17:55 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-06  9:49 [binutils-gdb] Fix latent display bug in tui_data_window gdb-buildbot
2020-03-06 15:34 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-06  6:39 [binutils-gdb] Simplify tui_add_win_to_layout gdb-buildbot
2020-03-06 13:52 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-06  4:56 [binutils-gdb] Use TUI_DISASM_WIN instead of tui_win_list array gdb-buildbot
2020-03-06 10:56 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-06  1:02 [binutils-gdb] Style field names in "print" gdb-buildbot
2020-03-06  9:10 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-05  8:30 [binutils-gdb] [gdb/testsuite] Fix gdb.go/methods.exp gdb-buildbot
2020-03-05 10:41 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-05  3:58 [binutils-gdb] gdb/testsuite: Add test for case where gdb_demangle returns NULL gdb-buildbot
2020-03-05  3:39 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-05  1:24 [binutils-gdb] Check for null result from gdb_demangle gdb-buildbot
2020-03-05  1:00 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-04 22:59 [binutils-gdb] Fuzzers whining about mach-o support gdb-buildbot
2020-03-04 22:55 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-04 18:21 [binutils-gdb] Fix latent bug in dwarf2_find_containing_comp_unit gdb-buildbot
2020-03-04 18:21 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-04  4:21 [binutils-gdb] gdbserver: simply copy the pointer in 'set_target_ops' gdb-buildbot
2020-03-04  4:15 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-03 21:46 [binutils-gdb] gdbserver: turn target op 'supports_software_single_step' into a method gdb-buildbot
2020-03-03 21:40 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-03 17:14 [binutils-gdb] gdbserver: turn target ops 'thread_name' and 'thread_handle' into methods gdb-buildbot
2020-03-03 19:37 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-03 16:44 [binutils-gdb] gdbserver: turn breakpoint kind-related target ops into methods gdb-buildbot
2020-03-03 16:43 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-03  9:44 [binutils-gdb] gdbserver: turn target op 'supports_range_stepping' into a method gdb-buildbot
2020-03-03  9:44 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-03  5:38 [binutils-gdb] gdbserver: turn btrace-related target ops into methods gdb-buildbot
2020-03-03  7:49 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-02 19:42 [binutils-gdb] gdbserver: turn fast tracepoint target ops into methods gdb-buildbot
2020-03-02 19:39 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-02  8:30 [binutils-gdb] gdbserver: turn target op 'thread_stopped' into a method gdb-buildbot
2020-03-02 11:19 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-01 20:56 [binutils-gdb] gdbserver: turn target op 'core_of_thread' into a method gdb-buildbot
2020-03-01 23:00 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-01 18:53 [binutils-gdb] gdbserver: turn target op 'handle_monitor_command' into a method gdb-buildbot
2020-03-01 20:20 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-01 16:21 [binutils-gdb] gdbserver: turn target op 'handle_new_gdb_connection' into a method gdb-buildbot
2020-03-01 18:00 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-03-01 11:42 [binutils-gdb] gdbserver: turn non-stop and async target ops into methods gdb-buildbot
2020-03-01 11:29 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-29  8:01 [binutils-gdb] gdbserver: turn target op 'supports_z_point_type' into a method gdb-buildbot
2020-02-29  9:30 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-29  1:09 [binutils-gdb] gdbserver: turn target op 'look_up_symbols' into a method gdb-buildbot
2020-02-29  2:42 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-28 19:58 [binutils-gdb] gdbserver: turn prepare_to_access_memory & done_accessing_memory into methods gdb-buildbot
2020-02-28 21:51 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-28  9:03 [binutils-gdb] gdbserver: turn target op 'join' into a method gdb-buildbot
2020-02-28 10:58 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-28  6:09 [binutils-gdb] gdbserver: turn target op 'mourn' into a method gdb-buildbot
2020-02-28  7:53 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-27 23:07 [binutils-gdb] gdbserver: turn target op 'attach' into a method gdb-buildbot
2020-02-28  1:10 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-27 22:32 [binutils-gdb] gdbserver: turn target op 'post_create_inferior' into a method gdb-buildbot
2020-02-27 22:04 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-27 19:46 [binutils-gdb] gdbserver: turn target op 'create_inferior' into a method gdb-buildbot
2020-02-27 19:43 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-27 13:47 [binutils-gdb] Stop the BFD library from automatically converting OS and PROC specific symbol section indicies to SHN_ABS, and provide a hook for backends to decide how such indicies should be processed gdb-buildbot
2020-02-27 15:30 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-27  6:11 [binutils-gdb] Two compute_and_set_names simplifications gdb-buildbot
2020-02-27  5:58 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-26 20:52 [binutils-gdb] gdb: dwarf2/read.c: remove unused objfile parameters/variables gdb-buildbot
2020-02-26 20:37 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-26 14:37 [binutils-gdb] [gdb/testsuite] Fix corefile-buildid.exp with check-read1 gdb-buildbot
2020-02-26 16:12 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-26  7:54 [binutils-gdb] Merge changes from GCC for the config/ directory gdb-buildbot
2020-02-26  9:12 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-25 17:41 [binutils-gdb] [gdb/testsuite] Be quiet about missing prelink in solib-overlap.exp gdb-buildbot
2020-02-25 19:13 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-25 15:19 [binutils-gdb] [gdb/testsuite] Ignore pass in gdb_caching_proc gdb-buildbot
2020-02-25 16:53 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-25  5:39 [binutils-gdb] _bfd_mul_overflow gdb-buildbot
2020-02-25  7:35 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-24 21:02 [binutils-gdb] bfd_get_size cache gdb-buildbot
2020-02-25  0:35 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-24 18:26 [binutils-gdb] bfd_get_file_size calls gdb-buildbot
2020-02-24 19:59 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-24 12:54 [binutils-gdb] c99 elfxx-riscv.c fix gdb-buildbot
2020-02-24 12:54 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-24  9:10 [binutils-gdb] gdbserver: Add RISC-V/Linux support gdb-buildbot
2020-02-24 11:17 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-24  6:35 [binutils-gdb] gdb/riscv: Update API for looking up target descriptions gdb-buildbot
2020-02-24  8:16 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-24  2:18 [binutils-gdb] gdb: change print format of flag enums with value 0 gdb-buildbot
2020-02-24  3:18 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-23 23:23 [binutils-gdb] gdb: allow duplicate enumerators in flag enums gdb-buildbot
2020-02-23 22:51 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-23 11:31 [binutils-gdb] [gdb/testsuite] Handle missing gnatmake in gnat_runtime_has_debug_info gdb-buildbot
2020-02-23 13:35 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-23  4:51 [binutils-gdb] x86: fold certain VCVT{,U}SI2S{S,D} templates gdb-buildbot
2020-02-23  6:28 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-23  0:04 [binutils-gdb] x86/Intel: improve diagnostics for ambiguous VCVT* operands gdb-buildbot
2020-02-23  1:49 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-22 18:57 [binutils-gdb] x86: Don't disable SSE4a when disabling SSE4 gdb-buildbot
2020-02-22 18:58 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-21 16:05 [binutils-gdb] Have testsuite find gdbserver in new location gdb-buildbot
2020-02-21 22:59 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-15  9:28 [binutils-gdb] Change section functions to be methods of dwarf2_section_info gdb-buildbot
2020-02-15  7:46 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-11 12:51 [binutils-gdb] Make fputs_unfiltered use fputs_maybe_filtered gdb-buildbot
2020-02-11 13:47 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-09 16:08 [binutils-gdb] Revert basenames_may_differ patch gdb-buildbot
2020-02-09 15:31 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-07 18:22 [binutils-gdb] Move gdbserver to top level gdb-buildbot
2020-02-09 13:21 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-07 15:53 [binutils-gdb] Add support for the GBZ80 and Z80N variants of the Z80 architecture, and add DWARF debug info support to the Z80 assembler gdb-buildbot
2020-02-07 17:52 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-07  2:57 [binutils-gdb] ELF: Support the section flag 'o' in .section directive gdb-buildbot
2020-02-07  5:18 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-06 20:58 [binutils-gdb] gdb: Catch exceptions if the source file is not found gdb-buildbot
2020-02-06 23:32 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-06 19:07 [binutils-gdb] gdb/testsuite: Avoid leaking a port number into results summary gdb-buildbot
2020-02-06 21:25 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-05 21:46 [binutils-gdb] Fix base class function call gdb-buildbot
2020-02-06  2:13 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-05 19:45 [binutils-gdb] Fix header guard name in #endif comment gdb-buildbot
2020-02-05 22:38 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-05 18:15 [binutils-gdb] RISC-V/Linux/native: Factor out target description determination gdb-buildbot
2020-02-05 20:27 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-04 18:25 [binutils-gdb] [gdb/testsuite] Add note to 'Race detection' entry in README gdb-buildbot
2020-02-04 23:19 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-04 17:17 [binutils-gdb] [gdb/testsuite] Make inferior_exited_re match a single line gdb-buildbot
2020-02-04 20:42 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-04 12:16 [binutils-gdb] Minor fix for R_PPC_VLE_ADDR20 gdb-buildbot
2020-02-04 18:18 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-04  8:58 [binutils-gdb] Change ints to bools around thread_info executing/resumed gdb-buildbot
2020-02-04 13:32 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-04  4:19 [binutils-gdb] gdb: fix powerpc disassembly tests gdb-buildbot
2020-02-04  6:16 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-04  2:02 [binutils-gdb] Fixed gdb to print arrays with very high indexes gdb-buildbot
2020-02-04  4:12 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-03 13:01 [binutils-gdb] RISC-V/Linux/native: Determine FLEN dynamically gdb-buildbot
2020-02-03 16:05 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-03 11:10 [binutils-gdb] Fix compilation error with musl in gdb/testsuite/gdb.base/fileio.c gdb-buildbot
2020-02-03 13:15 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-03  6:09 [binutils-gdb] ubsan: m32c: left shift of negative value gdb-buildbot
2020-02-03  9:05 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-03  3:18 [binutils-gdb] section.c: Fix typo in comments (withe -> with) gdb-buildbot
2020-02-03  6:05 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-03  1:44 [binutils-gdb] ELF: Add support for unique section ID to assembler gdb-buildbot
2020-02-03  3:59 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-01 14:47 [binutils-gdb] Move pending obsolete targets onto the definitely obsolete list gdb-buildbot
2020-02-01 18:06 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-01 13:37 [binutils-gdb] ubsan: frv: left shift of negative value gdb-buildbot
2020-02-01 15:45 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-02-01  1:58 [binutils-gdb] gdb: Do not print empty-group regs when printing general ones gdb-buildbot
2020-02-01 13:25 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-31 18:42 [binutils-gdb] x86: replace EXxmm_mdq by EXVexWdqScalar gdb-buildbot
2020-01-31 23:39 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-31 14:28 [binutils-gdb] aarch64: Fix MOVPRFX markup for bf16 conversions gdb-buildbot
2020-01-31 18:43 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-31 11:27 [binutils-gdb] Fix ravenscar-thread.c for multi-target gdb-buildbot
2020-01-31 16:08 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-31  8:07 [binutils-gdb] gdb/tui: Disassembler scrolling of very small programs gdb-buildbot
2020-01-31 14:17 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-31  5:30 [binutils-gdb] gdb/tui: Update help text for scroll commands gdb-buildbot
2020-01-31 11:20 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-31  3:38 [binutils-gdb] Tidy bfd.pot gdb-buildbot
2020-01-31  9:29 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-31  1:50 [binutils-gdb] OOM in setup_group gdb-buildbot
2020-01-31  7:05 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-30 19:14 [binutils-gdb] Add some new PE_IMAGE_DEBUG_TYPE values gdb-buildbot
2020-01-30 23:38 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-30 17:52 [binutils-gdb] Bugfixes for pe_print_debugdata() gdb-buildbot
2020-01-30 21:38 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-30 15:16 [binutils-gdb] cpu,opcodes,gas: fix neg and neg32 instructions in BPF gdb-buildbot
2020-01-30 19:10 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-30 13:57 [binutils-gdb] x86-64: honor vendor specifics for near RET gdb-buildbot
2020-01-30 16:26 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-30  9:00 [binutils-gdb] ubsan: tic4x: left shift cannot be represented in type 'int' gdb-buildbot
2020-01-30 11:46 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-30  0:11 [binutils-gdb] Fix -Werror-stringop error on infcmd.c:construct_inferior_arguments gdb-buildbot
2020-01-30  7:18 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-29 20:47 [binutils-gdb] gdbserver: Fix whitespace configure.srv damage for `i[34567]86-*-mingw*' gdb-buildbot
2020-01-30  0:03 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-29 16:39 [binutils-gdb] Test handling of additional brk instruction patterns gdb-buildbot
2020-01-29 19:45 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-29 10:07 [binutils-gdb] testsuite, cp: add expected failures to pass-by-ref tests for certain compilers gdb-buildbot
2020-01-29 14:47 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-28 12:11 [binutils-gdb] RISC-V: Fix gdbserver problem with handling arch strings gdb-buildbot
2020-01-28 20:13 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-28 10:20 [binutils-gdb] Harden gdb.base/step-over-syscall.exp gdb-buildbot
2020-01-28 19:38 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-28  5:10 [binutils-gdb] AArch64: Fix cfinv disassembly issues gdb-buildbot
2020-01-28 10:52 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-28  2:42 [binutils-gdb] Two minor changes in ctfread.c gdb-buildbot
2020-01-28  8:17 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-27 22:58 [binutils-gdb] Virtualize "readin" and "compunit_symtab" gdb-buildbot
2020-01-28  3:57 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-27 11:43 [binutils-gdb] Introduce partial_symtab::read_symtab method gdb-buildbot
2020-01-27 17:52 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-27  9:16 [binutils-gdb] Turn start_psymtab_common into a constructor gdb-buildbot
2020-01-27 15:03 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-27  6:04 [binutils-gdb] Do not allocate psymtabs via psymtab_storage gdb-buildbot
2020-01-27  9:24 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-27  0:17 [binutils-gdb] Remove an include from machoread.c gdb-buildbot
2020-01-27  2:33 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-25 12:25 [binutils-gdb] Test 'set exec-file-mismatch ask|warn|off' gdb-buildbot
2020-01-25 17:09 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-25 11:59 [binutils-gdb] Implement 'set/show exec-file-mismatch' gdb-buildbot
2020-01-25 14:51 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-25  0:51 [binutils-gdb] gdb: Include end of sequence markers in the line table gdb-buildbot
2020-01-25  0:44 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-24 22:55 [binutils-gdb] RISC-V: Minor cleanup for s extension support gdb-buildbot
2020-01-24 23:30 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-24 20:32 [binutils-gdb] Fix re-runs of a second inferior (PR gdb/25410) gdb-buildbot
2020-01-24 20:29 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-24 17:50 [binutils-gdb] Define _KERNTYPES in arm-nbsd-nat.c gdb-buildbot
2020-01-24 18:09 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-24 13:32 [binutils-gdb] gdbserver: Remove a stale TAGS recipe for config files gdb-buildbot
2020-01-24 15:32 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-24 12:18 [binutils-gdb] Update comments about removed function gdb-buildbot
2020-01-24 12:47 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-24  3:19 [binutils-gdb] gdb: Enable stdin on exception in execute_gdb_command gdb-buildbot
2020-01-24  3:46 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-24  1:36 [binutils-gdb] gdb/tui: asm window handles invalid memory and scrolls better gdb-buildbot
2020-01-24  2:21 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-24  1:15 [binutils-gdb] gdb/tui: Prevent exceptions from trying to cross readline gdb-buildbot
2020-01-24  1:30 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-24  0:26 [binutils-gdb] gdb: introduce objfile text_section_offset and data_section_offset methods gdb-buildbot
2020-01-24  0:31 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-23 23:30 [binutils-gdb] gdb: fix variable shadowing error in darwin-nat.c gdb-buildbot
2020-01-23 23:45 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-23 18:35 [binutils-gdb] Cache the text section offset of shared libraries gdb-buildbot
2020-01-23 18:51 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-23 11:18 [binutils-gdb] PR25444, Floating point exception in _bfd_elf_compute_section_file_positions gdb-buildbot
2020-01-23 11:51 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-22 22:31 [binutils-gdb] MSP430: Fix simulator execution of RRUX instruction gdb-buildbot
2020-01-22 23:05 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-21 23:55 [binutils-gdb] gdb: add declaration for _initialize_gdbarch in gdbarch.sh gdb-buildbot
2020-01-22  0:28 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-21 20:17 [binutils-gdb] Allow use of Pygments to colorize source code gdb-buildbot
2020-01-21 21:02 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-21 14:43 [binutils-gdb] Add more debugging output to aarch64_displaced_step_fixup gdb-buildbot
2020-01-21 15:15 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-21 14:14 [binutils-gdb] Fix step-over-syscall.exp failure gdb-buildbot
2020-01-21 14:32 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-21  8:09 [binutils-gdb] x86: VCVTNEPS2BF16{X,Y} should permit broadcasting gdb-buildbot
2020-01-21  8:38 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-20 12:44 [binutils-gdb] PowerPC64 ppc_elf_hash_entry, defined_sym_val, is_tls_get_addr gdb-buildbot
2020-01-20 13:14 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-20 11:55 [binutils-gdb] ubsan: hppa: negation of -2147483648 gdb-buildbot
2020-01-20 12:09 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-20  4:28 [binutils-gdb] Replace init_cutu_and_read_dies with a class gdb-buildbot
2020-01-20  4:28 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-20  3:57 [binutils-gdb] Remove flickering from the TUI gdb-buildbot
2020-01-20  3:57 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-18 16:17 [binutils-gdb] Update version to 2.34.50. Regenerate configure and .pot files gdb-buildbot
2020-01-18 16:25 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-18 14:20 [binutils-gdb] Update top level config files with copies from the official repository gdb-buildbot
2020-01-18 15:01 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-17 20:48 [binutils-gdb] Fix spelling errors gdb-buildbot
2020-01-18 14:01 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-17 19:32 [binutils-gdb] Fix a libiberty testsuite failure gdb-buildbot
2020-01-17 23:17 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-17 17:58 [binutils-gdb] Fix gdbsupport build gdb-buildbot
2020-01-17 21:21 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-17 16:50 [binutils-gdb] gdb: remove uses of iterate_over_inferiors in mi/mi-main.c gdb-buildbot
2020-01-17 18:33 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-17 16:40 [binutils-gdb] gdb: remove use of iterate_over_inferiors in mi/mi-interp.c gdb-buildbot
2020-01-17 17:54 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-17 16:16 [binutils-gdb] gdb: remove use of iterate_over_inferiors in py-inferior.c gdb-buildbot
2020-01-17 17:05 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-17 14:39 [binutils-gdb] Update libiberty sources with changes in the gcc mainline gdb-buildbot
2020-01-17 15:26 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-16 23:47 [binutils-gdb] Fix some spelling errors gdb-buildbot
2020-01-16 23:38 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-16 17:59 [binutils-gdb] Support for DWARF5 location lists entries gdb-buildbot
2020-01-16 18:33 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-16 11:54 [binutils-gdb] x86: drop stale Vec_Imm4 related comment gdb-buildbot
2020-01-16 11:51 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-16 10:31 [binutils-gdb] x86: add a few more missing VexWIG gdb-buildbot
2020-01-16 11:08 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-16  9:59 [binutils-gdb] x86: VPEXTRQ/VPINSRQ are unavailable outside of 64-bit mode gdb-buildbot
2020-01-16 10:03 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-15 19:14 [binutils-gdb] texi2pod.pl: import support for @t{...} from gcc gdb-buildbot
2020-01-15 19:59 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-15 15:44 [binutils-gdb] Set the default page size of the PDP11 target to 8192 bytes gdb-buildbot
2020-01-15 16:30 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-15 14:49 [binutils-gdb] tic4x disassembly static variables gdb-buildbot
2020-01-15 15:28 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-15  5:13 [binutils-gdb] PR25384, PowerPC64 ELFv1 copy relocs against function symbols gdb-buildbot
2020-01-15  5:58 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-15  4:55 [binutils-gdb] Fix valgrind error from gdb.decode_line gdb-buildbot
2020-01-15  5:09 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-15  4:11 [binutils-gdb] Don't link gdb twice against libiberty gdb-buildbot
2020-01-15  4:21 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-15  2:25 [binutils-gdb] Remove use of <config.h> from gdb/nat/ gdb-buildbot
2020-01-15  2:48 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-15  1:54 [binutils-gdb] Move many configure checks to common.m4 gdb-buildbot
2020-01-15  1:50 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-15  0:50 [binutils-gdb] Consolidate definition of USE_WIN32API gdb-buildbot
2020-01-15  0:57 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-14 20:50 [binutils-gdb] Make skip without argument skip the current inline function gdb-buildbot
2020-01-14 21:29 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-14 15:29 [binutils-gdb] Fix/Update misc comments gdb-buildbot
2020-01-14 15:10 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-14 13:50 [binutils-gdb] Fix various assembler testsuite failures for the Z80 target gdb-buildbot
2020-01-14 14:16 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-14 10:51 [binutils-gdb] som: Don't loop forever reading symbol chains gdb-buildbot
2020-01-14 11:36 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-14  9:29 [binutils-gdb] ubsan: alpha-vms: segv gdb-buildbot
2020-01-14  9:29 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-14  8:15 [binutils-gdb] gdb: Handle malformed ELF, symbols in non-allocatable sections gdb-buildbot
2020-01-14  8:15 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-14  6:48 [binutils-gdb] gdb/testsuite: Allow DWARF assembler to create multiple line tables gdb-buildbot
2020-01-14  7:42 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-14  4:21 [binutils-gdb] gdb/tui: Place window titles in the center of the border gdb-buildbot
2020-01-14  4:51 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-14  3:05 [binutils-gdb] gdbserver: remove rule for files from regformats/i386 gdb-buildbot
2020-01-14  3:09 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-13 23:37 [binutils-gdb] gdbserver: include gdbsupport/common-inferior.h in inferiors.c gdb-buildbot
2020-01-13 23:54 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-13 22:09 [binutils-gdb] gdb: add declaration to Python init function gdb-buildbot
2020-01-13 22:32 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-13 21:12 [binutils-gdb] gdb: add back declarations for _initialize functions gdb-buildbot
2020-01-13 21:34 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-13 20:11 [binutils-gdb] gdb: make regformats output a declaration for the init function gdb-buildbot
2020-01-13 20:53 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-13 20:04 [binutils-gdb] gdbserver: fix Makefile dependency of regformat-generated files on regdat.sh gdb-buildbot
2020-01-13 19:56 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-13 16:33 [binutils-gdb] gdb: adjust remote-sim.c to multi-target gdb-buildbot
2020-01-13 17:45 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-13 11:50 [binutils-gdb] [ARC][committed] Code cleanup and improvements gdb-buildbot
2020-01-13 11:55 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-13 10:12 [binutils-gdb] [ARC][committed] Update ARC cpu list gdb-buildbot
2020-01-13 11:07 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-13  9:42 [binutils-gdb] [ARC] [COMMITTED] Change ACCL/ACCH reg name to generic gdb-buildbot
2020-01-13 10:10 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-13  8:51 [binutils-gdb] asan: ns32k: wild memory write gdb-buildbot
2020-01-13  9:24 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-13  6:55 [binutils-gdb] ubsan: score: left shift of negative value gdb-buildbot
2020-01-13  6:40 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-13  6:19 [binutils-gdb] ubsan: alpha-vma: timeout gdb-buildbot
2020-01-13  6:38 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-13  2:40 [binutils-gdb] ubsan: xgate: left shift of negative value gdb-buildbot
2020-01-13  2:41 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-12 17:27 [binutils-gdb] gdbserver: make aarch64_write_goto_address static gdb-buildbot
2020-01-12 18:40 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-12 17:11 [binutils-gdb] gdbserver: include aarch32/aarch64 header file in corresponding source file gdb-buildbot
2020-01-12 17:43 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-12  1:45 [binutils-gdb] Remove last traces of discard_all_inferiors gdb-buildbot
2020-01-12  3:19 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-11 20:17 [binutils-gdb] Make TUI borders respect "set style enabled" gdb-buildbot
2020-01-11 21:06 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-11 17:37 [binutils-gdb] Switch the inferior before outputting its id in "info inferiors" gdb-buildbot
2020-01-11 18:07 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-11 16:52 [binutils-gdb] Switch the inferior too in switch_to_program_space_and_thread gdb-buildbot
2020-01-11 17:28 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-11 14:03 [binutils-gdb] Add "info connections" command, "info inferiors" connection number/string gdb-buildbot
2020-01-11 14:39 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-11 13:14 [binutils-gdb] Revert 'Remove unused struct serial::name field' gdb-buildbot
2020-01-11 13:48 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-11 12:44 [binutils-gdb] gdbarch-selftests.c: No longer error out if debugging something gdb-buildbot
2020-01-11 13:01 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-11 11:37 [binutils-gdb] Add multi-target tests gdb-buildbot
2020-01-11 12:10 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-11 10:51 [binutils-gdb] Multi-target support gdb-buildbot
2020-01-11 11:23 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-11 10:20 [binutils-gdb] Fix reconnecting to a gdbserver already debugging multiple processes, II gdb-buildbot
2020-01-11 10:36 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-11  9:31 [binutils-gdb] Fix reconnecting to a gdbserver already debugging multiple processes, I gdb-buildbot
2020-01-11  9:46 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-11  6:04 [binutils-gdb] tfile_target::close: trace_fd can't be -1 gdb-buildbot
2020-01-11  6:37 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-11  4:36 [binutils-gdb] switch inferior/thread before calling target methods gdb-buildbot
2020-01-11  5:06 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-11  3:46 [binutils-gdb] Introduce switch_to_inferior_no_thread gdb-buildbot
2020-01-11  4:21 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-11  1:17 [binutils-gdb] Make target_ops::has_execution take an 'inferior *' instead of a ptid_t gdb-buildbot
2020-01-11  1:53 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-11  0:47 [binutils-gdb] exceptions.c:print_flush: Remove obsolete check gdb-buildbot
2020-01-11  1:03 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-10 23:40 [binutils-gdb] Make "show remote exec-file" inferior-aware gdb-buildbot
2020-01-11  0:16 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-10 22:50 [binutils-gdb] Don't rely on inferior_ptid in record_full_wait gdb-buildbot
2020-01-10 23:26 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-10 21:12 [binutils-gdb] Fix handling of null stap semaphores gdb-buildbot
2020-01-10 21:45 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-10 20:29 [binutils-gdb] gdb/testsuite/gdb.base/stap-probe: Minor clean-up gdb-buildbot
2020-01-10 20:59 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-10 14:52 [binutils-gdb] AArch64: Revert setting of elf class in linker stub gdb-buildbot
2020-01-10 15:09 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-10 12:14 [binutils-gdb] ubsan: spu: left shift of negative value gdb-buildbot
2020-01-10 12:46 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-10 11:28 [binutils-gdb] ubsan: alpha-coff: signed integer overflow gdb-buildbot
2020-01-10 12:00 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-10  5:23 [binutils-gdb] gdb/tui: Link source and assembler scrolling .... again gdb-buildbot
2020-01-10  5:23 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-10  4:03 [binutils-gdb] gdb: Fix scrolling in TUI gdb-buildbot
2020-01-10  4:38 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-10  3:17 [binutils-gdb] gdb/tui: Fix 'layout asm' before the inferior has started gdb-buildbot
2020-01-10  3:49 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-10  2:27 [binutils-gdb] gdb/testsuite/tui: Introduce check_box_contents gdb-buildbot
2020-01-10  3:02 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-10  1:41 [binutils-gdb] gdb/testsuite/tui: Split enter_tui into two procs gdb-buildbot
2020-01-10  2:13 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-10  1:22 [binutils-gdb] gdb/testsuite/tui: Always dump_screen when asked gdb-buildbot
2020-01-10  1:22 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-09 23:56 [binutils-gdb] gdb/testsuite: Fix race condition in gdb.base/skip.exp gdb-buildbot
2020-01-10  0:32 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-09 23:35 [binutils-gdb] Don't define _FORTIFY_SOURCE on MinGW gdb-buildbot
2020-01-09 23:42 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-09 19:30 [binutils-gdb] Fix memory leak of the demangled symbol name gdb-buildbot
2020-01-09 20:03 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-09 14:59 [binutils-gdb] Fix the cast used to prevent compile time warning about an always false test gdb-buildbot
2020-01-09 15:34 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-02 14:31 [binutils-gdb] AArch64: Set the correct ELF class for AArch64 stubs (PR/25210) gdb-buildbot
2020-01-02 15:00 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-01 22:21 [binutils-gdb] Fix install-strip for cross-compilation gdb-buildbot
2020-01-01 22:21 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-01 10:39 [binutils-gdb] Update copyright year in gdbarch.sh doc/gdb.texinfo and doc/refcard.tex gdb-buildbot
2020-01-01 11:14 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2020-01-01  9:06 [binutils-gdb] gdb/copyright.py: Convert to Python 3 gdb-buildbot
2020-01-01  9:39 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-31 13:40 [binutils-gdb] asan: alpha-vms: Heap-buffer-overflow gdb-buildbot
2019-12-31 14:15 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-30 17:47 [binutils-gdb] Make some TUI globals "static" gdb-buildbot
2019-12-30 17:55 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-30 16:47 [binutils-gdb] Use "bool" in more spots in TUI gdb-buildbot
2019-12-30 17:11 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-30 14:29 [binutils-gdb] vms-alpha.c object_p memory leaks gdb-buildbot
2019-12-30 14:55 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-30  3:44 [binutils-gdb] archive.c bfd_zalloc gdb-buildbot
2019-12-30  4:09 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-29 22:10 [binutils-gdb] Fix setting breakpoints or stepping on line 65535 gdb-buildbot
2019-12-29 22:43 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-29 14:29 [binutils-gdb] ubsan: alpha-vms: shift exponent is too large gdb-buildbot
2019-12-29 15:05 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-29 13:56 [binutils-gdb] asan: alpha-vms: memory leaks gdb-buildbot
2019-12-29 14:22 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-29 12:48 [binutils-gdb] coff_close_and_cleanup gdb-buildbot
2019-12-29 13:28 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-28  2:47 [binutils-gdb] [PATCH] Adjust test gdb.ada/ptype_tagged_param.exp for when GNAT runtime does not have debug info gdb-buildbot
2019-12-28  2:52 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-27 19:40 [binutils-gdb] Remove dead code from TUI gdb-buildbot
2019-12-27 20:18 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-27  9:11 [binutils-gdb] x86: consolidate Disp<NN> handling a little gdb-buildbot
2019-12-27  9:53 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-27  5:32 [binutils-gdb] Make symbol_set_names a member function gdb-buildbot
2019-12-27  5:35 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-26 22:45 [binutils-gdb] Add a NEWS entry for multithreaded symbol loading gdb-buildbot
2019-12-26 23:19 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-26  9:09 [binutils-gdb] ubsan: v850: left shift cannot be represented in type 'int' gdb-buildbot
2019-12-26  9:22 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-26  8:02 [binutils-gdb] asan: som: heap-buffer-overflow gdb-buildbot
2019-12-26  8:25 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-26  6:53 [binutils-gdb] Add profiling outputs to .gitignore gdb-buildbot
2019-12-26  7:29 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-26  6:19 [binutils-gdb] pe_bfd_read_buildid memory leak gdb-buildbot
2019-12-26  6:53 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-23  9:34 [binutils-gdb] ubsan: iq2000: left shift of negative value gdb-buildbot
2019-12-23 10:14 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-21 21:56 [binutils-gdb] Fix disabling of solib probes when LD_AUDITing gdb-buildbot
2019-12-21 22:33 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-21 19:28 [binutils-gdb] Address Tom Tromey's comments on the CTF reader gdb-buildbot
2019-12-21 20:00 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-21 17:35 [binutils-gdb] sym-info-cmds.exp: add missing quote in test name gdb-buildbot
2019-12-21 18:16 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-21 16:42 [binutils-gdb] testsuite, cp: increase the coverage of testing pass-by-ref arguments gdb-buildbot
2019-12-21 16:34 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-21 14:25 [binutils-gdb] infcall, c++: collect more pass-by-reference information gdb-buildbot
2019-12-21 15:13 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-21  5:08 [binutils-gdb] Display "main" on initial TUI startup gdb-buildbot
2019-12-21  5:58 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-21  3:56 [binutils-gdb] Simplify tui_update_source_windows_with_line gdb-buildbot
2019-12-21  4:03 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-21  2:42 [binutils-gdb] Simplify tui_update_source_windows_with_addr gdb-buildbot
2019-12-21  3:24 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-20 23:42 [binutils-gdb] Remove tui_source_window::show_symtab_source gdb-buildbot
2019-12-20 23:58 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-20 22:29 [binutils-gdb] Remove some unnecessary focus switches gdb-buildbot
2019-12-20 22:18 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-20 17:52 [binutils-gdb] Change tui_update_locator_fullname to take a symtab gdb-buildbot
2019-12-20 18:10 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-20 16:57 [binutils-gdb] Make isearch change readline prompt in TUI gdb-buildbot
2019-12-20 17:22 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-20 13:35 [binutils-gdb] ubsan: xtensa: left shift cannot be represented in type 'int' gdb-buildbot
2019-12-20 14:17 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-19 21:51 [binutils-gdb] Make the literal argument to pow a double, not an integer gdb-buildbot
2019-12-19 22:46 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-19 21:21 [binutils-gdb] Cast the log10 argument to double to disambiguate it gdb-buildbot
2019-12-19 21:41 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-19 20:45 [binutils-gdb] Rename "sun" variable to avoid conflicts on Solaris gdb-buildbot
2019-12-19 21:07 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-19 19:42 [binutils-gdb] Add install-strip to sim/ gdb-buildbot
2019-12-19 20:22 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-19 18:32 [binutils-gdb] Fix comment in field_kind gdb-buildbot
2019-12-19 19:36 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-19 17:28 [binutils-gdb] Handle CRLF when reading XML on Windows gdb-buildbot
2019-12-19 17:59 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-19  0:42 [binutils-gdb] PR25277, microblaze opcode enumeration vs ISO/IEC TS 18661-3:2015 gdb-buildbot
2019-12-19  1:22 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-18 22:06 [binutils-gdb] Update gdb.base/default.exp for GDB 10 gdb-buildbot
2019-12-18 22:44 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-18 17:53 [binutils-gdb] Fix -Wmisleading-indentation warning in top.c gdb-buildbot
2019-12-18 18:30 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-17 14:06 [binutils-gdb] ubsan: aarch64: left shift cannot be represented in type 'int64_t' gdb-buildbot
2019-12-17 15:23 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-17 12:11 [binutils-gdb] ubsan: bpf: left shift cannot be represented in type 'DI' (aka 'long') gdb-buildbot
2019-12-17 13:33 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-17  9:00 [binutils-gdb] jit: make gdb_object::symtabs an std::forward_list gdb-buildbot
2019-12-17  8:40 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-17  7:06 [binutils-gdb] Fix double-free when creating more than one block in JIT debug info reader gdb-buildbot
2019-12-17  6:57 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-17  2:13 [binutils-gdb] ubsan: nios2: left shift cannot be represented in type 'int' gdb-buildbot
2019-12-17  2:53 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-16 23:30 [binutils-gdb] ubsan: bfin: left shift of negative value gdb-buildbot
2019-12-16 23:24 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-16 21:25 [binutils-gdb] ubsan: moxie: left shift of negative value gdb-buildbot
2019-12-16 22:17 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-16 19:58 [binutils-gdb] Use an accessor function for general_symbol_info::language gdb-buildbot
2019-12-16 20:36 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-16 19:22 [binutils-gdb] Use symbol_set_language to set a symbol's language gdb-buildbot
2019-12-16 19:07 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-16 15:42 [binutils-gdb] Add unlink support to moxie simulator gdb-buildbot
2019-12-16 16:00 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-16 11:39 [binutils-gdb] Remove "fix" call for "long long" from ARI gdb-buildbot
2019-12-16 12:32 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-16 10:20 [binutils-gdb] Change ARI usage to GNU style gdb-buildbot
2019-12-16 11:05 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-16  3:00 [binutils-gdb] MSP430: Relax target glob for configuring GDB gdb-buildbot
2019-12-16  3:35 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-15 23:55 [binutils-gdb] Manage objfiles with shared_ptr gdb-buildbot
2019-12-16  0:43 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-13  8:10 [binutils-gdb] Introduce program_space::add_objfile gdb-buildbot
2019-12-14  5:40 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-12 11:44 [binutils-gdb] Remove duplicate cast gdb-buildbot
2019-12-12 12:09 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-12  4:32 [binutils-gdb] First use of tui_layout gdb-buildbot
2019-12-12  5:01 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-11 22:13 [binutils-gdb] Bump version to 10.0.50.DATE-git gdb-buildbot
2019-12-11 22:56 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-11 21:52 [binutils-gdb] Fix build on macOS gdb-buildbot
2019-12-11 22:01 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-11 19:24 [binutils-gdb] Implement 'print -raw-values' and 'set print raw-values on|off' gdb-buildbot
2019-12-11 19:56 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-11 17:56 [binutils-gdb] ubsan: vax: left shift cannot be represented in type 'int' gdb-buildbot
2019-12-11 18:28 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-11 17:05 [binutils-gdb] ubsan: v850: left shift cannot be represented in type 'long' gdb-buildbot
2019-12-11 17:50 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-11 15:31 [binutils-gdb] ubsan: tic4x: segv and signed shifts gdb-buildbot
2019-12-11 16:09 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-11 14:22 [binutils-gdb] ubsan: s12z: left shift cannot be represented in type 'int' gdb-buildbot
2019-12-11 15:05 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-11 11:44 [binutils-gdb] ubsan: m68k: left shift cannot be represented in type 'int' gdb-buildbot
2019-12-11 11:50 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-11  9:31 [binutils-gdb] ussan: d30v: index out of bounds gdb-buildbot
2019-12-11 10:42 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-11  7:38 [binutils-gdb] ubsan: cr16: left shift cannot be represented in type 'int' gdb-buildbot
2019-12-11  7:52 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-11  6:54 [binutils-gdb] ubsan: bfin: shift exponent is too large gdb-buildbot
2019-12-11  6:55 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-11  3:32 [binutils-gdb] ubsan: xtensa: left shift cannot be represented in type 'int' gdb-buildbot
2019-12-11  3:46 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-11  1:34 [binutils-gdb] ubsan: ia64: left shift of negative value gdb-buildbot
2019-12-11  2:06 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-10 23:15 [binutils-gdb] Add gdb_compile_openmp to lib/gdb.exp gdb-buildbot
2019-12-10 23:43 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-10 20:07 [binutils-gdb] Suppress the "unused function" warning for select_strerror_r gdb-buildbot
2019-12-10 20:45 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-10 16:39 [binutils-gdb] Normalize Ada ptype to use a single "?" gdb-buildbot
2019-12-10 17:30 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-10  1:43 [binutils-gdb] Use disassemble_info.private_data in place of insn_sets gdb-buildbot
2019-12-10  1:36 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-10  0:50 [binutils-gdb] Remove backup ppc struct dis_private gdb-buildbot
2019-12-10  0:56 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-09 18:21 [binutils-gdb] gdb: rank an lvalue argument incompatible for an rvalue parameter gdb-buildbot
2019-12-09 18:20 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-09 14:21 [binutils-gdb] gdb/testsuite/fortran: Fix info-modules/info-types for gfortran 8+ gdb-buildbot
2019-12-09 14:46 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-06 18:27 [binutils-gdb] [gdb/symtab] Prefer var def over decl gdb-buildbot
2019-12-06 19:00 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-06  8:34 [binutils-gdb] gdb/testsuite: do minor clean-up in gdb.cp/rvalue-ref-overload.exp gdb-buildbot
2019-12-06  9:08 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-06  7:54 [binutils-gdb] gdb: fix overload resolution for see-through references gdb-buildbot
2019-12-06  9:05 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-06  5:39 [binutils-gdb] Fix crash when command arg is missing in faas/taas/tfaas commands gdb-buildbot
2019-12-06  6:13 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-05 20:37 [binutils-gdb] Remove gdbarch parameter of lookup_typename gdb-buildbot
2019-12-05 21:12 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-05  5:36 [binutils-gdb] PR25249, Memory leak in microblaze-dis.c gdb-buildbot
2019-12-05  5:33 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-05  3:21 [binutils-gdb] gdb/testsuite: Use -J option when compiling Fortran tests gdb-buildbot
2019-12-05  3:04 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-05  1:46 [binutils-gdb] gdb/fortran: Support for single/double type modifiers gdb-buildbot
2019-12-05  2:21 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-05  0:06 [binutils-gdb] Fix regcache::cooked_read_test selftest for mep gdb-buildbot
2019-12-05  1:02 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-04 23:40 [binutils-gdb] Remove unused includes in aarch64-linux-tdep.c gdb-buildbot
2019-12-04 23:53 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-04 21:13 [binutils-gdb] sim-utils.c: prevent buffer overflow gdb-buildbot
2019-12-04 21:42 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-04 20:05 [binutils-gdb] Propagate endianity to subrange types gdb-buildbot
2019-12-04 19:53 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-04 17:42 [binutils-gdb] Move type_byte_order earlier gdb-buildbot
2019-12-04 18:21 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-04 15:34 [binutils-gdb] Silence maybe-uninitialized warning in dwarf2read.c gdb-buildbot
2019-12-04 15:43 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-04 11:31 [binutils-gdb] x86-64: accept 64-bit LFS/LGS/LSS forms with suffix or operand size specifier gdb-buildbot
2019-12-04 12:09 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-04 11:11 [binutils-gdb] x86/Intel: extend MOVDIRI testing gdb-buildbot
2019-12-04 11:25 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-03 21:22 [binutils-gdb] Fix leak of symbol name in block_symbol_cache gdb-buildbot
2019-12-03 21:34 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-03  9:39 [binutils-gdb] dwarf2.c: read_abbrevs fail cleanup, and offset checking gdb-buildbot
2019-12-03  9:54 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-03  9:09 [binutils-gdb] dwarf2.c stash->sec_info_ptr and stash->sec gdb-buildbot
2019-12-03  9:09 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-01 20:32 [binutils-gdb] Add TUI border colors gdb-buildbot
2019-12-01 20:32 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-12-01 19:22 [binutils-gdb] Allow using less horizontal space in TUI source window gdb-buildbot
2019-12-01 19:49 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-29 12:41 [binutils-gdb] gdb: improve debug output of function overload resolution gdb-buildbot
2019-11-29 12:56 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-28  0:30 [binutils-gdb] Fix BZ 25065 - Ensure that physnames are computed for inherited DIEs gdb-buildbot
2019-11-28  0:30 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-27 22:03 [binutils-gdb] gdb/mi: Add -symbol-info-modules command gdb-buildbot
2019-11-27 22:18 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-27 17:15 [binutils-gdb] Correct R_SH_IND12W handling gdb-buildbot
2019-11-27 17:45 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-27 15:22 [binutils-gdb] Use cmd_list_element::doc_allocated for Python commands gdb-buildbot
2019-11-27 15:22 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-27 14:34 [binutils-gdb] Add add_internal_function overload gdb-buildbot
2019-11-27 15:36 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-27 13:55 [binutils-gdb] Set names of worker threads gdb-buildbot
2019-11-27 14:09 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-27 12:05 [binutils-gdb] Add maint set/show worker-threads gdb-buildbot
2019-11-27 12:40 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-27 10:30 [binutils-gdb] Introduce thread-safe way to handle SIGSEGV gdb-buildbot
2019-11-27 10:30 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-27  4:36 [binutils-gdb] Remove simulator_command declaration, make static gdb-buildbot
2019-11-27  4:36 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-27  3:38 [binutils-gdb] Make functions static in unittests gdb-buildbot
2019-11-27  3:52 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-27  2:10 [binutils-gdb] Remove unused rbreak_command_wrapper and other declarations gdb-buildbot
2019-11-27  2:25 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-27  0:04 [binutils-gdb] Remove dict_empty/mdict_empty gdb-buildbot
2019-11-27  0:04 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-26 21:08 [binutils-gdb] Add missing includes in dwarf-index-write.c and mi/mi-interp.c gdb-buildbot
2019-11-26 21:23 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-26 18:24 [binutils-gdb] Use safe_strerror instead of strerror where possible gdb-buildbot
2019-11-26 18:38 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-26 14:27 [binutils-gdb] Fix comparison operations in SH code that trigger warning in clang gdb-buildbot
2019-11-26 14:54 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-25 22:44 [binutils-gdb] [gdb/contrib] Add -c option to words.sh script gdb-buildbot
2019-11-25 22:44 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-25 21:14 [binutils-gdb] Replace int with bool in solib.c gdb-buildbot
2019-11-25 21:29 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-25  5:02 [binutils-gdb] Introduce new section flag: SEC_ELF_OCTETS gdb-buildbot
2019-11-25  5:16 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-22 18:57 [binutils-gdb] Replace SYMBOL_*_NAME accessors with member functions gdb-buildbot
2019-11-22 19:55 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-22 15:55 [binutils-gdb] [gdb/contrib] Combine sed invocations in words.sh script gdb-buildbot
2019-11-22 16:40 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-21 15:57 [binutils-gdb] gdb/testsuite: skip gdb.arch/amd64-eval.exp when target is not x86_64 gdb-buildbot
2019-11-21 16:23 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-21 11:18 [binutils-gdb] ARM cmse_scan segfault gdb-buildbot
2019-11-21 11:33 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-19 16:22 [binutils-gdb] Report GetLastError value when DebugActiveProcess fails gdb-buildbot
2019-11-19 16:22 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-18 22:11 [binutils-gdb] PR25200, SIGSEGV in _bfd_elf_validate_reloc gdb-buildbot
2019-11-18 22:12 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-18 12:40 [binutils-gdb] PR25196, abort in rewrite_elf_program_header gdb-buildbot
2019-11-18 12:40 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-18 11:24 [binutils-gdb] gas: Add --gdwarf-cie-version command line flag gdb-buildbot
2019-11-18 11:24 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-15 23:15 [binutils-gdb] Minor updates to readline configury gdb-buildbot
2019-11-15 23:15 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-15 20:18 [binutils-gdb] Import the strerror_r-posix module and use it in GDB gdb-buildbot
2019-11-15 20:32 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-15 19:34 [binutils-gdb] Generate gnulib's toplevel Makefile.in using automake gdb-buildbot
2019-11-15 19:48 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-15  1:18 [binutils-gdb] Update README gdb-buildbot
2019-11-15  1:32 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-14  8:51 [binutils-gdb] x86: make JumpAbsolute an insn attribute gdb-buildbot
2019-11-14  9:18 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-12 22:14 [binutils-gdb] Make struct symbol inherit from general_symbol_info gdb-buildbot
2019-11-12 22:45 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-12  9:56 [binutils-gdb] x86: fold EsSeg into IsString gdb-buildbot
2019-11-12 10:26 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-12  9:13 [binutils-gdb] x86: eliminate ImmExt abuse gdb-buildbot
2019-11-12  9:42 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-12  8:30 [binutils-gdb] x86: introduce operand type "instance" gdb-buildbot
2019-11-12  8:56 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-11 13:48 [binutils-gdb] Arm64: SVE2's smaxp/sminp require operands 1 and 3 to be the same register gdb-buildbot
2019-11-11 14:03 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-11 13:01 [binutils-gdb] Arm64: fix build with old glibc gdb-buildbot
2019-11-11 13:15 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-10 22:04 [binutils-gdb] gdb: Add a class to track last display symtab and line information gdb-buildbot
2019-11-10 22:33 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-10 20:54 [binutils-gdb] gdb_vecs.h: Avoid self move assign gdb-buildbot
2019-11-10 20:54 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-10 18:21 [binutils-gdb] Remove can_highlight from TUI windows gdb-buildbot
2019-11-10 18:21 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-08 14:49 [binutils-gdb] Constify command_line_input gdb-buildbot
2019-11-08 14:49 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-08 11:02 [binutils-gdb] x86: convert RegSIMD and RegMMX from bitfield to enumerator gdb-buildbot
2019-11-08 11:00 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-08 10:18 [binutils-gdb] x86: convert Control/Debug/Test from bitfield to enumerator gdb-buildbot
2019-11-08 10:16 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-08  8:50 [binutils-gdb] x86: introduce operand type "class" gdb-buildbot
2019-11-08  8:50 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-07 16:55 [binutils-gdb] [gas][aarch64] Armv8.6-a option [1/X] gdb-buildbot
2019-11-07 17:09 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-07  9:35 [binutils-gdb] x86: adjust register names printed for MONITOR/MWAIT gdb-buildbot
2019-11-07 10:08 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-06 21:03 [binutils-gdb] Use strtok_r instead of strtok gdb-buildbot
2019-11-06 21:03 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-06 18:56 [binutils-gdb] Regenerate gnulib files gdb-buildbot
2019-11-06 19:37 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-06 15:31 [binutils-gdb] Remove some includes of readline.h gdb-buildbot
2019-11-06 15:31 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-06  2:10 [binutils-gdb] Fix regression from TUI disassembly style patch gdb-buildbot
2019-11-06  2:25 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-06  0:18 [binutils-gdb] Remove la_get_string member gdb-buildbot
2019-11-06  0:49 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-05 23:34 [binutils-gdb] Style disassembly in the TUI gdb-buildbot
2019-11-06  0:02 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-05 10:16 [binutils-gdb] x86: fold OP_Mwaitx() into OP_Mwait() gdb-buildbot
2019-11-05 10:30 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-05  9:47 [binutils-gdb] x86: split MONITORX/MWAITX entries gdb-buildbot
2019-11-05  9:47 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-05  9:32 [binutils-gdb] x86: consolidate disassembler enum naming a little gdb-buildbot
2019-11-05  9:32 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-02  7:09 [binutils-gdb] [gdb/testsuite] Remove superfluous 3rd argument from gdb_test call (3) gdb-buildbot
2019-11-02  7:09 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-01 17:42 [binutils-gdb] Simplify print_sys_errmsg gdb-buildbot
2019-11-01 18:28 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-01 15:34 [binutils-gdb] Move check for strerror_r to common.m4 where it belongs gdb-buildbot
2019-11-01 16:01 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-01  5:26 [binutils-gdb] gdb: Add new commands to list module variables and functions gdb-buildbot
2019-11-01  5:40 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-01  5:00 [binutils-gdb] gdb/fortran: Add new 'info modules' command gdb-buildbot
2019-11-01  5:00 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-01  2:59 [binutils-gdb] Test the convenience functions $_gdb_setting and $_gdb_setting_str gdb-buildbot
2019-11-01  3:29 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-01  1:46 [binutils-gdb] Implement convenience functions to examine GDB settings gdb-buildbot
2019-11-01  2:46 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-01  0:37 [binutils-gdb] [gdb/testsuite] Remove superfluous 3rd argument from gdb_test call (2) gdb-buildbot
2019-11-01  0:37 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-31 20:14 [binutils-gdb] [ARM] Store exception handling information per-bfd instead of per-objfile gdb-buildbot
2019-10-31 20:43 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-31 16:58 [binutils-gdb] [gdb/testsuite] Remove superfluous 3rd argument from gdb_test call gdb-buildbot
2019-10-31 17:25 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-30 13:56 [binutils-gdb] Modify the ARNM assembler to accept the omission of the immediate argument for the writeback form of the LDRAA and LDRAB mnemonics gdb-buildbot
2019-10-30 14:10 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-30 12:41 [binutils-gdb] Add the ability to the BFD library to read build-ids from core flies gdb-buildbot
2019-10-30 13:08 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-30  9:50 [binutils-gdb] x86: re-do "shorthand" handling gdb-buildbot
2019-10-30 10:19 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-30  8:36 [binutils-gdb] x86: slightly rearrange struct insn_template gdb-buildbot
2019-10-30  9:37 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-29 20:44 [binutils-gdb] Change some arguments to gdb::string_view instead of name+len gdb-buildbot
2019-10-29 21:48 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-29 19:23 [binutils-gdb] Load system gdbinit files from a directory gdb-buildbot
2019-10-29 19:37 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-29 17:53 [binutils-gdb] When copying pe format files, copy the dos_message array, rather than re-initiialising it gdb-buildbot
2019-10-29 17:53 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-29 16:21 [binutils-gdb] Fix array overrun when disassembling corrupt TIC30 binaries gdb-buildbot
2019-10-29 16:21 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-29 10:16 [binutils-gdb] Prevent a left shift by a negative value when disassembling IA64 binaries gdb-buildbot
2019-10-29 10:47 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-29  8:35 [binutils-gdb] Fix the size of the dos_message field in the internal_extra_pe_filehdr structure on hosts where sizeof(long) == 8 gdb-buildbot
2019-10-29  8:49 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-28 18:44 [binutils-gdb] Add a string_view version of startswith gdb-buildbot
2019-10-28 18:44 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-28 17:04 [binutils-gdb] Fix buffer overrun in TIC30 disassembler gdb-buildbot
2019-10-28 17:18 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-28 16:36 [binutils-gdb] Stop potential illegal memory access in the NS32K disassembler gdb-buildbot
2019-10-28 16:36 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-26  8:09 [binutils-gdb] [gdb] Fix more typos in comments (2) gdb-buildbot
2019-10-26  8:41 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-25 21:16 [binutils-gdb] Fix find_charset_names gdb-buildbot
2019-10-25 21:50 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-25 19:38 [binutils-gdb] Don't make an extra copy + allocation of the demangled name gdb-buildbot
2019-10-25 19:52 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-25 15:12 [binutils-gdb] gdbserver does not need xstrdup gdb-buildbot
2019-10-25 15:12 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-25  5:07 [binutils-gdb] PR4499, assign file positions assumes segment offsets increasing gdb-buildbot
2019-10-25  5:34 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-24 20:00 [binutils-gdb] Remove python_has_threads check in configure.ac gdb-buildbot
2019-10-24 20:13 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-24 17:28 [binutils-gdb] [gdb/testsuite] Add -wrap pattern flag to gdb_test_multiple gdb-buildbot
2019-10-24 17:28 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-24  8:22 [binutils-gdb] Fix opcodes includes gdb-buildbot
2019-10-24  9:22 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-24  8:07 [binutils-gdb] Move readline to the readline/readline subdirectory gdb-buildbot
2019-10-24  9:08 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-24  7:22 [binutils-gdb] infcall: refactor 'call_function_by_hand_dummy' gdb-buildbot
2019-10-24  7:53 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-24  5:30 [binutils-gdb] Add myself to the gdb/MAINTAINERS write-after-approval list gdb-buildbot
2019-10-24  5:44 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-24  3:51 [binutils-gdb] Use m4_include, not sinclude in .m4 files gdb-buildbot
2019-10-24  4:19 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-24  2:36 [binutils-gdb] [gdb/breakpoints] Fix fullname.exp when run from symlink dir gdb-buildbot
2019-10-24  2:51 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-24  1:25 [binutils-gdb] Fix compile error & incorrect push gdb-buildbot
2019-10-24  1:25 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-24  0:29 [binutils-gdb] Use libxxhash for hashing, if present gdb-buildbot
2019-10-24  0:43 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-23 23:11 [binutils-gdb] Store the mangled name as a string_view gdb-buildbot
2019-10-23 23:42 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-23 22:54 [binutils-gdb] Add a fast_hash function in common-utils gdb-buildbot
2019-10-23 23:56 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-23 21:12 [binutils-gdb] DWARF 5 support: Handle line table and file indexes gdb-buildbot
2019-10-23 21:47 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-23 20:46 [binutils-gdb] gdb: Ensure that !(a < a) is true in sort_cmp on obj_section objects gdb-buildbot
2019-10-23 21:00 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-23 19:47 [binutils-gdb] Remove tui_exec_info_content gdb-buildbot
2019-10-23 20:17 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-23 17:33 [binutils-gdb] contrib: Update dg-extract-results.* from gcc gdb-buildbot
2019-10-23 18:39 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-23 15:54 [binutils-gdb] Fix creation of nm.h when configure is changed gdb-buildbot
2019-10-23 16:59 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-23 14:16 [binutils-gdb] [gdb/testsuite] Compile infcall-nested-structs.exp with -O2 gdb-buildbot
2019-10-23 15:20 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-23 12:37 [binutils-gdb] ar P support gdb-buildbot
2019-10-23 13:42 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-23 10:58 [binutils-gdb] [bfd] Provide 8-byte minimum alignment for .plt section gdb-buildbot
2019-10-23 10:58 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-23  9:52 [binutils-gdb] Make unlink_objfile and put_objfile_before static gdb-buildbot
2019-10-23 12:03 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-23  5:14 [binutils-gdb] gdb: Make startswith return a bool gdb-buildbot
2019-10-23  6:19 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-23  3:34 [binutils-gdb] Replace some more qsort calls with std::sort gdb-buildbot
2019-10-23  4:42 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-23  3:01 [binutils-gdb] [bfd] Revise import stubs on hppa gdb-buildbot
2019-10-23  3:01 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-23  1:20 [binutils-gdb] [gdb] Fix more typos in comments gdb-buildbot
2019-10-23  1:34 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-23  0:36 [binutils-gdb] RISC-V: Report unresolved relocation error via linker's callback function gdb-buildbot
2019-10-23  0:50 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-22 23:32 [binutils-gdb] Fix creation of stamp-h by gdb's configure script gdb-buildbot
2019-10-23  0:04 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-22 21:48 [binutils-gdb] [gdb] Fix typos in comments gdb-buildbot
2019-10-22 22:36 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-22 20:52 [binutils-gdb] [gdb/testsuite] Fix gdb.fortran/module.exp for debug info from other files gdb-buildbot
2019-10-22 21:31 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-22 20:04 [binutils-gdb] PR29, Coreutils POSIX2_VERSION as 200112L gdb-buildbot
2019-10-22 20:35 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-22 19:51 [binutils-gdb] Constify objfile::original_name gdb-buildbot
2019-10-22 19:51 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-22 18:05 [binutils-gdb] gdb/fortran: Add test for module variables in 'info variables' output gdb-buildbot
2019-10-22 19:08 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-22 16:25 [binutils-gdb] DWARF reader: Reject sections with invalid sizes gdb-buildbot
2019-10-22 16:57 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-22 15:36 [binutils-gdb] Add initial compile command support to RISC-V port gdb-buildbot
2019-10-22 16:08 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-22 13:39 [binutils-gdb] Create xml-builtin.h to declare xml_builtins gdb-buildbot
2019-10-22 15:24 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-22 10:38 [binutils-gdb] libctf: mark swap.h inline functions as static gdb-buildbot
2019-10-22 12:50 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-22  7:13 [binutils-gdb] [gdb/tdep] Fix inferior call arg passing for amd64 gdb-buildbot
2019-10-22  9:17 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-22  4:05 [binutils-gdb] [gdb/tdep] Fix 'Unexpected register class' assert in amd64_push_arguments gdb-buildbot
2019-10-22  6:24 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-21 20:13 [binutils-gdb] gdb/gdbserver: Remove reference to vec-ipa.o gdb-buildbot
2019-10-21 22:25 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-21 10:00 [binutils-gdb] Rename pid -> tid in windows-nat.c gdb-buildbot
2019-10-21 12:20 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-21  7:16 [binutils-gdb] Change gcc_target_options to return std::string gdb-buildbot
2019-10-21  9:33 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-21  2:03 [binutils-gdb] Make tui-winsource not use breakpoint_chain gdb-buildbot
2019-10-21  6:35 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-21  1:33 [binutils-gdb] Change iterate_over_breakpoints to take a function_view gdb-buildbot
2019-10-21  5:46 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-20 23:14 [binutils-gdb] m68hc1x: better arg checking for reloc_warning gdb-buildbot
2019-10-21  0:03 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-20 18:53 [binutils-gdb] s390: Fix infcalls passing a single-field struct with static members gdb-buildbot
2019-10-20 21:00 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-20 15:53 [binutils-gdb] remove more xmalloc in bfd gdb-buildbot
2019-10-20 18:04 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-20 12:48 [binutils-gdb] PR25100, Compile fails in elf64-ppc.c because of single equal sign instead of double equal for comparison gdb-buildbot
2019-10-20 14:59 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-20  9:09 [binutils-gdb] Simplify power of two test gdb-buildbot
2019-10-20 11:22 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-20  6:06 [binutils-gdb] [gdb/testsuite] Fix gdb.ada/mi_task_arg.exp gdb-buildbot
2019-10-20  8:15 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-20  3:13 [binutils-gdb] gdb.mi/list-thread-groups-available.exp: read entries one by one instead of increasing timeout gdb-buildbot
2019-10-20  5:17 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-20  0:10 [binutils-gdb] gdb: remove unused includes from dwarf2read.c gdb-buildbot
2019-10-20  2:24 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-19 19:55 [binutils-gdb] qsort: syms.c stab sorting gdb-buildbot
2019-10-19 22:14 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-19 17:00 [binutils-gdb] qsort: dwarf2.c gdb-buildbot
2019-10-19 19:17 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-19  5:18 [binutils-gdb] qsort issues gdb-buildbot
2019-10-19  7:36 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-19  2:13 [binutils-gdb] PR24955, libbfd terminating program on out of memory (part2) gdb-buildbot
2019-10-19  4:35 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-18 23:15 [binutils-gdb] gdb: Silence -Wformat-nonliteral warning with clang gdb-buildbot
2019-10-19  1:35 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-18  5:41 [binutils-gdb] gdb: small cleanup in breakpoint.c's includes gdb-buildbot
2019-10-18  7:57 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-18  0:30 [binutils-gdb] [gdb/testsuite] Add KFAIL for missing support of reverse-debugging xsave gdb-buildbot
2019-10-18  5:01 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-17 20:29 [binutils-gdb] Remove unnecessary declaration of trace_regblock_size gdb-buildbot
2019-10-17 22:46 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-17 17:24 [binutils-gdb] Move declaration of max_user_call_depth to header gdb-buildbot
2019-10-17 19:37 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-17 14:11 [binutils-gdb] Improve comments in print-utils.h gdb-buildbot
2019-10-17 16:35 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-17 11:15 [binutils-gdb] RISC-V: Fix two ARI warnings gdb-buildbot
2019-10-17 13:29 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-17  8:18 [binutils-gdb] bfd/dwarf2.c: fix assertion failure in comp_unit_hash_info gdb-buildbot
2019-10-17 10:42 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-17  5:39 [binutils-gdb] Include gdbtk.h to avoid declarations gdb-buildbot
2019-10-17  7:45 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-16 17:19 [binutils-gdb] Don't call erase_data_content from tui_data_window::show_registers gdb-buildbot
2019-10-16 19:39 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-16 14:35 [binutils-gdb] Make TUI window handle a unique_ptr gdb-buildbot
2019-10-16 16:56 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-16 11:43 [binutils-gdb] Remove declaration from tui-wingeneral.h gdb-buildbot
2019-10-16 13:56 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-16  8:48 [binutils-gdb] Remove tui_win_is_auxiliary gdb-buildbot
2019-10-16 11:03 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-16  5:51 [binutils-gdb] Remove tui_default_win_viewport_height gdb-buildbot
2019-10-16  8:04 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-16  2:58 [binutils-gdb] Remove two TUI comments gdb-buildbot
2019-10-16  5:18 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-15 23:51 [binutils-gdb] [gdb/testsuite] Add XFAILs in gdb.rust/simple.exp for incorrect DWARF gdb-buildbot
2019-10-16  2:09 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-15 20:43 [binutils-gdb] [gdb/target] Fix pretty-printer for MPX bnd registers gdb-buildbot
2019-10-15 23:02 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-15 17:34 [binutils-gdb] Mark guile_{extension_,}script_ops as static gdb-buildbot
2019-10-15 19:54 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-15 14:31 [binutils-gdb] Fix the disassembly of the LDS and STS instructions of the AVR architecture gdb-buildbot
2019-10-15 16:50 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-15  7:56 [binutils-gdb] PR25070, SEGV in function _bfd_dwarf2_find_nearest_line gdb-buildbot
2019-10-15 10:21 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-15  4:49 [binutils-gdb] Remove two unused items from windows-nat.c gdb-buildbot
2019-10-15  7:07 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-15  1:29 [binutils-gdb] Don't include buildsym-legacy.h in windows-nat.c gdb-buildbot
2019-10-15  3:52 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-14 22:32 [binutils-gdb] Let ARI allow gdb %p printf extensions gdb-buildbot
2019-10-15  0:51 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-14 19:47 [binutils-gdb] Move declaration of overload_debug to header gdb-buildbot
2019-10-14 21:53 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-14 16:38 [binutils-gdb] Move declaration of lang_frame_mismatch_warn to header gdb-buildbot
2019-10-14 19:03 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-14 13:42 [binutils-gdb] PR25078, stack overflow in function find_abstract_instance gdb-buildbot
2019-10-14 15:59 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-14 10:39 [binutils-gdb] S/390: Add support for z15 as CPU name gdb-buildbot
2019-10-14 12:53 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-14  9:23 [binutils-gdb] Move declaration of vtbl_ptr_name to the header gdb-buildbot
2019-10-14 10:01 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-14  1:47 [binutils-gdb] Add support for new functionality in the msp430 backend of GCC gdb-buildbot
2019-10-14  4:03 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-13 22:44 [binutils-gdb] Re: PowerPC PIC vs. DLL TLS issues gdb-buildbot
2019-10-14  1:08 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-13 13:44 [binutils-gdb] [gdb/testsuite] Update expected _gdb_major/_gdb_minor in default.exp gdb-buildbot
2019-10-13 16:00 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-13 10:50 [binutils-gdb] gdb/testsuite: Add gdb_test_name variable gdb-buildbot
2019-10-13 13:06 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-13  7:52 [binutils-gdb] x86/Intel: correct MOVSD and CMPSD handling gdb-buildbot
2019-10-13 10:12 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-13  4:56 [binutils-gdb] Bogus "final link failed" messages gdb-buildbot
2019-10-13  7:14 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-13  1:26 [binutils-gdb] PowerPC TLS miscounting PLT for __tls_get_addr gdb-buildbot
2019-10-13  4:12 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-12 16:07 [binutils-gdb] Renaming of ctf (the trace format) files gdb-buildbot
2019-10-12 18:18 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-12 13:04 [binutils-gdb] Change gdb/version.in to 9.0.50.DATE-git (new version numbering scheme) gdb-buildbot
2019-10-12 15:23 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-11 19:28 [binutils-gdb] [gdb/testsuite] Fix local-static.exp with gcc-4.8 gdb-buildbot
2019-10-11 21:56 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-11 16:19 [binutils-gdb] PowerPC PIC vs. DLL TLS issues gdb-buildbot
2019-10-11 18:39 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-11 12:25 [binutils-gdb] [PR ld/25062] arm: sign extend the addend of R_ARM_TLS_GOTDESC gdb-buildbot
2019-10-11 14:39 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-11 10:59 [binutils-gdb] [PR ld/22263][PR ld/25056] arm: Avoid dynamic TLS relocs in PIE gdb-buildbot
2019-10-11 15:30 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-11  1:58 [binutils-gdb] gdb/fortran: Allow for matching symbols with missing scope gdb-buildbot
2019-10-11  6:20 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-11  1:15 [binutils-gdb] gdb/fortran: Nested subroutine support gdb-buildbot
2019-10-11  5:38 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-10 21:46 [binutils-gdb] gdb/testsuite: Reduce test name duplication in gdb.python tests gdb-buildbot
2019-10-10 23:53 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-10 18:34 [binutils-gdb] gdb/testsuite: Reduce test name duplication in gdb.base tests gdb-buildbot
2019-10-10 20:56 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-10 13:33 [binutils-gdb] gdb/testsuite: Make test names unique in gdb.linespec tests gdb-buildbot
2019-10-10 18:00 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-10 10:02 [binutils-gdb] libctf: fix tabdamage gdb-buildbot
2019-10-10 12:18 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-10  7:01 [binutils-gdb] libctf: fix refcount leak in ctf_import gdb-buildbot
2019-10-10  9:13 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-10  4:03 [binutils-gdb] libctf: make ctf_dump not crash on OOM gdb-buildbot
2019-10-10  6:20 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-10  0:54 [binutils-gdb] libctf: remove ctf_malloc, ctf_free and ctf_strdup gdb-buildbot
2019-10-10  3:19 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-09 21:47 [binutils-gdb] libctf: get the encoding of non-ints/fps in the dynamic space right gdb-buildbot
2019-10-10  0:07 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-09 18:25 [binutils-gdb] libctf: allow ctf_type_lname of a null pointer gdb-buildbot
2019-10-09 20:32 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-09 15:25 [binutils-gdb] libctf: properly handle ctf_add_type of forwards and self-reffing structs gdb-buildbot
2019-10-09 17:36 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-09 12:23 [binutils-gdb] libctf: avoid the need to ever use ctf_update gdb-buildbot
2019-10-09 14:32 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-09  6:16 [binutils-gdb] libctf: installable libctf as a shared library gdb-buildbot
2019-10-09  8:16 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-09  5:46 [binutils-gdb] bfd, ld: add CTF section linking gdb-buildbot
2019-10-09  5:46 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-08 15:52 [binutils-gdb] libctf: actually close bfds we have opened gdb-buildbot
2019-10-08 18:08 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-08 12:35 [binutils-gdb] libctf: bfd-open: mark the bfd as cacheable gdb-buildbot
2019-10-08 15:08 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-08  6:23 [binutils-gdb] libctf: eschew C99 for loop initial declarations gdb-buildbot
2019-10-08  8:50 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-08  3:14 [binutils-gdb] libctf: don't leak hash keys or values on value replacement gdb-buildbot
2019-10-08  5:34 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-08  0:06 [binutils-gdb] libctf: teach ctf_add_type how forwards work gdb-buildbot
2019-10-08  2:25 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-07 17:44 [binutils-gdb] libctf: add linking of the variable section gdb-buildbot
2019-10-07 20:07 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-07 16:27 [binutils-gdb] Avoid crash on single-field union in Rust gdb-buildbot
2019-10-11  9:20 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-07 11:02 [binutils-gdb] libctf: add the ctf_link machinery gdb-buildbot
2019-10-07 13:06 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-07  7:31 [binutils-gdb] libctf: dump: check the right error values when dumping functions gdb-buildbot
2019-10-07  9:42 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-06 15:28 [binutils-gdb] libctf: support getting strings from the ELF strtab gdb-buildbot
2019-10-06 17:48 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-06  3:48 [binutils-gdb] libctf, binutils: dump the CTF header gdb-buildbot
2019-10-06  6:05 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-05  9:13 [binutils-gdb] gdb: Remove whitespace in 'std::vector <...>' gdb-buildbot
2019-10-05 11:34 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-05  5:59 [binutils-gdb] [gdb] Fix set/show style metadata help text gdb-buildbot
2019-10-05  8:30 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-05  2:55 [binutils-gdb] Convert boolean globals in server.c to bool gdb-buildbot
2019-10-05  5:10 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-04 23:50 [binutils-gdb] Fix type of startup_with_shell in gdbserver gdb-buildbot
2019-10-05  2:10 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-04 20:46 [binutils-gdb] Add missing includes to gdb_assert.h and gdb_string_view.h gdb-buildbot
2019-10-04 23:10 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-04 17:32 [binutils-gdb] gdb/testsuite: Fix py-format-string.exp on big-endian platforms gdb-buildbot
2019-10-04 20:03 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-04 14:17 [binutils-gdb] Add $_ada_exception convenience variable gdb-buildbot
2019-10-04 16:43 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-04 11:04 [binutils-gdb] Back out earlier Ada exception change gdb-buildbot
2019-10-04 13:24 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-04  7:49 [binutils-gdb] Make print-file-var.exp test attribute visibility hidden, dlopen, and main symbol gdb-buildbot
2019-10-04 10:15 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-04  4:58 [binutils-gdb] Handle copy relocations gdb-buildbot
2019-10-04  7:25 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-04  1:46 [binutils-gdb] Make current_source_* per-program-space gdb-buildbot
2019-10-04  4:10 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-04  1:02 [binutils-gdb] Don't call decode_line_with_current_source from select_source_symtab gdb-buildbot
2019-10-04  1:02 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-03 20:01 [binutils-gdb] Search global block from basic_lookup_symbol_nonlocal gdb-buildbot
2019-10-03 22:29 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-03 13:07 [binutils-gdb] Update my email address in gdb/MAINTAINERS gdb-buildbot
2019-10-03 15:07 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-03 10:15 [binutils-gdb] gdb: Remove a use of VEC from dwarf2read.{c,h} gdb-buildbot
2019-10-03 12:22 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-03  7:12 [binutils-gdb] gdb: Change a VEC to std::vector in btrace.{c,h} gdb-buildbot
2019-10-03  9:26 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-03  4:12 [binutils-gdb] gdb: Remove a VEC from gdbsupport/btrace-common.h gdb-buildbot
2019-10-03  6:23 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-03  1:15 [binutils-gdb] Use styled_string for "show logging filename" gdb-buildbot
2019-10-03  3:18 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-02 15:44 [binutils-gdb] Style "pwd" output gdb-buildbot
2019-10-02 18:09 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-02  6:43 [binutils-gdb] Don't create empty literal pieces gdb-buildbot
2019-10-02  8:54 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-01 21:17 [binutils-gdb] Fix leak due to assigning a xstrdup-ed string to the std::string gdb_datadir gdb-buildbot
2019-10-01 23:42 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-01 18:10 [binutils-gdb] [PATCH v2 2/4] DWARF 5 support: Handle DW_FORM_strx gdb-buildbot
2019-10-01 20:34 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-01 15:00 [binutils-gdb] Remove extra whitespaces at the end of lines gdb-buildbot
2019-10-01 17:26 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-01 11:52 [binutils-gdb] Use std::sort instead of qsort in minsyms.c gdb-buildbot
2019-10-01 14:08 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-01 11:03 [binutils-gdb] Disable all warnings in gdb.rust/traits.rs gdb-buildbot
2019-10-01 11:03 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-10-01  5:24 [binutils-gdb] Improve some comments about msymbol handling gdb-buildbot
2019-10-01  7:53 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
     [not found] <703a86c2fa74e6c998ed24a8823658119f176b2d@gdb-build>
2019-10-01  3:42 ` gdb-buildbot
2019-09-30 17:53 [binutils-gdb] [gdb/contrib] cc-with-tweaks.sh: Create .dwz file in .tmp subdir gdb-buildbot
2019-09-30 21:24 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-09-30  2:41 [binutils-gdb] gdb: include gdbarch.h in hppa-linux-nat.c gdb-buildbot
2019-09-30  5:06 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
     [not found] <@gdb-build>
2019-09-28 21:31 ` gdb-buildbot
2019-09-27  9:30 [binutils-gdb] [gdb/testsuite] Add KFAIL for missing support of reverse-debugging of vmovd gdb-buildbot
2019-09-28 19:29 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-09-27  8:20 [binutils-gdb] Revert "Improve ptrace-error detection on Linux targets" gdb-buildbot
2019-09-27 16:07 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-09-27  7:01 [binutils-gdb] Improve ptrace-error detection on Linux targets gdb-buildbot
2019-09-27 12:25 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-09-26 15:01 [binutils-gdb] Do not expose stub types to Python gdb-buildbot
2019-09-26 16:23 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master 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).